2015-02-26 04:57:28 +01:00
|
|
|
#include <boost/test/unit_test.hpp>
|
2018-07-06 22:05:43 +02:00
|
|
|
#include <platform/FileHandle.hpp>
|
2016-09-09 22:13:15 +02:00
|
|
|
#include <platform/FileIndex.hpp>
|
2017-10-26 03:51:24 +02:00
|
|
|
#include "test_Globals.hpp"
|
2015-02-26 04:57:28 +01:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(FileIndexTests)
|
|
|
|
|
2018-06-21 23:41:10 +02:00
|
|
|
BOOST_AUTO_TEST_CASE(test_normalizeName) {
|
|
|
|
std::string ref = "a/b/c";
|
|
|
|
{
|
|
|
|
std::string dirty = "a\\b\\c";
|
|
|
|
BOOST_CHECK_EQUAL(ref, FileIndex::normalizeFilePath(dirty));
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::string dirty = "A/B/C";
|
|
|
|
BOOST_CHECK_EQUAL(ref, FileIndex::normalizeFilePath(dirty));
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::string dirty = "A\\B\\C";
|
|
|
|
BOOST_CHECK_EQUAL(ref, FileIndex::normalizeFilePath(dirty));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-18 02:29:59 +01:00
|
|
|
BOOST_AUTO_TEST_CASE(test_indexTree, DATA_TEST_PREDICATE) {
|
2016-09-09 22:13:22 +02:00
|
|
|
FileIndex index;
|
2018-06-21 23:41:10 +02:00
|
|
|
index.indexTree(Global::getGamePath());
|
2016-09-09 22:13:22 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
std::string upperpath{"DATA/CULLZONE.DAT"};
|
|
|
|
auto truepath = index.findFilePath(upperpath);
|
|
|
|
BOOST_ASSERT(!truepath.empty());
|
|
|
|
BOOST_CHECK(upperpath != truepath);
|
2019-01-03 12:59:57 +01:00
|
|
|
std::filesystem::path expected{Global::getGamePath()};
|
2016-09-09 22:13:22 +02:00
|
|
|
expected /= "data/CULLZONE.DAT";
|
2018-08-17 03:31:29 +02:00
|
|
|
BOOST_CHECK(expected.compare(expected) == 0);
|
2016-09-09 22:13:22 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
std::string upperpath{"DATA/MAPS/COMNBTM/COMNBTM.IPL"};
|
|
|
|
auto truepath = index.findFilePath(upperpath);
|
|
|
|
BOOST_ASSERT(!truepath.empty());
|
|
|
|
BOOST_CHECK(upperpath != truepath);
|
2019-01-03 12:59:57 +01:00
|
|
|
std::filesystem::path expected{Global::getGamePath()};
|
2016-09-09 22:13:22 +02:00
|
|
|
expected /= "data/maps/comnbtm/comNbtm.ipl";
|
2018-08-17 03:31:29 +02:00
|
|
|
BOOST_CHECK(expected.compare(truepath) == 0);
|
2016-09-09 22:13:22 +02:00
|
|
|
}
|
2016-08-28 17:23:34 +02:00
|
|
|
}
|
|
|
|
|
2019-01-18 02:29:59 +01:00
|
|
|
BOOST_AUTO_TEST_CASE(test_openFile, DATA_TEST_PREDICATE) {
|
2016-09-09 22:13:22 +02:00
|
|
|
FileIndex index;
|
|
|
|
index.indexTree(Global::getGamePath() + "/data");
|
|
|
|
|
|
|
|
auto handle = index.openFile("cullzone.dat");
|
2018-07-06 22:05:43 +02:00
|
|
|
BOOST_CHECK(handle.data != nullptr);
|
2015-02-26 04:57:28 +01:00
|
|
|
}
|
|
|
|
|
2019-01-18 02:29:59 +01:00
|
|
|
BOOST_AUTO_TEST_CASE(test_indexArchive, DATA_TEST_PREDICATE) {
|
2016-09-09 22:13:22 +02:00
|
|
|
FileIndex index;
|
2018-06-21 23:41:10 +02:00
|
|
|
index.indexTree(Global::getGamePath());
|
|
|
|
|
|
|
|
{
|
|
|
|
auto handle = index.openFile("landstal.dff");
|
2018-07-06 22:05:43 +02:00
|
|
|
BOOST_CHECK(handle.data == nullptr);
|
2018-06-21 23:41:10 +02:00
|
|
|
}
|
2016-09-09 22:13:22 +02:00
|
|
|
|
2018-06-21 23:41:10 +02:00
|
|
|
index.indexArchive("models/gta3.img");
|
2016-09-09 22:13:22 +02:00
|
|
|
|
2018-06-21 23:41:10 +02:00
|
|
|
{
|
|
|
|
auto handle = index.openFile("landstal.dff");
|
2018-07-06 22:05:43 +02:00
|
|
|
BOOST_CHECK(handle.data != nullptr);
|
2018-06-21 23:41:10 +02:00
|
|
|
}
|
2015-02-26 04:57:28 +01:00
|
|
|
}
|
|
|
|
|
2016-04-15 02:06:10 +02:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|