2017-04-27 20:21:27 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2014-04-17 12:21:39 -03:00
|
|
|
#include "testprofile.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"
|
2019-03-03 22:29:40 +01:00
|
|
|
#include "core/file.h"
|
2020-05-02 21:38:55 +02:00
|
|
|
#include "core/save-profiledata.h"
|
2014-04-17 12:21:39 -03:00
|
|
|
|
2020-05-05 14:39:44 +02:00
|
|
|
// This test compares the content of struct profile against a known reference version for a list
|
|
|
|
// of dives to prevent accidental regressions. Thus is you change anything in the profile this
|
|
|
|
// test will fail. If this change was intentional, run the test manually. Make sure only the
|
|
|
|
// indended fields change (for example by computing a diff between exportprofile.csv and
|
|
|
|
// ..dives/exportprofilereference.csv) and copy the former over the later and commit that change
|
|
|
|
// as well.
|
|
|
|
|
|
|
|
|
2020-05-02 21:38:55 +02:00
|
|
|
void TestProfile::testProfileExport()
|
2014-04-17 12:21:39 -03:00
|
|
|
{
|
2020-06-17 22:45:33 +02:00
|
|
|
parse_file("../dives/abitofeverything.ssrf", &dive_table, &trip_table, &dive_site_table, &filter_preset_table);
|
2020-05-02 21:38:55 +02:00
|
|
|
save_profiledata("exportprofile.csv", false);
|
|
|
|
QFile org("../dives/exportprofilereference.csv");
|
|
|
|
org.open(QFile::ReadOnly);
|
|
|
|
QFile out("exportprofile.csv");
|
|
|
|
out.open(QFile::ReadOnly);
|
|
|
|
QTextStream orgS(&org);
|
|
|
|
QTextStream outS(&out);
|
|
|
|
QString readin = orgS.readAll();
|
|
|
|
QString written = outS.readAll();
|
|
|
|
QCOMPARE(readin, written);
|
|
|
|
|
2014-04-17 12:21:39 -03:00
|
|
|
}
|
|
|
|
|
2017-02-05 23:26:51 +01:00
|
|
|
QTEST_GUILESS_MAIN(TestProfile)
|