| 
									
										
										
										
											2017-04-27 20:21:27 +02:00
										 |  |  | // SPDX-License-Identifier: GPL-2.0
 | 
					
						
							| 
									
										
										
										
											2015-10-05 10:12:19 +01:00
										 |  |  | #include "testrenumber.h"
 | 
					
						
							| 
									
										
										
										
											2019-03-04 23:20:29 +01:00
										 |  |  | #include "core/divesite.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-31 16:09:14 +02:00
										 |  |  | #include "core/trip.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-25 12:39:04 -07:00
										 |  |  | #include "core/file.h"
 | 
					
						
							| 
									
										
										
										
											2015-10-05 10:12:19 +01:00
										 |  |  | #include <QTextStream>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestRenumber::setup() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-02-28 22:45:17 +01:00
										 |  |  | 	QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47.xml", &dive_table, &trip_table, &dive_site_table), 0); | 
					
						
							| 
									
										
										
										
											2018-09-23 12:53:35 +02:00
										 |  |  | 	process_loaded_dives(); | 
					
						
							| 
									
										
										
										
											2015-10-05 10:12:19 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestRenumber::testMerge() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-28 10:21:23 +02:00
										 |  |  | 	struct dive_table table = { 0 }; | 
					
						
							| 
									
										
										
										
											2018-12-23 12:46:45 +01:00
										 |  |  | 	struct trip_table trips = { 0 }; | 
					
						
							| 
									
										
										
										
											2019-03-03 15:12:22 +01:00
										 |  |  | 	struct dive_site_table sites = { 0 }; | 
					
						
							|  |  |  | 	QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47b.xml", &table, &trips, &sites), 0); | 
					
						
							|  |  |  | 	add_imported_dives(&table, &trips, &sites, IMPORT_MERGE_ALL_TRIPS); | 
					
						
							| 
									
										
										
										
											2015-10-05 10:12:19 +01:00
										 |  |  | 	QCOMPARE(dive_table.nr, 1); | 
					
						
							|  |  |  | 	QCOMPARE(unsaved_changes(), 1); | 
					
						
							|  |  |  | 	mark_divelist_changed(false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestRenumber::testMergeAndAppend() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-28 10:21:23 +02:00
										 |  |  | 	struct dive_table table = { 0 }; | 
					
						
							| 
									
										
										
										
											2018-12-23 12:46:45 +01:00
										 |  |  | 	struct trip_table trips = { 0 }; | 
					
						
							| 
									
										
										
										
											2019-03-03 15:12:22 +01:00
										 |  |  | 	struct dive_site_table sites = { 0 }; | 
					
						
							|  |  |  | 	QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47c.xml", &table, &trips, &sites), 0); | 
					
						
							|  |  |  | 	add_imported_dives(&table, &trips, &sites, IMPORT_MERGE_ALL_TRIPS); | 
					
						
							| 
									
										
										
										
											2015-10-05 10:12:19 +01:00
										 |  |  | 	QCOMPARE(dive_table.nr, 2); | 
					
						
							|  |  |  | 	QCOMPARE(unsaved_changes(), 1); | 
					
						
							|  |  |  | 	struct dive *d = get_dive(1); | 
					
						
							|  |  |  | 	QVERIFY(d != NULL); | 
					
						
							|  |  |  | 	if (d) | 
					
						
							|  |  |  | 		QCOMPARE(d->number, 2); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-05 23:26:51 +01:00
										 |  |  | QTEST_GUILESS_MAIN(TestRenumber) |