cyphesis/tests/Py_ThingTest.cpp

148 lines
5.1 KiB
C++
Raw Permalink Normal View History

// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2009 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
2011-02-15 09:30:46 +00:00
#ifdef NDEBUG
#undef NDEBUG
#else
#define CYPHESIS_DEBUG
2011-02-15 09:30:46 +00:00
#endif
#ifndef DEBUG
#define DEBUG
#endif
#include <Python.h>
#include "python_testers.h"
#include "TestWorld.h"
2009-11-12 22:45:21 +00:00
#include "TestPropertyManager.h"
2018-11-03 16:43:33 +01:00
#include "rules/python/Python_API.h"
#include "rules/simulation/Entity.h"
#include <cassert>
#include <common/Inheritance.h>
2018-11-03 16:43:33 +01:00
#include <rules/python/Python_Script_Utils.h>
#include <rules/python/CyPy_LocatedEntity.h>
2018-11-03 16:43:33 +01:00
#include <rules/simulation/python/CyPy_UsageInstance.h>
#include <Atlas/Objects/Operation.h>
2018-11-03 16:43:33 +01:00
#include <rules/simulation/python/CyPy_Server.h>
#include <rules/python/CyPy_Atlas.h>
#include <rules/python/CyPy_Physics.h>
#include <rules/python/CyPy_Common.h>
#include <rules/python/CyPy_Rules.h>
2018-05-04 19:17:55 +02:00
#include "stubs/common/stubMonitors.h"
int main()
{
2018-05-04 19:17:55 +02:00
Inheritance inheritance;
2009-11-12 22:45:21 +00:00
new TestPropertyManager;
2018-11-03 16:43:33 +01:00
init_python_api({&CyPy_Server::init,
&CyPy_Rules::init,
&CyPy_Atlas::init,
&CyPy_Physics::init,
2018-12-16 23:20:33 +01:00
&CyPy_Common::init});
2018-05-04 19:17:55 +02:00
run_python_string("from server import *");
run_python_string("from atlas import Operation");
run_python_string("from atlas import Oplist");
2009-11-12 23:35:39 +00:00
UsageInstance usageInstance;
usageInstance.actor = new Entity("100", 100);
usageInstance.op = Atlas::Objects::Operation::Action();
Py::Module serverModule("server");
serverModule.setAttr("usage_instance", CyPy_UsageInstance::wrap(usageInstance));
2018-07-24 23:11:10 +02:00
Ref<Entity> e = new Entity("1", 1);
SoftProperty* prop = new SoftProperty();
prop->set("bar");
e->setProperty("foo", prop);
2018-07-24 23:11:10 +02:00
Ref<Entity> wrld = new Entity("0", 0);
2018-08-17 22:04:07 +02:00
e->m_location.m_parent = wrld;
e->m_location.m_parent->makeContainer();
assert(e->m_location.m_parent->m_contains != nullptr);
e->m_location.m_parent->m_contains->insert(e);
TestWorld test_world(wrld);
auto wrap_e = CyPy_LocatedEntity::wrap(e);
assert(CyPy_LocatedEntity::check(wrap_e));
auto wrap_e_again = CyPy_LocatedEntity::wrap(e);
assert(CyPy_LocatedEntity::check(wrap_e_again));
assert(wrap_e == wrap_e_again);
2018-10-27 13:13:45 +02:00
Ref<Entity> c = new Entity("2", 2);
auto wrap_c = CyPy_LocatedEntity::wrap(c);
assert(CyPy_LocatedEntity::check(wrap_c));
Py::Module module("server");
module.setAttr("testentity", wrap_e);
run_python_string("import server")
run_python_string("assert server.testentity is not None");
run_python_string("assert server.testentity.props.foo == 'bar'");
2018-07-29 21:10:22 +02:00
expect_python_error("Thing()", PyExc_IndexError);
expect_python_error("Thing('s')", PyExc_TypeError);
run_python_string("le=Thing('1')");
run_python_string("le_ent = le.as_entity()");
run_python_string("assert(le_ent.id == '1')");
run_python_string("le.send_world(Operation('get'))");
2018-07-29 21:10:22 +02:00
run_python_string("le==Thing('2')");
2018-05-04 19:17:55 +02:00
expect_python_error("print(le.type)", PyExc_AttributeError);
expect_python_error("print(le.foo_operation)", PyExc_AttributeError);
run_python_string("print(le.location)");
run_python_string("print(le.contains)");
expect_python_error("le.type", PyExc_AttributeError);
expect_python_error("le.type='non_exist'", PyExc_ValueError);
expect_python_error("le.type=1", PyExc_TypeError);
run_python_string("le.type='game_entity'");
expect_python_error("le.type='game_entity'", PyExc_RuntimeError);
run_python_string("le.type");
expect_python_error("le.map=1", PyExc_AttributeError);
run_python_string("le.props.map_attr={'1': 2}");
run_python_string("le.props.map_attr");
run_python_string("le.props.list_attr=[1,2]");
run_python_string("le.props.list_attr");
expect_python_error("le.props.non_atlas=set([1,2])", PyExc_TypeError);
run_python_string("le.props.non_atlas == None");
2011-12-27 10:28:14 +01:00
2018-07-29 21:10:22 +02:00
run_python_string("Thing(Thing('1'))");
run_python_string("t=Thing('1')");
run_python_string("Thing(t)");
//run_python_string("Thing(Character('1'))");
run_python_string("t.as_entity()");
run_python_string("t.send_world(Operation('get'))");
expect_python_error("t.send_world('get')", PyExc_TypeError);
2018-05-04 19:17:55 +02:00
expect_python_error("print(t.type)", PyExc_AttributeError);
expect_python_error("print(t.foo_operation)", PyExc_AttributeError);
run_python_string("print(t.location)");
run_python_string("print(t.contains)");
2009-11-12 23:35:39 +00:00
shutdown_python_api();
return 0;
}