2015-02-26 04:57:28 +01:00
|
|
|
#include <boost/test/unit_test.hpp>
|
2016-09-09 22:13:15 +02:00
|
|
|
#include <platform/FileIndex.hpp>
|
2017-02-20 17:56:59 +01:00
|
|
|
#include "test_globals.hpp"
|
2015-02-26 04:57:28 +01:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(FileIndexTests)
|
|
|
|
|
2016-06-16 22:11:55 +02:00
|
|
|
#if RW_TEST_WITH_DATA
|
2016-09-09 22:13:22 +02:00
|
|
|
BOOST_AUTO_TEST_CASE(test_directory_paths) {
|
|
|
|
FileIndex index;
|
|
|
|
|
|
|
|
index.indexGameDirectory(Global::getGamePath());
|
|
|
|
|
|
|
|
{
|
|
|
|
std::string upperpath{"DATA/CULLZONE.DAT"};
|
|
|
|
auto truepath = index.findFilePath(upperpath);
|
|
|
|
BOOST_ASSERT(!truepath.empty());
|
|
|
|
BOOST_CHECK(upperpath != truepath);
|
|
|
|
fs::path expected{Global::getGamePath()};
|
|
|
|
expected /= "data/CULLZONE.DAT";
|
|
|
|
BOOST_CHECK_EQUAL(truepath.native(), expected.native());
|
|
|
|
}
|
|
|
|
{
|
|
|
|
std::string upperpath{"DATA/MAPS/COMNBTM/COMNBTM.IPL"};
|
|
|
|
auto truepath = index.findFilePath(upperpath);
|
|
|
|
BOOST_ASSERT(!truepath.empty());
|
|
|
|
BOOST_CHECK(upperpath != truepath);
|
|
|
|
fs::path expected{Global::getGamePath()};
|
|
|
|
expected /= "data/maps/comnbtm/comNbtm.ipl";
|
|
|
|
BOOST_CHECK_EQUAL(truepath.native(), expected.native());
|
|
|
|
}
|
2016-08-28 17:23:34 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
BOOST_AUTO_TEST_CASE(test_file) {
|
|
|
|
FileIndex index;
|
2015-02-26 04:57:28 +01:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
index.indexTree(Global::getGamePath() + "/data");
|
|
|
|
|
|
|
|
auto handle = index.openFile("cullzone.dat");
|
|
|
|
BOOST_CHECK(handle != nullptr);
|
2015-02-26 04:57:28 +01:00
|
|
|
}
|
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
BOOST_AUTO_TEST_CASE(test_file_archive) {
|
|
|
|
FileIndex index;
|
|
|
|
|
|
|
|
index.indexArchive(Global::getGamePath() + "/models/gta3.img");
|
|
|
|
|
|
|
|
auto handle = index.openFile("landstal.dff");
|
|
|
|
BOOST_CHECK(handle != nullptr);
|
2015-02-26 04:57:28 +01:00
|
|
|
}
|
2016-06-16 22:11:55 +02:00
|
|
|
#endif
|
2015-02-26 04:57:28 +01:00
|
|
|
|
2016-04-15 02:06:10 +02:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|