mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 19:36:15 +00:00
Add test for profile in VPMB mode
For some reason, this test seems not to run effectively, at least locally, I had to update the reference file. Added a check that indeed the file to be compared was successfully opened. Signed-off-by: Robert C. Helling <helling@atdotde.de>
This commit is contained in:
parent
d0494beb5f
commit
1c8c6f9551
4 changed files with 24546 additions and 3649 deletions
File diff suppressed because it is too large
Load diff
20878
dives/exportprofilereferenceVPMB.csv
Normal file
20878
dives/exportprofilereferenceVPMB.csv
Normal file
File diff suppressed because it is too large
Load diff
|
@ -5,6 +5,7 @@
|
||||||
#include "core/trip.h"
|
#include "core/trip.h"
|
||||||
#include "core/file.h"
|
#include "core/file.h"
|
||||||
#include "core/save-profiledata.h"
|
#include "core/save-profiledata.h"
|
||||||
|
#include "core/pref.h"
|
||||||
|
|
||||||
// This test compares the content of struct profile against a known reference version for a list
|
// 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
|
// of dives to prevent accidental regressions. Thus is you change anything in the profile this
|
||||||
|
@ -15,12 +16,29 @@
|
||||||
|
|
||||||
void TestProfile::testProfileExport()
|
void TestProfile::testProfileExport()
|
||||||
{
|
{
|
||||||
|
prefs.planner_deco_mode = BUEHLMANN;
|
||||||
parse_file("../dives/abitofeverything.ssrf", &dive_table, &trip_table, &dive_site_table, &device_table, &filter_preset_table);
|
parse_file("../dives/abitofeverything.ssrf", &dive_table, &trip_table, &dive_site_table, &device_table, &filter_preset_table);
|
||||||
save_profiledata("exportprofile.csv", false);
|
save_profiledata("exportprofile.csv", false);
|
||||||
QFile org("../dives/exportprofilereference.csv");
|
QFile org("../dives/exportprofilereference.csv");
|
||||||
org.open(QFile::ReadOnly);
|
QCOMPARE(org.open(QFile::ReadOnly), true);
|
||||||
QFile out("exportprofile.csv");
|
QFile out("exportprofile.csv");
|
||||||
out.open(QFile::ReadOnly);
|
QCOMPARE(out.open(QFile::ReadOnly), true);
|
||||||
|
QTextStream orgS(&org);
|
||||||
|
QTextStream outS(&out);
|
||||||
|
QString readin = orgS.readAll();
|
||||||
|
QString written = outS.readAll();
|
||||||
|
QCOMPARE(readin, written);
|
||||||
|
|
||||||
|
}
|
||||||
|
void TestProfile::testProfileExportVPMB()
|
||||||
|
{
|
||||||
|
prefs.planner_deco_mode = VPMB;
|
||||||
|
parse_file("../dives/abitofeverything.ssrf", &dive_table, &trip_table, &dive_site_table, &device_table, &filter_preset_table);
|
||||||
|
save_profiledata("exportprofileVPMB.csv", false);
|
||||||
|
QFile org("../dives/exportprofilereferenceVPMB.csv");
|
||||||
|
QCOMPARE(org.open(QFile::ReadOnly), true);
|
||||||
|
QFile out("exportprofileVPMB.csv");
|
||||||
|
QCOMPARE(out.open(QFile::ReadOnly), true);
|
||||||
QTextStream orgS(&org);
|
QTextStream orgS(&org);
|
||||||
QTextStream outS(&out);
|
QTextStream outS(&out);
|
||||||
QString readin = orgS.readAll();
|
QString readin = orgS.readAll();
|
||||||
|
|
|
@ -9,6 +9,7 @@ class TestProfile : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
private slots:
|
private slots:
|
||||||
void testProfileExport();
|
void testProfileExport();
|
||||||
|
void testProfileExportVPMB();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue