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"
|
2016-04-05 17:22:00 +00:00
|
|
|
#include "core/dive.h"
|
|
|
|
#include "core/divelist.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()
|
|
|
|
{
|
2017-02-24 06:52:07 +00:00
|
|
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47.xml"), 0);
|
2015-10-05 09:12:19 +00:00
|
|
|
process_dives(false, false);
|
|
|
|
dive_table.preexisting = dive_table.nr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestRenumber::testMerge()
|
|
|
|
{
|
2017-02-24 06:52:07 +00:00
|
|
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47b.xml"), 0);
|
2015-10-05 09:12:19 +00:00
|
|
|
process_dives(true, false);
|
|
|
|
QCOMPARE(dive_table.nr, 1);
|
|
|
|
QCOMPARE(unsaved_changes(), 1);
|
|
|
|
mark_divelist_changed(false);
|
|
|
|
dive_table.preexisting = dive_table.nr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestRenumber::testMergeAndAppend()
|
|
|
|
{
|
2017-02-24 06:52:07 +00:00
|
|
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47c.xml"), 0);
|
2015-10-05 09:12:19 +00:00
|
|
|
process_dives(true, false);
|
|
|
|
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)
|