summaryrefslogtreecommitdiff
path: root/src/unittest/test_eventmanager.cpp
blob: bb0e5933646613d3e5f63d58df7514c6bb128011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
Minetest
Copyright (C) 2018 nerzhul, Loic BLOT <loic.blot@unix-experience.fr>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.

You should have received a copy of the GNU Lesser 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.
*/

#include <unordered_map>
#include "test.h"
#include "client/event_manager.h"

class TestEventManager : public TestBase
{
public:
	TestEventManager() { TestManager::registerTestModule(this); }
	const char *getName() override { return "TestEventManager"; }

	void runTests(IGameDef *gamedef) override;

	void testRegister();
	void testDeregister();
	void testRealEvent();
	void testRealEventAfterDereg();
};

// EventManager test class
class EventManagerTest : public EventManager
{
public:
	static void eventTest(MtEvent *e, void *data)
	{
		UASSERT(e->getType() >= 0);
		UASSERT(e->getType() < MtEvent::TYPE_MAX);
		EventManagerTest *emt = (EventManagerTest *)data;
		emt->m_test_value = e->getType();
	}

	u64 getTestValue() const { return m_test_value; }
	void resetValue() { m_test_value = 0; }

private:
	u64 m_test_value = 0;
};

static TestEventManager g_test_instance;

void TestEventManager::runTests(IGameDef *gamedef)
{
	TEST(testRegister);
	TEST(testDeregister);
	TEST(testRealEvent);
	TEST(testRealEventAfterDereg);
}

void TestEventManager::testRegister()
{
	EventManager ev;
	ev.reg(MtEvent::PLAYER_DAMAGE, nullptr, nullptr);
	ev.reg(MtEvent::PLAYER_DAMAGE, nullptr, nullptr);
}

void TestEventManager::testDeregister()
{
	EventManager ev;
	ev.dereg(MtEvent::NODE_DUG, nullptr, nullptr);
	ev.reg(MtEvent::PLAYER_DAMAGE, nullptr, nullptr);
	ev.dereg(MtEvent::PLAYER_DAMAGE, nullptr, nullptr);
}

void TestEventManager::testRealEvent()
{
	EventManager ev;
	std::unique_ptr<EventManagerTest> emt(new EventManagerTest());
	ev.reg(MtEvent::PLAYER_REGAIN_GROUND, EventManagerTest::eventTest, emt.get());

	// Put event & verify event value
	ev.put(new SimpleTriggerEvent(MtEvent::PLAYER_REGAIN_GROUND));
	UASSERT(emt->getTestValue() == MtEvent::PLAYER_REGAIN_GROUND);
}

void TestEventManager::testRealEventAfterDereg()
{
	EventManager ev;
	std::unique_ptr<EventManagerTest> emt(new EventManagerTest());
	ev.reg(MtEvent::PLAYER_REGAIN_GROUND, EventManagerTest::eventTest, emt.get());

	// Put event & verify event value
	ev.put(new SimpleTriggerEvent(MtEvent::PLAYER_REGAIN_GROUND));
	UASSERT(emt->getTestValue() == MtEvent::PLAYER_REGAIN_GROUND);

	// Reset internal value
	emt->resetValue();

	// Remove the registered event
	ev.dereg(MtEvent::PLAYER_REGAIN_GROUND, EventManagerTest::eventTest, emt.get());

	// Push the new event & ensure we target the default value
	ev.put(new SimpleTriggerEvent(MtEvent::PLAYER_REGAIN_GROUND));
	UASSERT(emt->getTestValue() == 0);
}