1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/*
* Copyright (C) 2018 Edward d'Auvergne
*
* This file is part of the program FlightGear.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _FG_POSINIT_UNIT_TESTS_HXX
#define _FG_POSINIT_UNIT_TESTS_HXX
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/TestFixture.h>
#include "Airports/airport.hxx"
// The unit tests of the FGNasalSys subsystem.
class PosInitTests : public CppUnit::TestFixture
{
// Set up the test suite.
CPPUNIT_TEST_SUITE(PosInitTests);
// Airport-based tests
CPPUNIT_TEST(testAirportAltitudeOffsetStartup);
CPPUNIT_TEST(testAirportAndMetarStartup);
CPPUNIT_TEST(testAirportAndRunwayStartup);
CPPUNIT_TEST(testAirportAndAvailableParkingStartup);
CPPUNIT_TEST(testAirportAndParkingStartup);
CPPUNIT_TEST(testAirportOnlyStartup);
CPPUNIT_TEST(testAirportRunwayOffsetAltitudeStartup);
CPPUNIT_TEST(testAirportRunwayOffsetGlideslopeStartup);
// CPPUNIT_TEST(testDefaultStartup);
CPPUNIT_TEST(testRepositionAtParking);
CPPUNIT_TEST(testParkAtOccupied);
CPPUNIT_TEST(testParkInvalid);
CPPUNIT_TEST(testAirportRunwayRepositionAirport);
// Navaid tests
CPPUNIT_TEST(testVOROnlyStartup);
CPPUNIT_TEST(testVOROffsetAltitudeHeadingStartup);
CPPUNIT_TEST(testFixOnlyStartup);
CPPUNIT_TEST(testFixOffsetAltitudeHeadingStartup);
CPPUNIT_TEST(testNDBOnlyStartup);
CPPUNIT_TEST(testNDBOffsetAltitudeHeadingStartup);
CPPUNIT_TEST(testLatLonStartup);
//CPPUNIT_TEST(testLatLonOffsetStartup); This is not yet supported.
// Carrier tests
// We are not able to test the carrier code thoroughly as it depends
// heavily on finalizePosition(), which requires that the carrier model
// itself be loaded into the scenegraph.
CPPUNIT_TEST(testCarrierStartup);
// Reposition tests
CPPUNIT_TEST(testAirportRepositionAirport);
CPPUNIT_TEST(testRepositionAtSameParking);
CPPUNIT_TEST(testRepositionAtOccupied);
CPPUNIT_TEST(testRepositionAtInvalid);
// MP tests
CPPUNIT_TEST(testMPRunwayStart);
CPPUNIT_TEST(testMPRunwayStartNoGroundnet);
CPPUNIT_TEST_SUITE_END();
void simulateStartReposition();
void simulateFinalizePosition();
public:
// Set up function for each test.
void setUp();
// Clean up after each test.
void tearDown();
// The tests.
void testAirportAltitudeOffsetStartup();
void testAirportAndMetarStartup();
void testAirportAndAvailableParkingStartup();
void testAirportAndParkingStartup();
void testAirportAndRunwayStartup();
void testAirportOnlyStartup();
void testAirportRunwayOffsetAltitudeStartup();
void testAirportRunwayOffsetGlideslopeStartup();
void testDefaultStartup();
void testParkAtOccupied();
void testParkInvalid();
// Navaid tests
void testVOROnlyStartup();
void testVOROffsetAltitudeHeadingStartup();
void testFixOnlyStartup();
void testFixOffsetAltitudeHeadingStartup();
void testNDBOnlyStartup();
void testNDBOffsetAltitudeHeadingStartup();
//Lat Lon tests
void testLatLonStartup();
void testLatLonOffsetStartup();
//Carrier tests
void testCarrierStartup();
//Reposition tests
void testAirportRepositionAirport();
void testRepositionAtParking();
void testRepositionAtSameParking();
void testRepositionAtOccupied();
void testRepositionAtInvalid();
void testAirportRunwayRepositionAirport();
// MP tests
void testMPRunwayStart();
void testMPRunwayStartNoGroundnet();
private:
// Helper functions for tests. Return void as they use CPPUNIT_ASSERT
void checkAlt(float value);
void checkHeading(float value);
void checkPosition(SGGeod expectedPos, float delta=1000.0);
void checkClosestAirport(std::string icao);
void checkStringProp(std::string property, std::string expected);
void checkRunway(std::string expected);
void checkOnGround();
void checkInAir();
};
#endif // _FG_POSINIT_UNIT_TESTS_HXX
|