cyphesis/tests/server/WorldRouterTest.cpp
Erik Ogenvik 7fcf0c34d1 Envelope router ids in one single struct.
Since the string and the integer always go together.
2022-07-04 15:37:51 +02:00

352 lines
8.1 KiB
C++

// 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 "../TestBase.h"
#include "rules/simulation/WorldRouter.h"
#include "server/EntityBuilder.h"
#include "rules/Domain.h"
#include "rules/simulation/World.h"
#include "common/const.h"
#include "common/globals.h"
#include "common/id.h"
#include "common/Inheritance.h"
#include "common/log.h"
#include "common/Monitors.h"
#include "common/operations/Tick.h"
#include "common/Variable.h"
#include <Atlas/Objects/Anonymous.h>
#include <cstdio>
#include <cstdlib>
#include <cassert>
using Atlas::Message::MapType;
using Atlas::Objects::Entity::Anonymous;
using Atlas::Objects::Entity::RootEntity;
using Atlas::Objects::Operation::Tick;
static bool stub_deny_newid = false;
Atlas::Objects::Factories factories;
class WorldRoutertest : public Cyphesis::TestBase
{
WorldRouter * test_world;
EntityBuilder* m_eb;
public:
WorldRoutertest();
void setup();
void teardown();
void test_constructor();
void test_addNewEntity_unknown();
void test_addNewEntity_thing();
void test_addNewEntity_idfail();
void test_addEntity();
void test_addEntity_tick();
void test_addEntity_tick_get();
void test_delEntity();
void test_delEntity_world();
Inheritance* m_inheritance;
Ref<LocatedEntity> m_rootEntity;
};
WorldRoutertest::WorldRoutertest()
{
ADD_TEST(WorldRoutertest::test_addNewEntity_thing);
ADD_TEST(WorldRoutertest::test_constructor);
ADD_TEST(WorldRoutertest::test_addNewEntity_unknown);
ADD_TEST(WorldRoutertest::test_addNewEntity_idfail);
ADD_TEST(WorldRoutertest::test_addEntity);
ADD_TEST(WorldRoutertest::test_addEntity_tick);
ADD_TEST(WorldRoutertest::test_addEntity_tick_get);
ADD_TEST(WorldRoutertest::test_delEntity);
ADD_TEST(WorldRoutertest::test_delEntity_world);
}
void WorldRoutertest::setup()
{
m_rootEntity = new Entity(0);
m_inheritance = new Inheritance(factories);
m_eb = new EntityBuilder();
test_world = new WorldRouter(m_rootEntity, *m_eb, {});
}
void WorldRoutertest::teardown()
{
m_rootEntity = nullptr;
delete m_eb;
delete test_world;
delete m_inheritance;
}
void WorldRoutertest::test_constructor()
{
}
void WorldRoutertest::test_addNewEntity_unknown()
{
auto ent1 = test_world->addNewEntity("__no_such_type__",
Anonymous());
assert(ent1.get() == 0);
}
void WorldRoutertest::test_addNewEntity_thing()
{
Anonymous ent;
ent->setLoc("0");
auto ent1 = test_world->addNewEntity("thing", ent);
assert(ent1.get() != 0);
}
void WorldRoutertest::test_addNewEntity_idfail()
{
stub_deny_newid = true;
Anonymous ent;
ent->setLoc("0");
auto ent1 = test_world->addNewEntity("thing", ent);
assert(ent1.get() == 0);
stub_deny_newid = false;
}
void WorldRoutertest::test_addEntity()
{
auto id = newId();
auto ent2 = new Entity(id);
assert(ent2 != 0);
ent2->m_parent = m_rootEntity.get();
test_world->addEntity(ent2, m_rootEntity);
}
void WorldRoutertest::test_addEntity_tick()
{
auto id = newId();
auto ent2 = new Entity(id);
assert(ent2 != 0);
ent2->m_parent = m_rootEntity.get();
test_world->addEntity(ent2, m_rootEntity);
Tick tick;
tick->setFutureSeconds(0);
tick->setTo(ent2->getId());
test_world->message(tick, *ent2);
}
void WorldRoutertest::test_addEntity_tick_get()
{
auto id = newId();
auto ent2 = new Entity(id);
assert(ent2 != 0);
ent2->m_parent = m_rootEntity.get();
test_world->addEntity(ent2, m_rootEntity);
Tick tick;
tick->setFutureSeconds(0);
tick->setTo(ent2->getId());
test_world->message(tick, *ent2);
}
void WorldRoutertest::test_delEntity()
{
auto id = newId();
auto ent2 = new Entity(id);
assert(ent2 != 0);
ent2->m_parent = m_rootEntity.get();
test_world->addEntity(ent2, m_rootEntity);
test_world->delEntity(ent2);
test_world->delEntity(m_rootEntity.get());
}
void WorldRoutertest::test_delEntity_world()
{
test_world->delEntity(m_rootEntity.get());
}
int main()
{
WorldRoutertest t;
return t.run();
}
// Stubs
int timeoffset = 0;
namespace consts {
const char * rootWorldId = "0";
const long rootWorldIntId = 0L;
}
namespace Atlas { namespace Objects { namespace Operation {
int TICK_NO = -1;
}}}
#include "../stubs/rules/simulation/stubWorld.h"
#include "../stubs/rules/simulation/stubThing.h"
#include "../stubs/rules/simulation/stubEntity.h"
#include "../stubs/rules/stubDomain.h"
#include "../stubs/common/stubOperationsDispatcher.h"
#include "../stubs/common/stubTypeNode.h"
template class OperationsDispatcher<LocatedEntity>;
template struct OpQueEntry<LocatedEntity>;
#define STUB_LocatedEntity_LocatedEntity_DTOR
// Deletions and reference count decrements are required to ensure map
// memory management works correctly.
LocatedEntity::~LocatedEntity()
{
if (m_parent) {
m_parent = nullptr;
}
}
#define STUB_LocatedEntity_makeContainer
void LocatedEntity::makeContainer()
{
if (!m_contains) {
m_contains.reset(new LocatedEntitySet);
}
}
#include "../stubs/rules/stubLocatedEntity.h"
#include "../stubs/common/stubRouter.h"
#include "../stubs/common/stubLink.h"
#include "../stubs/server/stubServerRouting.h"
#include "../stubs/server/stubLobby.h"
#include "../stubs/common/stubShaker.h"
long integerId(const std::string & id)
{
long intId = strtol(id.c_str(), 0, 10);
if (intId == 0 && id != "0") {
intId = -1L;
}
return intId;
}
#include "../stubs/common/stublog.h"
static inline float sqr(float x)
{
return x * x;
}
#include "../stubs/rules/stubLocation.h"
static long idGenerator = 2;
RouterId newId()
{
if (stub_deny_newid) {
return -1;
}
long new_id = ++idGenerator;
return {new_id};
}
#ifndef STUB_BaseWorld_getEntity
#define STUB_BaseWorld_getEntity
Ref<LocatedEntity> BaseWorld::getEntity(const std::string & id) const
{
return getEntity(integerId(id));
}
Ref<LocatedEntity> BaseWorld::getEntity(long id) const
{
auto I = m_eobjects.find(id);
if (I != m_eobjects.end()) {
assert(I->second);
return I->second;
} else {
return nullptr;
}
}
#endif //STUB_BaseWorld_getEntity
#include "../stubs/rules/simulation/stubBaseWorld.h"
#ifndef STUB_Inheritance_getType
#define STUB_Inheritance_getType
const TypeNode* Inheritance::getType(const std::string & parent) const
{
auto I = atlasObjects.find(parent);
if (I == atlasObjects.end()) {
return 0;
}
return I->second.get();
}
#endif //STUB_Inheritance_getType
#include "../stubs/common/stubInheritance.h"
#include "../stubs/rules/simulation/stubTask.h"
#include "../stubs/common/stubVariable.h"
#include "../stubs/common/stubMonitors.h"
#include "../stubs/common/stubProperty.h"
#include "../stubs/common/stubPropertyManager.h"
#include "rules/simulation/CorePropertyManager.h"
#include "common/Property_impl.h"
#define STUB_EntityBuilder_newEntity
Ref<Entity> EntityBuilder::newEntity(RouterId id,
const std::string & type,
const RootEntity & attributes) const
{
if (type == "thing") {
auto e = new Entity(id);
return e;
}
return 0;
}
#include "../stubs/server/stubEntityBuilder.h"
#include "../stubs/modules/stubWeakEntityRef.h"