2017-04-10 13:38:35 +00:00
|
|
|
// Written by James Turner, started 2017.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017 James Turner
|
|
|
|
//
|
|
|
|
// 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, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2018-03-13 10:10:08 +00:00
|
|
|
#include "test_posinit.hxx"
|
2017-03-27 15:05:45 +00:00
|
|
|
|
2018-07-16 13:59:21 +00:00
|
|
|
#include "test_suite/FGTestApi/globals.hxx"
|
2018-06-10 13:43:20 +00:00
|
|
|
#include "test_suite/FGTestApi/NavDataCache.hxx"
|
2017-03-27 15:05:45 +00:00
|
|
|
|
|
|
|
#include <simgear/props/props_io.hxx>
|
|
|
|
|
|
|
|
#include "Main/positioninit.hxx"
|
|
|
|
#include "Main/options.hxx"
|
|
|
|
#include "Main/globals.hxx"
|
|
|
|
#include "Main/fg_props.hxx"
|
|
|
|
|
|
|
|
#include "Airports/airport.hxx"
|
|
|
|
|
|
|
|
using namespace flightgear;
|
|
|
|
|
2018-06-10 13:43:20 +00:00
|
|
|
void PosInitTests::setUp()
|
2017-03-27 15:05:45 +00:00
|
|
|
{
|
2018-07-16 13:59:21 +00:00
|
|
|
FGTestApi::setUp::initTestGlobals("posinit");
|
2018-06-10 13:43:20 +00:00
|
|
|
FGTestApi::setUp::initNavDataCache();
|
2017-03-27 15:05:45 +00:00
|
|
|
Options::reset();
|
|
|
|
fgLoadProps("defaults.xml", globals->get_props());
|
2018-06-10 13:43:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-27 15:05:45 +00:00
|
|
|
|
2018-06-10 13:43:20 +00:00
|
|
|
void PosInitTests::tearDown()
|
|
|
|
{
|
|
|
|
FGTestApi::tearDown::shutdownTestGlobals();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PosInitTests::testDefaultStartup()
|
|
|
|
{
|
2017-03-27 15:05:45 +00:00
|
|
|
{
|
|
|
|
Options* opts = Options::sharedInstance();
|
|
|
|
opts->setShouldLoadDefaultConfig(false);
|
|
|
|
|
|
|
|
const char* args[] = {"dummypath"};
|
|
|
|
opts->init(1, (char**) args, SGPath());
|
|
|
|
opts->processOptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
initPosition();
|
|
|
|
|
|
|
|
// verify we got the location specified in location-preset.xml
|
|
|
|
// this unfortunately means manually parsing that file, oh well
|
|
|
|
|
|
|
|
{
|
2018-06-10 13:43:20 +00:00
|
|
|
SGPath presets = globals->get_fg_root() / "location-presets.xml";
|
2018-03-13 10:10:08 +00:00
|
|
|
CPPUNIT_ASSERT(presets.exists());
|
2017-03-27 15:05:45 +00:00
|
|
|
SGPropertyNode_ptr props(new SGPropertyNode);
|
|
|
|
readProperties(presets, props);
|
|
|
|
|
|
|
|
std::string icao = props->getStringValue("/sim/presets/airport-id");
|
2018-03-13 10:10:08 +00:00
|
|
|
CPPUNIT_ASSERT(globals->get_props()->getStringValue("/sim/airport/closest-airport-id") == icao);
|
2017-03-27 15:05:45 +00:00
|
|
|
|
|
|
|
SGGeod pos = globals->get_aircraft_position();
|
|
|
|
|
|
|
|
FGAirportRef defaultAirport = FGAirport::getByIdent(icao);
|
|
|
|
|
|
|
|
double dist = SGGeodesy::distanceM(pos, defaultAirport->geod());
|
2018-03-13 10:10:08 +00:00
|
|
|
CPPUNIT_ASSERT(dist < 10000);
|
2017-03-27 15:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-13 10:10:08 +00:00
|
|
|
void PosInitTests::testAirportOnlyStartup()
|
2017-03-27 15:05:45 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
Options* opts = Options::sharedInstance();
|
|
|
|
opts->setShouldLoadDefaultConfig(false);
|
|
|
|
|
|
|
|
const char* args[] = {"dummypath", "--airport=EDDF"};
|
|
|
|
opts->init(2, (char**) args, SGPath());
|
|
|
|
opts->processOptions();
|
|
|
|
}
|
|
|
|
|
2018-03-13 10:10:08 +00:00
|
|
|
CPPUNIT_ASSERT(fgGetBool("/sim/presets/airport-requested"));
|
2017-03-27 15:05:45 +00:00
|
|
|
initPosition();
|
|
|
|
|
2018-03-13 10:10:08 +00:00
|
|
|
CPPUNIT_ASSERT(globals->get_props()->getStringValue("/sim/airport/closest-airport-id") == std::string("EDDF"));
|
2017-03-27 15:05:45 +00:00
|
|
|
double dist = SGGeodesy::distanceM(globals->get_aircraft_position(),
|
|
|
|
FGAirport::getByIdent("EDDF")->geod());
|
2018-03-13 10:10:08 +00:00
|
|
|
CPPUNIT_ASSERT(dist < 10000);
|
2017-03-27 15:05:45 +00:00
|
|
|
}
|
|
|
|
|
2018-03-13 10:10:08 +00:00
|
|
|
void PosInitTests::testAirportAndMetarStartup()
|
2017-03-27 15:05:45 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
Options* opts = Options::sharedInstance();
|
|
|
|
opts->setShouldLoadDefaultConfig(false);
|
|
|
|
const char* args[] = {"dummypath", "--airport=LOWI", "--metar=XXXX 271320Z 08007KT 030V130 CAVOK 17/02 Q1020 NOSIG"};
|
|
|
|
opts->init(3, (char**) args, SGPath());
|
|
|
|
opts->processOptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
initPosition();
|
|
|
|
|
2018-03-13 10:10:08 +00:00
|
|
|
CPPUNIT_ASSERT(globals->get_props()->getStringValue("/sim/airport/closest-airport-id") == std::string("LOWI"));
|
2017-03-27 15:05:45 +00:00
|
|
|
double dist = SGGeodesy::distanceM(globals->get_aircraft_position(),
|
|
|
|
FGAirport::getByIdent("LOWI")->geod());
|
2018-03-13 10:10:08 +00:00
|
|
|
CPPUNIT_ASSERT(dist < 10000);
|
2017-03-27 15:05:45 +00:00
|
|
|
///sim/atc/runway
|
2018-03-13 10:10:08 +00:00
|
|
|
CPPUNIT_ASSERT(globals->get_props()->getStringValue("sim/atc/runway") == std::string("26"));
|
2017-03-27 15:05:45 +00:00
|
|
|
}
|