2017-04-27 18:21:27 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-10-05 09:12:19 +00:00
|
|
|
#include "testrenumber.h"
|
2019-03-04 22:20:29 +00:00
|
|
|
#include "core/divesite.h"
|
2019-05-31 14:09:14 +00:00
|
|
|
#include "core/trip.h"
|
2018-07-25 19:39:04 +00:00
|
|
|
#include "core/file.h"
|
2015-10-05 09:12:19 +00:00
|
|
|
#include <QTextStream>
|
|
|
|
|
|
|
|
void TestRenumber::setup()
|
|
|
|
{
|
2019-02-28 21:45:17 +00:00
|
|
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47.xml", &dive_table, &trip_table, &dive_site_table), 0);
|
2018-09-23 10:53:35 +00:00
|
|
|
process_loaded_dives();
|
2015-10-05 09:12:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestRenumber::testMerge()
|
|
|
|
{
|
2018-09-28 08:21:23 +00:00
|
|
|
struct dive_table table = { 0 };
|
2018-12-23 11:46:45 +00:00
|
|
|
struct trip_table trips = { 0 };
|
2019-03-03 14:12:22 +00: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 09:12:19 +00:00
|
|
|
QCOMPARE(dive_table.nr, 1);
|
|
|
|
QCOMPARE(unsaved_changes(), 1);
|
|
|
|
mark_divelist_changed(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestRenumber::testMergeAndAppend()
|
|
|
|
{
|
2018-09-28 08:21:23 +00:00
|
|
|
struct dive_table table = { 0 };
|
2018-12-23 11:46:45 +00:00
|
|
|
struct trip_table trips = { 0 };
|
2019-03-03 14:12:22 +00: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 09:12:19 +00: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 22:26:51 +00:00
|
|
|
QTEST_GUILESS_MAIN(TestRenumber)
|