// Cyphesis Online RPG Server and AI Engine // Copyright (C) 2004 Alistair Riddoch // // 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 #ifdef NDEBUG #undef NDEBUG #endif #ifndef DEBUG #define DEBUG #endif #include "TestBase.h" #include "rules/simulation/Task.h" #include "rules/simulation/Entity.h" #include "rules/Script.h" #include #include #include #include class Tasktest : public Cyphesis::TestBase { private: Ref chr; UsageInstance usageInstance; Py::Dict script; Ref m_task; static bool Script_operation_called; static HandlerResult Script_operation_ret; public: Tasktest(); void setup(); void teardown(); void test_obsolete(); void test_irrelevant(); void test_operation(); void test_sequence(); void test_setScript(); void test_initTask_script(); void test_initTask_script_fail(); static HandlerResult get_Script_operation_ret(); }; bool Tasktest::Script_operation_called = false; HandlerResult Tasktest::Script_operation_ret = OPERATION_IGNORED; HandlerResult Tasktest::get_Script_operation_ret() { Script_operation_called = true; return Script_operation_ret; } Tasktest::Tasktest() { Py_InitializeEx(0); ADD_TEST(Tasktest::test_obsolete); ADD_TEST(Tasktest::test_irrelevant); ADD_TEST(Tasktest::test_operation); ADD_TEST(Tasktest::test_sequence); ADD_TEST(Tasktest::test_setScript); ADD_TEST(Tasktest::test_initTask_script); ADD_TEST(Tasktest::test_initTask_script_fail); } void Tasktest::setup() { Script_operation_called = false; chr = new Entity("3", 3); usageInstance = UsageInstance{}; usageInstance.actor = chr; script = Py::Dict(); m_task = new Task(usageInstance, script); } void Tasktest::teardown() { } void Tasktest::test_obsolete() { ASSERT_EQUAL(m_task->m_obsolete, false); ASSERT_EQUAL(m_task->obsolete(), false); } void Tasktest::test_irrelevant() { ASSERT_EQUAL(m_task->m_obsolete, false); ASSERT_EQUAL(m_task->obsolete(), false); m_task->irrelevant(); ASSERT_EQUAL(m_task->m_obsolete, true); ASSERT_EQUAL(m_task->obsolete(), true); } void Tasktest::test_operation() { // Operation op; // OpVector res; // // m_task->operation(op, res); // // ASSERT_EQUAL(Script_operation_called, false); } void Tasktest::test_sequence() { // m_task->nextTick("1", 1.5); // // Atlas::Message::Element val; // m_task->getAttr("foo", val); // assert(val.isNone()); // m_task->setAttr("foo", 1); // m_task->getAttr("foo", val); // assert(val.isInt()); // // assert(!m_task->obsolete()); // // OpVector res; // // assert(res.empty()); // // Atlas::Objects::Operation::Generic c; // c->setParent("generic"); // // m_task->initTask(c, res); // // Operation op; // // m_task->operation(op, res); // // m_task->irrelevant(); // // assert(m_task->obsolete()); } void Tasktest::test_setScript() { // Script * s1 = new Script; // Script * s2 = new Script; // // m_task->setScript(s1); // // ASSERT_EQUAL(m_task->m_script, s1); // // m_task->setScript(s2); // // ASSERT_EQUAL(m_task->m_script, s2); } void Tasktest::test_initTask_script() { // Script_operation_ret = OPERATION_BLOCKED; // // Script * s1 = new Script; // m_task->setScript(s1); // // Operation op; // OpVector res; // // m_task->initTask("1", res); // // ASSERT_EQUAL(m_task->obsolete(), false); // ASSERT_EQUAL(res.size(), 1u); } void Tasktest::test_initTask_script_fail() { // Script_operation_ret = OPERATION_IGNORED; // // Script * s1 = new Script; // m_task->setScript(s1); // // Operation op; // OpVector res; // // m_task->initTask("1", res); // // ASSERT_TRUE(m_task->obsolete()); // ASSERT_TRUE(res.empty()); } int main() { Tasktest t; return t.run(); } // stubs #include "common/log.h" #include "stubs/common/stubcustom.h" #include "stubs/rules/simulation/stubEntity.h" #include "stubs/rules/stubLocatedEntity.h" #include "stubs/common/stubRouter.h" #include "stubs/rules/stubLocation.h" #include "stubs/rules/simulation/stubScriptUtils.h" #define STUB_Script_operation HandlerResult Script::operation(const std::string & opname, const Atlas::Objects::Operation::RootOperation & op, OpVector & res) { return Tasktest::get_Script_operation_ret(); } #include "stubs/rules/stubScript.h" void log(LogLevel lvl, const std::string & msg) { }