CreatureLib/tests/BattleTests/ScriptTests/ScriptAggregatorTests.cpp

151 lines
5.2 KiB
C++
Raw Normal View History

2019-11-10 18:55:01 +00:00
#ifdef TESTS_BUILD
#include <utility>
#include "../../../extern/doctest.hpp"
2019-11-10 18:55:01 +00:00
#include "../../../src/Battling/ScriptHandling/ScriptAggregator.hpp"
using namespace CreatureLib;
using namespace CreatureLib::Battling;
class TestScript : public BattleScript {
private:
2020-06-26 15:08:23 +00:00
ArbUt::StringView _name;
2019-11-10 18:55:01 +00:00
public:
explicit TestScript(const ArbUt::StringView& name) : _name(name){};
2020-06-26 15:08:23 +00:00
const ArbUt::StringView& GetName() const noexcept override { return _name; }
2019-11-10 18:55:01 +00:00
void TestMethod(int& runCount) { runCount++; }
BattleScript* Clone() override { return new TestScript(_name); }
2019-11-10 18:55:01 +00:00
};
TEST_CASE("Script Aggregator properly iterates containing script.") {
auto script = std::make_unique<TestScript>("test");
2019-11-10 18:55:01 +00:00
auto ran = 0;
auto vec = ArbUt::List<ScriptWrapper>{
ScriptWrapper::FromScript(reinterpret_cast<std::unique_ptr<BattleScript>*>(&script))};
auto aggr = ScriptAggregator(vec);
while (aggr.HasNext()) {
2019-11-10 18:55:01 +00:00
auto next = aggr.GetNext();
next.As<TestScript>()->TestMethod(ran);
2019-11-10 18:55:01 +00:00
}
CHECK(ran == 1);
}
TEST_CASE("Script Aggregator properly iterates multiple scripts.") {
auto script = std::make_unique<TestScript>("test");
auto script2 = std::make_unique<TestScript>("test2");
auto script3 = std::make_unique<TestScript>("test3");
2019-11-10 18:55:01 +00:00
auto ran = 0;
auto vec = ArbUt::List<ScriptWrapper>{
ScriptWrapper::FromScript(reinterpret_cast<std::unique_ptr<BattleScript>*>(&script)),
ScriptWrapper::FromScript(reinterpret_cast<std::unique_ptr<BattleScript>*>(&script2)),
ScriptWrapper::FromScript(reinterpret_cast<std::unique_ptr<BattleScript>*>(&script3))};
auto aggr = ScriptAggregator(vec);
while (aggr.HasNext()) {
2019-11-10 18:55:01 +00:00
auto next = aggr.GetNext();
next.As<TestScript>()->TestMethod(ran);
2019-11-10 18:55:01 +00:00
}
CHECK(ran == 3);
}
TEST_CASE("Script Aggregator properly iterates Script Set.") {
BattleScript* script = new TestScript("test");
BattleScript* script2 = new TestScript("test2");
BattleScript* script3 = new TestScript("test3");
2019-11-10 18:55:01 +00:00
auto ran = 0;
auto set = ScriptSet();
set.Add(script);
set.Add(script2);
set.Add(script3);
2020-05-26 16:31:06 +00:00
auto vec = ArbUt::List<ScriptWrapper>{ScriptWrapper::FromSet(&set)};
auto aggr = ScriptAggregator(vec);
while (aggr.HasNext()) {
2020-04-23 21:23:58 +00:00
auto next = aggr.GetNextNotNull();
next.value().As<TestScript>()->TestMethod(ran);
2019-11-10 18:55:01 +00:00
}
CHECK(ran == 3);
}
TEST_CASE("Script Aggregator properly iterates data of Script Set and Script.") {
auto script = std::make_unique<TestScript>("test");
BattleScript* script2 = new TestScript("test2");
BattleScript* script3 = new TestScript("test3");
2019-11-10 18:55:01 +00:00
auto ran = 0;
auto set = ScriptSet();
set.Add(script2);
set.Add(script3);
auto vec = ArbUt::List<ScriptWrapper>{
ScriptWrapper::FromSet(&set),
ScriptWrapper::FromScript(reinterpret_cast<std::unique_ptr<BattleScript>*>(&script))};
auto aggr = ScriptAggregator(vec);
while (aggr.HasNext()) {
2020-04-23 21:23:58 +00:00
auto next = aggr.GetNextNotNull();
next.value().As<TestScript>()->TestMethod(ran);
2019-11-10 18:55:01 +00:00
}
CHECK(ran == 3);
}
TEST_CASE("Script Aggregator properly iterates data of Script and Script Set.") {
auto script = std::make_unique<TestScript>("test");
BattleScript* script2 = new TestScript("test2");
BattleScript* script3 = new TestScript("test3");
2019-11-10 18:55:01 +00:00
auto ran = 0;
auto set = ScriptSet();
set.Add(script2);
set.Add(script3);
auto vec =
ArbUt::List<ScriptWrapper>{ScriptWrapper::FromScript(reinterpret_cast<std::unique_ptr<BattleScript>*>(&script)),
ScriptWrapper::FromSet(&set)};
auto aggr = ScriptAggregator(vec);
while (aggr.HasNext()) {
2020-04-23 21:23:58 +00:00
auto next = aggr.GetNextNotNull();
next.value().As<TestScript>()->TestMethod(ran);
2019-11-10 18:55:01 +00:00
}
CHECK(ran == 3);
}
TEST_CASE("Script Aggregator properly iterates data of Script, Script Set and Script.") {
auto script = std::make_unique<TestScript>("test");
BattleScript* script2 = new TestScript("test2");
BattleScript* script3 = new TestScript("test3");
auto script4 = std::make_unique<TestScript>("test4");
2019-11-10 18:55:01 +00:00
auto ran = 0;
auto set = ScriptSet();
set.Add(script2);
set.Add(script3);
auto vec = ArbUt::List<ScriptWrapper>{
ScriptWrapper::FromScript(reinterpret_cast<std::unique_ptr<BattleScript>*>(&script)),
ScriptWrapper::FromSet(&set),
ScriptWrapper::FromScript(reinterpret_cast<std::unique_ptr<BattleScript>*>(&script4))};
auto aggr = ScriptAggregator(vec);
while (aggr.HasNext()) {
2020-04-23 21:23:58 +00:00
auto next = aggr.GetNextNotNull();
next.value().As<TestScript>()->TestMethod(ran);
2019-11-10 18:55:01 +00:00
}
CHECK(ran == 4);
}
TEST_CASE("Script Aggregator properly iterates when empty.") {
2019-11-10 18:55:01 +00:00
auto ran = 0;
2020-05-26 16:31:06 +00:00
auto vec = ArbUt::List<ScriptWrapper>{};
auto aggr = ScriptAggregator(vec);
while (aggr.HasNext()) {
THROW("Aggregator returned a script, but should have been empty.");
2019-11-10 18:55:01 +00:00
}
CHECK(ran == 0);
}
TEST_CASE("Script Aggregator properly iterates empty Script Set.") {
2019-11-10 18:55:01 +00:00
auto ran = 0;
auto set = ScriptSet();
2020-05-26 16:31:06 +00:00
auto vec = ArbUt::List<ScriptWrapper>{ScriptWrapper::FromSet(&set)};
auto aggr = ScriptAggregator(vec);
aggr.Reset();
while (aggr.HasNext()) {
2019-11-10 18:55:01 +00:00
ran++;
}
CHECK(ran == 0);
2019-11-10 18:55:01 +00:00
}
#endif