mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
3660241993
This implicitly accessed the global divelog. Most of the users were in the test/ folder anyway. Replace by explicit accesses to the global divelog.dives. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "testAirPressure.h"
|
|
#include "core/device.h"
|
|
#include "core/dive.h"
|
|
#include "core/divelog.h"
|
|
#include "core/divesite.h"
|
|
#include "core/trip.h"
|
|
#include "core/file.h"
|
|
#include "core/errorhelper.h"
|
|
#include <QString>
|
|
#include <core/qthelper.h>
|
|
|
|
void TestAirPressure::initTestCase()
|
|
{
|
|
/* we need to manually tell that the resource exists, because we are using it as library. */
|
|
Q_INIT_RESOURCE(subsurface);
|
|
prefs.cloud_base_url = default_prefs.cloud_base_url;
|
|
}
|
|
|
|
void TestAirPressure::get_dives()
|
|
{
|
|
verbose = 1;
|
|
|
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/TestAtmPress.xml", &divelog), 0);
|
|
QVERIFY(divelog.dives.size() >= 1);
|
|
}
|
|
|
|
void TestAirPressure::testReadAirPressure()
|
|
{
|
|
QVERIFY(divelog.dives.size() >= 2);
|
|
QCOMPARE(1012, divelog.dives[0]->surface_pressure.mbar);
|
|
QCOMPARE(991, divelog.dives[1]->surface_pressure.mbar);
|
|
}
|
|
|
|
void TestAirPressure::testConvertAltitudetoAirPressure()
|
|
{
|
|
QCOMPARE(891,altitude_to_pressure(1000000)); // 1000 m altitude in mm
|
|
QCOMPARE(1013,altitude_to_pressure(0)); // sea level
|
|
}
|
|
|
|
void TestAirPressure::testWriteReadBackAirPressure()
|
|
{
|
|
int32_t ap = 1111;
|
|
QVERIFY(divelog.dives.size() >= 1);
|
|
divelog.dives[0]->surface_pressure.mbar = ap;
|
|
QCOMPARE(save_dives("./testout.ssrf"), 0);
|
|
clear_dive_file_data();
|
|
QCOMPARE(parse_file("./testout.ssrf", &divelog), 0);
|
|
QVERIFY(divelog.dives.size() >= 1);
|
|
QCOMPARE(ap, divelog.dives[0]->surface_pressure.mbar);
|
|
}
|
|
|
|
QTEST_GUILESS_MAIN(TestAirPressure)
|