cyphesis/tests/server/CommPeerTest.cpp

239 lines
5 KiB
C++
Raw Permalink Normal View History

2010-08-11 06:19:40 +05:30
// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2010 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
#endif
#ifndef DEBUG
#define DEBUG
#endif
2010-08-11 06:19:40 +05:30
#include "server/CommPeer.h"
#include "server/ServerRouting.h"
#include "server/Peer.h"
#include "common/log.h"
#include <Atlas/Codec.h>
#include <Atlas/Negotiate.h>
#include <Atlas/Objects/Encoder.h>
#include <Atlas/Objects/RootEntity.h>
#include <Atlas/Objects/RootOperation.h>
#include <Atlas/Objects/SmartPtr.h>
#include <cstdlib>
#include <cassert>
#define INT_OPTION(_var, _val, _section, _setting, _help) \
int _var = _val; \
int_config_register _var ## _register(_var, _section, _setting, _help);
2010-11-26 10:11:22 +00:00
const time_t reference_seconds = 1000000000; // Some time in the early 21st
Atlas::Objects::Factories atlasFactories;
2010-08-11 06:19:40 +05:30
class TestNegotiate : public Atlas::Negotiate
{
public:
Atlas::Negotiate::State m_state;
2019-07-27 00:54:01 +02:00
explicit TestNegotiate(Atlas::Negotiate::State state) : m_state(state)
2010-08-11 06:19:40 +05:30
{
}
2019-07-27 00:54:01 +02:00
Atlas::Negotiate::State getState() override
2010-08-11 06:19:40 +05:30
{
return m_state;
}
2019-12-09 22:58:47 +01:00
std::unique_ptr<Atlas::Codec> getCodec(Atlas::Bridge &) override
2010-08-11 06:19:40 +05:30
{
2019-12-09 22:58:47 +01:00
return {};
2010-08-11 06:19:40 +05:30
}
2019-07-27 00:54:01 +02:00
void poll() override
2010-08-11 06:19:40 +05:30
{
}
};
class TestCommPeer : public CommPeer
{
public:
explicit TestCommPeer(boost::asio::io_context & svr) : CommPeer("", svr, atlasFactories)
2010-08-11 06:19:40 +05:30
{
}
void test_setNegotiateState(Atlas::Negotiate::State state)
{
m_negotiate.reset(new TestNegotiate(state));
2010-08-11 06:19:40 +05:30
}
};
class TestPeer : public Peer
2010-08-11 06:19:40 +05:30
{
public:
TestPeer(CommSocket & c, ServerRouting & s) : Peer(c, s, "test_addr", 6767, 5)
2010-08-11 06:19:40 +05:30
{
}
};
int main()
{
2021-08-01 23:17:40 +02:00
ServerRouting server(*(BaseWorld*)0, *(Persistence*)nullptr, "deeds", "test_server",
2,AssetsHandler({}));
2010-08-11 06:19:40 +05:30
2019-06-24 21:12:55 +02:00
boost::asio::io_context comm_server;
2010-08-11 06:19:40 +05:30
{
2014-02-04 12:20:10 +01:00
auto cs = std::make_shared<TestCommPeer>(comm_server);
comm_server.poll();
2010-08-11 06:19:40 +05:30
}
{
2014-02-04 12:20:10 +01:00
auto cs = std::make_shared<TestCommPeer>(comm_server);
2010-08-11 06:19:40 +05:30
cs->test_setNegotiateState(Atlas::Negotiate::SUCCEEDED);
comm_server.poll();
2010-08-11 06:19:40 +05:30
}
{
2014-02-04 12:20:10 +01:00
auto cs = std::make_shared<TestCommPeer>(comm_server);
2010-08-11 06:19:40 +05:30
cs->test_setNegotiateState(Atlas::Negotiate::SUCCEEDED);
comm_server.poll();
2010-08-11 06:19:40 +05:30
}
{
2014-02-04 12:20:10 +01:00
auto cs = std::make_shared<TestCommPeer>(comm_server);
2010-08-11 06:19:40 +05:30
cs->setup(std::make_unique<TestPeer>(*cs, server));
comm_server.poll();
2010-08-11 06:19:40 +05:30
}
{
2014-02-04 12:20:10 +01:00
auto cs = std::make_shared<TestCommPeer>(comm_server);
2010-08-11 06:19:40 +05:30
TestPeer * tr = new TestPeer(*cs, server);
cs->setup(std::unique_ptr<TestPeer>(tr));
2010-11-26 10:11:22 +00:00
tr->setAuthState(PEER_AUTHENTICATED);
comm_server.poll();
2010-08-11 06:19:40 +05:30
}
{
2014-02-04 12:20:10 +01:00
auto cs = std::make_shared<TestCommPeer>(comm_server);
2010-08-11 06:19:40 +05:30
TestPeer * tr = new TestPeer(*cs, server);
cs->setup(std::unique_ptr<TestPeer>(tr));
2010-11-26 10:11:22 +00:00
tr->setAuthState(PEER_FAILED);
comm_server.poll();
2010-08-11 06:19:40 +05:30
}
return 0;
}
// Stub functions
#include <Atlas/Net/Stream.h>
2010-08-11 06:19:40 +05:30
int CommSocket::flush()
2010-08-11 06:19:40 +05:30
{
return 0;
2010-08-11 06:19:40 +05:30
}
void log(LogLevel, const std::string & msg)
{
}
#include "../stubs/server/stubServerRouting.h"
#include "../stubs/server/stubLobby.h"
#include "../stubs/common/stubRouter.h"
#include "../stubs/common/stubLink.h"
#include "../stubs/common/stubAssetsHandler.h"
2010-08-11 06:19:40 +05:30
Peer::Peer(CommSocket & client,
2010-11-26 10:11:22 +00:00
ServerRouting & svr,
const std::string & addr,
2012-07-19 22:58:30 +01:00
int port,
RouterId id) :
Link(client, id),
2010-11-26 10:11:22 +00:00
m_state(PEER_INIT),
m_server(svr)
{
}
2010-08-11 06:19:40 +05:30
Peer::~Peer()
{
}
PeerAuthState Peer::getAuthState()
{
return m_state;
}
void Peer::setAuthState(PeerAuthState state)
{
m_state = state;
}
void Peer::externalOperation(const Operation &op, Link &)
{
}
2010-08-11 06:19:40 +05:30
void Peer::operation(const Operation &op, OpVector &res)
{
}
void Peer::cleanTeleports()
{
}
2010-08-11 06:19:40 +05:30
int opSerialCount = 0;
2013-11-15 00:16:17 +01:00
const char * const CYPHESIS = "cyphesis";
2010-08-11 06:19:40 +05:30
class int_config_register {
public:
int_config_register(int &, const char *, const char *, const char *);
};
int_config_register::int_config_register(int & var,
const char * section,
const char * setting,
const char * help)
{
}
2012-10-25 10:40:23 -04:00
#include <common/Shaker.h>
Shaker::Shaker()
{
}
std::string Shaker::generateSalt(size_t length)
{
return "";
}
2010-08-11 06:19:40 +05:30
// Library stubs