cyphesis/tests/PeerTest.cpp

557 lines
14 KiB
C++
Raw Permalink Normal View History

2010-03-16 01:03:50 +00:00
// Cyphesis Online RPG Server and AI Engine
2010-03-18 01:51:46 +00:00
// Copyright (C) 2010 Alistair Riddoch
2010-03-16 01:03:50 +00:00
//
// 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
#endif
#ifndef DEBUG
#define DEBUG
#endif
2012-08-01 20:31:29 +01:00
#include "null_stream.h"
2010-03-16 01:03:50 +00:00
#include "server/Peer.h"
#include "common/CommAsioClient_impl.h"
2010-11-25 17:39:38 +00:00
#include "server/CommPeer.h"
2018-11-03 16:43:33 +01:00
#include "rules/simulation/ExternalMind.h"
#include "rules/simulation/Entity.h"
2010-11-25 17:12:08 +00:00
2018-11-03 16:43:33 +01:00
#include "rules/simulation/BaseWorld.h"
#include "common/CommSocket.h"
2010-12-03 21:46:22 +00:00
#include <Atlas/Objects/Operation.h>
2010-03-16 01:03:50 +00:00
#include <Atlas/Objects/SmartPtr.h>
#include <cassert>
#include <string>
2018-11-03 16:43:33 +01:00
#include <rules/simulation/MindsProperty.h>
class TestCommSocket : public CommSocket
{
2012-08-01 20:31:29 +01:00
public:
TestCommSocket() : CommSocket(*(boost::asio::io_service*)0)
{
}
virtual void disconnect()
{
}
virtual int flush()
{
return 0;
}
2012-08-01 20:31:29 +01:00
};
2018-07-24 21:18:50 +02:00
#include "TestWorld.h"
class MyTestWorld : public TestWorld {
2010-11-25 12:16:46 +00:00
public:
2018-07-24 21:18:50 +02:00
explicit MyTestWorld() : TestWorld() {
2010-11-25 12:16:46 +00:00
}
bool idle() override
{ return false; }
2018-07-24 21:18:50 +02:00
LocatedEntity * test_addEntity(LocatedEntity * ent, long intId) {
2010-11-25 12:16:46 +00:00
m_eobjects[intId] = ent;
return ent;
2010-11-25 12:16:46 +00:00
}
2010-11-25 17:39:38 +00:00
void test_delEntity(long intId) {
m_eobjects.erase(intId);
}
Ref<LocatedEntity> spawnNewEntity(const std::string & name,
const std::string & type,
const Atlas::Objects::Entity::RootEntity & desc) override {
2010-11-25 12:16:46 +00:00
return addNewEntity(type, desc);
}
2010-11-25 12:16:46 +00:00
};
class TestPeer : public Peer {
public:
2012-08-01 20:31:29 +01:00
TestPeer(CommSocket & client, ServerRouting & svr,
const std::string & addr, const std::string & id, long iid)
2012-07-19 22:58:30 +01:00
: Peer(client, svr, addr, 6767, id, iid)
{
}
const std::string& getAccountType() const {
return m_accountType;
}
};
Atlas::Objects::Operation::RootOperation stub_CommClient_sent_op(0);
2010-11-25 12:16:46 +00:00
int main()
{
2018-07-24 21:18:50 +02:00
MyTestWorld world;
2010-03-16 01:03:50 +00:00
{
2012-08-01 20:31:29 +01:00
Peer * p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-03-16 01:03:50 +00:00
delete p;
}
{
2012-08-01 20:31:29 +01:00
Peer * p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-03-16 01:03:50 +00:00
Atlas::Objects::Operation::RootOperation op;
OpVector res;
p->operation(op, res);
delete p;
}
2010-08-10 19:21:24 +05:30
{
// Test the setting of authentiaction states
2012-08-01 20:31:29 +01:00
Peer * p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-08-10 19:21:24 +05:30
assert(p->getAuthState() == PEER_INIT);
p->setAuthState(PEER_AUTHENTICATED);
assert(p->getAuthState() == PEER_AUTHENTICATED);
2010-08-19 02:11:06 +05:30
delete p;
2010-08-10 19:21:24 +05:30
}
{
2012-08-01 20:31:29 +01:00
Peer *p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
Atlas::Objects::Operation::Info op;
OpVector res;
p->operation(op, res);
}
2010-11-25 16:11:07 +00:00
// Authenticating (no args)
{
2012-08-01 20:31:29 +01:00
Peer *p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 16:11:07 +00:00
p->setAuthState(PEER_AUTHENTICATING);
Atlas::Objects::Operation::Info op;
OpVector res;
p->operation(op, res);
}
// Authenticating (empty arg)
{
2012-08-01 20:31:29 +01:00
Peer *p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 16:11:07 +00:00
p->setAuthState(PEER_AUTHENTICATING);
Atlas::Objects::Operation::Info op;
Atlas::Objects::Root arg;
op->setArgs1(arg);
OpVector res;
p->operation(op, res);
}
// Authenticating (full arg)
{
2012-08-01 20:31:29 +01:00
TestPeer *p = new TestPeer(*(CommSocket*)0, *(ServerRouting*)0, "addr", "1", 1);
2010-11-25 16:11:07 +00:00
p->setAuthState(PEER_AUTHENTICATING);
Atlas::Objects::Operation::Info op;
Atlas::Objects::Root arg;
arg->setId("2");
2017-07-24 13:39:22 +02:00
arg->setParent("server");
2010-11-25 16:11:07 +00:00
op->setArgs1(arg);
OpVector res;
p->operation(op, res);
assert(p->getAccountType() == "server");
2010-11-25 16:11:07 +00:00
}
// Authenticated (no args)
{
2012-08-01 20:31:29 +01:00
Peer *p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 16:11:07 +00:00
p->setAuthState(PEER_AUTHENTICATED);
Atlas::Objects::Operation::Info op;
OpVector res;
p->operation(op, res);
}
{
2012-08-01 20:31:29 +01:00
Peer *p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 16:11:07 +00:00
Atlas::Objects::Operation::Error op;
OpVector res;
p->operation(op, res);
}
2010-11-25 16:48:51 +00:00
// Not authenticated
{
2012-08-01 20:31:29 +01:00
Peer *p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 16:48:51 +00:00
Ref<Entity> e(new Entity("3", 3));
int ret = p->teleportEntity(e.get());
2010-11-25 16:48:51 +00:00
assert(ret == -1);
}
// Authenticated
{
TestCommSocket client;
2012-07-19 22:58:30 +01:00
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 16:48:51 +00:00
p->setAuthState(PEER_AUTHENTICATED);
Ref<Entity> e(new Entity("3", 3));
int ret = p->teleportEntity(e.get());
2010-11-25 16:48:51 +00:00
assert(ret == 0);
assert(stub_CommClient_sent_op.isValid());
assert(stub_CommClient_sent_op->getArgs().size() == 1);
2010-11-25 16:48:51 +00:00
}
2010-11-25 17:12:08 +00:00
// Re-teleport same entity
{
TestCommSocket client;
2012-07-19 22:58:30 +01:00
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:12:08 +00:00
p->setAuthState(PEER_AUTHENTICATED);
Ref<Entity> e(new Entity("3", 3));
int ret = p->teleportEntity(e.get());
2010-11-25 17:12:08 +00:00
assert(ret == 0);
assert(stub_CommClient_sent_op.isValid());
assert(stub_CommClient_sent_op->getArgs().size() == 1);
2010-11-25 17:12:08 +00:00
ret = p->teleportEntity(e.get());
2010-11-25 17:12:08 +00:00
assert(ret != 0);
}
2018-10-27 13:13:45 +02:00
// Entity (no mind)
2010-11-25 17:12:08 +00:00
{
TestCommSocket client;
2012-07-19 22:58:30 +01:00
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:12:08 +00:00
p->setAuthState(PEER_AUTHENTICATED);
2018-10-27 13:13:45 +02:00
Ref<Entity> e(new Entity("3", 3));
int ret = p->teleportEntity(e.get());
2010-11-25 17:12:08 +00:00
assert(ret == 0);
assert(stub_CommClient_sent_op.isValid());
assert(stub_CommClient_sent_op->getArgs().size() == 1);
2010-11-25 17:12:08 +00:00
}
2018-10-27 13:13:45 +02:00
// Entity (external mind, unconnected)
2010-11-25 17:12:08 +00:00
{
TestCommSocket client;
2012-07-19 22:58:30 +01:00
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:12:08 +00:00
p->setAuthState(PEER_AUTHENTICATED);
2018-10-27 13:13:45 +02:00
Ref<Entity> e(new Entity("3", 3));
auto mindsProp = e->modPropertyClassFixed<MindsProperty>();
mindsProp->addMind(new ExternalMind("1", 1, *e));
int ret = p->teleportEntity(e.get());
2010-11-25 17:12:08 +00:00
assert(ret == 0);
assert(stub_CommClient_sent_op.isValid());
assert(stub_CommClient_sent_op->getArgs().size() == 1);
2010-11-25 17:12:08 +00:00
}
2018-10-27 13:13:45 +02:00
// Entity (external mind, connected)
2010-11-25 17:12:08 +00:00
{
TestCommSocket client;
2012-07-19 22:58:30 +01:00
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:12:08 +00:00
p->setAuthState(PEER_AUTHENTICATED);
2018-10-27 13:13:45 +02:00
Ref<Entity> e(new Entity("3", 3));
ExternalMind * mind = new ExternalMind("1", 1, *e);
mind->linkUp((Link*)23);
2018-10-27 13:13:45 +02:00
auto mindsProp = e->modPropertyClassFixed<MindsProperty>();
mindsProp->addMind(mind);
int ret = p->teleportEntity(e.get());
2010-11-25 17:12:08 +00:00
assert(ret == 0);
assert(stub_CommClient_sent_op.isValid());
2018-10-27 13:13:45 +02:00
assert(stub_CommClient_sent_op->getArgs().size() == 1);
2010-11-25 17:12:08 +00:00
}
2010-11-25 17:39:38 +00:00
// No arg
{
2012-08-01 20:31:29 +01:00
Peer *p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:39:38 +00:00
Atlas::Objects::Operation::Info op;
OpVector res;
p->peerTeleportResponse(op, res);
}
// Empty arg, no refno
{
2012-08-01 20:31:29 +01:00
Peer *p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:39:38 +00:00
Atlas::Objects::Operation::Info op;
OpVector res;
Atlas::Objects::Root arg;
op->setArgs1(arg);
p->peerTeleportResponse(op, res);
}
// Empty arg, made up refno, not CommPeer
{
TestCommSocket client;
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:39:38 +00:00
Atlas::Objects::Operation::Info op;
OpVector res;
Atlas::Objects::Root arg;
op->setArgs1(arg);
op->setRefno(23);
p->peerTeleportResponse(op, res);
}
// Empty arg, made up refno
{
TestCommSocket client;
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:39:38 +00:00
Atlas::Objects::Operation::Info op;
OpVector res;
Atlas::Objects::Root arg;
op->setArgs1(arg);
op->setRefno(23);
p->peerTeleportResponse(op, res);
}
// Empty arg, refno that matches earlier teleport, not in world
{
TestCommSocket client;
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:39:38 +00:00
p->setAuthState(PEER_AUTHENTICATED);
Ref<Entity> e(new Entity("23", 23));
int ret = p->teleportEntity(e.get());
2010-11-25 17:39:38 +00:00
assert(ret == 0);
Atlas::Objects::Operation::Info op;
OpVector res;
Atlas::Objects::Root arg;
op->setArgs1(arg);
op->setRefno(23);
p->peerTeleportResponse(op, res);
}
// Empty arg, refno that matches earlier teleport, in world
{
TestCommSocket client;
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:39:38 +00:00
p->setAuthState(PEER_AUTHENTICATED);
Ref<Entity> e(new Entity("23", 23));
int ret = p->teleportEntity(e.get());
2010-11-25 17:39:38 +00:00
assert(ret == 0);
world.test_addEntity(e.get(), 23);
2010-11-25 17:39:38 +00:00
Atlas::Objects::Operation::Info op;
OpVector res;
Atlas::Objects::Root arg;
op->setArgs1(arg);
op->setRefno(23);
p->peerTeleportResponse(op, res);
world.test_delEntity(23);
}
// Empty arg, refno that matches earlier teleport, with mind
{
TestCommSocket client;
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:39:38 +00:00
p->setAuthState(PEER_AUTHENTICATED);
2018-10-27 13:13:45 +02:00
Ref<Entity> e(new Entity("23", 23));
ExternalMind * mind = new ExternalMind("1", 1, *e);
mind->linkUp((Link*)23);
2018-10-27 13:13:45 +02:00
auto mindsProp = e->modPropertyClassFixed<MindsProperty>();
mindsProp->addMind(mind);
int ret = p->teleportEntity(e.get());
2010-11-25 17:39:38 +00:00
assert(ret == 0);
world.test_addEntity(e.get(), 23);
2010-11-25 17:39:38 +00:00
Atlas::Objects::Operation::Info op;
OpVector res;
Atlas::Objects::Root arg;
op->setArgs1(arg);
op->setRefno(23);
p->peerTeleportResponse(op, res);
world.test_delEntity(23);
}
// No teleports to clear
2010-11-25 16:11:07 +00:00
{
2012-08-01 20:31:29 +01:00
Peer *p = new Peer(*(CommSocket*)0, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 16:11:07 +00:00
p->cleanTeleports();
}
2010-11-25 17:39:38 +00:00
// One teleport to clear
{
TestCommSocket client;
2012-07-19 22:58:30 +01:00
Peer *p = new Peer(client, *(ServerRouting*)0, "addr", 6767, "1", 1);
2010-11-25 17:39:38 +00:00
p->setAuthState(PEER_AUTHENTICATED);
Ref<Entity> e(new Entity("23", 23));
int ret = p->teleportEntity(e.get());
2010-11-25 17:39:38 +00:00
assert(ret == 0);
p->cleanTeleports();
}
2010-03-16 01:03:50 +00:00
return 0;
}
2010-11-25 12:16:46 +00:00
// stubs
#include "server/TeleportState.h"
#include "rules/Script.h"
2010-11-25 12:16:46 +00:00
#include "common/id.h"
#include "common/log.h"
#include "common/TypeNode.h"
#include <Atlas/Negotiate.h>
#include <cstdlib>
using Atlas::Message::MapType;
TeleportState::TeleportState(boost::posix_time::ptime time) : m_state(TELEPORT_NONE),
2010-11-25 14:29:44 +00:00
m_teleportTime(time)
2010-11-25 12:16:46 +00:00
{
}
void TeleportState::setRequested()
{
m_state = TELEPORT_REQUESTED;
}
void TeleportState::setCreated()
{
m_state = TELEPORT_CREATED;
}
void TeleportState::setKey(const std::string & key)
{
m_possessKey = key;
}
CommPeer::CommPeer(const std::string & name,
boost::asio::io_service& io_service) :
CommAsioClient<boost::asio::ip::tcp>(name, io_service), m_auth_timer(io_service)
2010-11-25 17:39:38 +00:00
{
}
2010-11-25 12:16:46 +00:00
CommPeer::~CommPeer()
{
}
2012-08-01 20:31:29 +01:00
int CommSocket::flush()
2010-11-25 12:16:46 +00:00
{
2012-08-01 20:31:29 +01:00
return 0;
2010-11-25 12:16:46 +00:00
}
2018-10-27 13:13:45 +02:00
#define STUB_ExternalMind_linkUp
void ExternalMind::linkUp(Link * c)
2010-11-25 17:12:08 +00:00
{
m_link = c;
2010-11-25 17:12:08 +00:00
}
2018-11-03 16:43:33 +01:00
#include "stubs/rules/simulation/stubExternalMind.h"
#include "stubs/rules/simulation/stubMindsProperty.h"
#include "stubs/rules/simulation/stubThing.h"
#include "stubs/rules/simulation/stubEntity.h"
#include "stubs/rules/stubLocatedEntity.h"
#include "stubs/common/stubRouter.h"
2018-10-27 13:13:45 +02:00
#include "stubs/common/stubProperty.h"
2010-11-25 12:16:46 +00:00
2012-08-01 20:31:29 +01:00
2018-10-27 13:13:45 +02:00
#define STUB_Link_send
2012-08-01 20:31:29 +01:00
void Link::send(const Operation & op) const
{
stub_CommClient_sent_op = op;
2012-08-01 20:31:29 +01:00
}
2018-10-27 13:13:45 +02:00
#include "stubs/common/stubLink.h"
2018-11-03 16:43:33 +01:00
#include "stubs/rules/stubScript.h"
#include "stubs/common/stubTypeNode.h"
2018-11-03 16:43:33 +01:00
#include "stubs/rules/stubLocation.h"
2010-11-25 12:16:46 +00:00
#ifndef STUB_BaseWorld_getEntity
#define STUB_BaseWorld_getEntity
Ref<LocatedEntity> BaseWorld::getEntity(const std::string & id) const
2010-11-25 12:16:46 +00:00
{
return getEntity(integerId(id));
2010-11-25 12:16:46 +00:00
}
Ref<LocatedEntity> BaseWorld::getEntity(long id) const
2010-11-25 12:16:46 +00:00
{
auto I = m_eobjects.find(id);
2010-11-25 12:16:46 +00:00
if (I != m_eobjects.end()) {
assert(I->second);
2010-11-25 12:16:46 +00:00
return I->second;
} else {
return nullptr;
2010-11-25 12:16:46 +00:00
}
}
#endif //STUB_BaseWorld_getEntity
2010-11-25 12:16:46 +00:00
2018-11-03 16:43:33 +01:00
#include "stubs/rules/simulation/stubBaseWorld.h"
2010-11-25 12:16:46 +00:00
void log(LogLevel lvl, const std::string & msg)
{
}
2010-11-30 22:05:38 +00:00
void logEvent(LogEvent lev, const std::string & msg)
{
}
2010-11-25 12:16:46 +00:00
long integerId(const std::string & id)
{
long intId = strtol(id.c_str(), 0, 10);
if (intId == 0 && id != "0") {
intId = -1L;
}
return intId;
}