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"
|
2016-04-05 14:22:00 -03:00
|
|
|
#include "core/dive.h"
|
|
|
|
#include "core/file.h"
|
|
|
|
#include "core/divelist.h"
|
2015-10-05 10:12:19 +01:00
|
|
|
#include <QTextStream>
|
|
|
|
|
|
|
|
void TestRenumber::setup()
|
|
|
|
{
|
2017-02-24 13:52:07 +07:00
|
|
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47.xml"), 0);
|
2015-10-05 10:12:19 +01:00
|
|
|
process_dives(false, false);
|
|
|
|
dive_table.preexisting = dive_table.nr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestRenumber::testMerge()
|
|
|
|
{
|
2017-02-24 13:52:07 +07:00
|
|
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47b.xml"), 0);
|
2015-10-05 10:12:19 +01: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 13:52:07 +07:00
|
|
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test47c.xml"), 0);
|
2015-10-05 10:12:19 +01: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 23:26:51 +01:00
|
|
|
QTEST_GUILESS_MAIN(TestRenumber)
|