// 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 #ifdef NDEBUG #undef NDEBUG #endif #ifndef DEBUG #define DEBUG #endif #include "server/CommPeer.h" #include "server/ServerRouting.h" #include "server/Peer.h" #include "common/log.h" #include #include #include #include #include #include #include #include #define INT_OPTION(_var, _val, _section, _setting, _help) \ int _var = _val; \ int_config_register _var ## _register(_var, _section, _setting, _help); const time_t reference_seconds = 1000000000; // Some time in the early 21st Atlas::Objects::Factories atlasFactories; class TestNegotiate : public Atlas::Negotiate { public: Atlas::Negotiate::State m_state; explicit TestNegotiate(Atlas::Negotiate::State state) : m_state(state) { } Atlas::Negotiate::State getState() override { return m_state; } std::unique_ptr getCodec(Atlas::Bridge &) override { return {}; } void poll() override { } }; class TestCommPeer : public CommPeer { public: explicit TestCommPeer(boost::asio::io_context & svr) : CommPeer("", svr, atlasFactories) { } void test_setNegotiateState(Atlas::Negotiate::State state) { m_negotiate.reset(new TestNegotiate(state)); } }; class TestPeer : public Peer { public: TestPeer(CommSocket & c, ServerRouting & s) : Peer(c, s, "test_addr", 6767, 5) { } }; int main() { ServerRouting server(*(BaseWorld*)0, *(Persistence*)nullptr, "deeds", "test_server", 2,AssetsHandler({})); boost::asio::io_context comm_server; { auto cs = std::make_shared(comm_server); comm_server.poll(); } { auto cs = std::make_shared(comm_server); cs->test_setNegotiateState(Atlas::Negotiate::SUCCEEDED); comm_server.poll(); } { auto cs = std::make_shared(comm_server); cs->test_setNegotiateState(Atlas::Negotiate::SUCCEEDED); comm_server.poll(); } { auto cs = std::make_shared(comm_server); cs->setup(std::make_unique(*cs, server)); comm_server.poll(); } { auto cs = std::make_shared(comm_server); TestPeer * tr = new TestPeer(*cs, server); cs->setup(std::unique_ptr(tr)); tr->setAuthState(PEER_AUTHENTICATED); comm_server.poll(); } { auto cs = std::make_shared(comm_server); TestPeer * tr = new TestPeer(*cs, server); cs->setup(std::unique_ptr(tr)); tr->setAuthState(PEER_FAILED); comm_server.poll(); } return 0; } // Stub functions #include int CommSocket::flush() { return 0; } 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" Peer::Peer(CommSocket & client, ServerRouting & svr, const std::string & addr, int port, RouterId id) : Link(client, id), m_state(PEER_INIT), m_server(svr) { } Peer::~Peer() { } PeerAuthState Peer::getAuthState() { return m_state; } void Peer::setAuthState(PeerAuthState state) { m_state = state; } void Peer::externalOperation(const Operation &op, Link &) { } void Peer::operation(const Operation &op, OpVector &res) { } void Peer::cleanTeleports() { } int opSerialCount = 0; const char * const CYPHESIS = "cyphesis"; 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) { } #include Shaker::Shaker() { } std::string Shaker::generateSalt(size_t length) { return ""; } // Library stubs