2023-06-20 04:33:09 +00:00
|
|
|
#include "StarLogging.hpp"
|
|
|
|
#include "StarFile.hpp"
|
|
|
|
#include "StarRootLoader.hpp"
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
using namespace Star;
|
|
|
|
|
|
|
|
struct ErrorLogSink : public LogSink {
|
|
|
|
ErrorLogSink() {
|
|
|
|
setLevel(LogLevel::Error);
|
|
|
|
}
|
|
|
|
|
|
|
|
void log(char const* msg, LogLevel) override {
|
|
|
|
ADD_FAILURE() << "Error was logged: " << msg;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class TestEnvironment : public testing::Environment {
|
|
|
|
public:
|
|
|
|
unique_ptr<Root> root;
|
|
|
|
Root::Settings settings;
|
|
|
|
|
|
|
|
TestEnvironment(Root::Settings settings)
|
2024-02-19 15:55:19 +00:00
|
|
|
: settings(std::move(settings)) {}
|
2023-06-20 04:33:09 +00:00
|
|
|
|
|
|
|
virtual void SetUp() {
|
|
|
|
Logger::addSink(make_shared<ErrorLogSink>());
|
|
|
|
root = make_unique<Root>(settings);
|
|
|
|
root->configuration()->set("clearUniverseFiles", true);
|
|
|
|
root->configuration()->set("clearPlayerFiles", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void TearDown() {
|
|
|
|
root.reset();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
GTEST_API_ int main(int argc, char** argv) {
|
|
|
|
testing::InitGoogleTest(&argc, argv);
|
|
|
|
testing::AddGlobalTestEnvironment(new TestEnvironment(RootLoader({{}, {}, {}, LogLevel::Error, true, {}}).commandParseOrDie(argc, argv).first));
|
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|