summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2018-10-30 11:55:11 +0100
committerGravatar bstoeger <32835590+bstoeger@users.noreply.github.com>2018-10-30 15:33:43 +0100
commit7e4c8c387b4d72432c5fbdc922b60b7d3ff31277 (patch)
treec088608d70c10bdbed55ddcae06772b5789732f3 /tests
parentd9f2b537afcefb57e224a6d1527537a54bb60688 (diff)
downloadsubsurface-7e4c8c387b4d72432c5fbdc922b60b7d3ff31277.tar.gz
A test for gases used in the planner
This tests for the planner getting the gases in the manually entered part of the dive wrong (as here: from incorrect value returned by get_gasmix_at_time. Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'tests')
-rw-r--r--tests/testplan.cpp53
-rw-r--r--tests/testplan.h1
2 files changed, 54 insertions, 0 deletions
diff --git a/tests/testplan.cpp b/tests/testplan.cpp
index 092015c58..1d32aacfb 100644
--- a/tests/testplan.cpp
+++ b/tests/testplan.cpp
@@ -316,6 +316,32 @@ void setupPlanVpmb100mTo70m30min(struct diveplan *dp)
plan_add_segment(dp, (30 - 20 - 3) * 60, M_OR_FT(70, 230), 0, 0, 1, OC);
}
+/* This tests handling different gases in the manually entered part of the dive */
+
+void setupPlanSeveralGases(struct diveplan *dp)
+{
+ dp->salinity = 10300;
+ dp->surface_pressure = 1013;
+ dp->bottomsac = prefs.bottomsac;
+ dp->decosac = prefs.decosac;
+
+ struct gasmix ean36 = {{360}, {0}};
+ struct gasmix tx11_50 = {{110}, {500}};
+
+ displayed_dive.cylinder[0].gasmix = ean36;
+ displayed_dive.cylinder[0].type.size.mliter = 36000;
+ displayed_dive.cylinder[0].type.workingpressure.mbar = 232000;
+ displayed_dive.cylinder[1].gasmix = tx11_50;
+ displayed_dive.surface_pressure.mbar = 1013;
+ reset_cylinders(&displayed_dive, true);
+ free_dps(dp);
+
+ plan_add_segment(dp, 120, 40000, 0, 0, true, OC);
+ plan_add_segment(dp, 18 * 60, 40000, 0, 0, true, OC);
+ plan_add_segment(dp, 10 * 60, 10000, 1, 0, true, OC);
+ plan_add_segment(dp, 5 * 60, 10000, 0, 0, true, OC);
+}
+
/* We compare the calculated runtimes against two values:
* - Known runtime calculated by Subsurface previously (to detect if anything has changed)
* - Benchmark runtime (we should be close, but not always exactly the same)
@@ -643,6 +669,33 @@ void TestPlan::testVpmbMetric100m60min()
QVERIFY(compareDecoTime(displayed_dive.dc.duration.seconds, 311u * 60u + 20u, 315u * 60u + 20u));
}
+void TestPlan::testMultipleGases()
+{
+ struct deco_state *cache = NULL;
+
+ setupPrefsVpmb();
+ prefs.unit_system = METRIC;
+ prefs.units.length = units::METERS;
+
+ struct diveplan testPlan = {};
+
+ setupPlanSeveralGases(&testPlan);
+ setCurrentAppState("PlanDive");
+
+ plan(&test_deco_state, &testPlan, &displayed_dive, 60, stoptable, &cache, 1, 0);
+
+#if DEBUG
+ free(displayed_dive.notes);
+ displayed_dive.notes = NULL;
+ save_dive(stdout, &displayed_dive, false);
+#endif
+
+ gasmix gas;
+ gas = get_gasmix_at_time(&displayed_dive, &displayed_dive.dc, {20 * 60 + 1});
+ QCOMPARE(get_o2(gas), 110);
+ QVERIFY(compareDecoTime(displayed_dive.dc.duration.seconds, 2480u, 2480u));
+}
+
void TestPlan::testVpmbMetricMultiLevelAir()
{
struct deco_state *cache = NULL;
diff --git a/tests/testplan.h b/tests/testplan.h
index fbd2df136..76b248e3d 100644
--- a/tests/testplan.h
+++ b/tests/testplan.h
@@ -18,6 +18,7 @@ private slots:
void testVpmbMetricMultiLevelAir();
void testVpmbMetric100m10min();
void testVpmbMetricRepeat();
+ void testMultipleGases();
};
#endif // TESTPLAN_H