// 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 #ifdef NDEBUG #undef NDEBUG #endif #ifndef DEBUG #define DEBUG #endif #include #include "python_testers.h" #include "client/Python_ClientAPI.h" #include "rules/python/Python_API.h" #include #include #include #include #include #include #include #include #include #include #include "external/pycxx/CXX/Objects.hxx" static bool stub_make_fail = false; static bool stub_look_fail = false; static bool stub_lookfor_fail = false; int main() { boost::asio::io_service io_service; init_python_api({&CyPy_Server::init, &CyPy_Rules::init, &CyPy_Atlas::init, &CyPy_Physics::init, &CyPy_Common::init, &CyPy_Ai::init}); extend_client_python_api(); auto client = new CreatorClient("1", "2", *new ClientConnection(io_service)); Ref entity = new MemEntity("1", 1); OpVector res; client->setOwnEntity(res, entity); Py::Module module("server"); module.setAttr("testclient", CyPy_CreatorClient::wrap(client)); run_python_string("import server"); run_python_string("import ai"); run_python_string("import rules"); run_python_string("import atlas"); expect_python_error("server.CreatorClient(1)", PyExc_RuntimeError); expect_python_error("server.CreatorClient(\"one\")", PyExc_RuntimeError); run_python_string("c=server.testclient"); run_python_string("c.as_entity()"); expect_python_error("c.make()", PyExc_IndexError); expect_python_error("c.make('1')", PyExc_TypeError); run_python_string("c.make(atlas.Entity('1'))"); stub_make_fail = true; expect_python_error("c.make(atlas.Entity('1'))", PyExc_RuntimeError); stub_make_fail = false; run_python_string("c.set('1', atlas.Entity('1'))"); expect_python_error("c.set('1', 'not an entity')", PyExc_TypeError); expect_python_error("c.set(1, atlas.Entity('1'))", PyExc_TypeError); run_python_string("c.look('1')"); stub_look_fail = true; expect_python_error("c.look('1')", PyExc_RuntimeError); stub_look_fail = false; expect_python_error("c.look(1)", PyExc_TypeError); run_python_string("e=c.look('1')"); run_python_string("assert type(e) == server.Thing"); run_python_string("c.look_for(atlas.Entity('1'))"); stub_lookfor_fail = true; run_python_string("c.look_for(atlas.Entity('1'))"); stub_lookfor_fail = false; expect_python_error("c.look_for('1')", PyExc_TypeError); run_python_string("c.send(atlas.Operation('info'))"); expect_python_error("c.send('info')", PyExc_TypeError); expect_python_error("c.send()", PyExc_IndexError); run_python_string("c.delete('1')"); expect_python_error("c.delete(1)", PyExc_TypeError); expect_python_error("c.delete()", PyExc_IndexError); run_python_string("assert c == server.testclient"); run_python_string("assert type(c.map) == ai.MemMap"); run_python_string("assert type(c.entity.location) == rules.Location"); run_python_string("assert type(c.time) == rules.WorldTime"); expect_python_error("c.foo", PyExc_AttributeError); expect_python_error("c.foo_operation", PyExc_AttributeError); run_python_string("c.foo = 1"); run_python_string("assert c.foo == 1"); run_python_string("c.foo = [1,2]"); expect_python_error("c.map = 1", PyExc_AttributeError); shutdown_python_api(); return 0; } // stubs #include "client/ObserverClient.h" #include "client/CreatorClient.h" #include "rules/simulation/Entity.h" #include "common/id.h" #include #include using Atlas::Objects::Entity::RootEntity; #define STUB_CharacterClient_look Ref CharacterClient::look(const std::string & id) { if (stub_look_fail) { return nullptr; } return new Entity(id, integerId(id)); } #define STUB_CharacterClient_lookFor Ref CharacterClient::lookFor(const RootEntity & entity) { if (stub_lookfor_fail) { return nullptr; } return new Entity(entity->getId(), integerId(entity->getId())); } #define STUB_CreatorClient_make Ref CreatorClient::make(const RootEntity & entity) { if (stub_make_fail) { return nullptr; } return new Entity(entity->getId(), integerId(entity->getId())); } #include "stubs/client/stubCreatorClient.h" #include "stubs/client/stubCharacterClient.h" #include "stubs/client/stubObserverClient.h" #include "stubs/client/stubBaseClient.h" #include "stubs/client/stubClientConnection.h"