Split ObjDef/ObjDefManager out to objdef.cpp
[oweals/minetest.git] / src / unittest / test_objdef.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2014 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "test.h"
21
22 #include "exceptions.h"
23 #include "objdef.h"
24
25 class TestObjDef : public TestBase {
26 public:
27         TestObjDef() { TestManager::registerTestModule(this); }
28         const char *getName() { return "TestObjDef"; }
29
30         void runTests(IGameDef *gamedef);
31
32         void testHandles();
33         void testAddGetSetClear();
34 };
35
36 static TestObjDef g_test_instance;
37
38 void TestObjDef::runTests(IGameDef *gamedef)
39 {
40         TEST(testHandles);
41         TEST(testAddGetSetClear);
42 }
43
44 ////////////////////////////////////////////////////////////////////////////////
45
46 void TestObjDef::testHandles()
47 {
48         u32 uid = 0;
49         u32 index = 0;
50         ObjDefType type = OBJDEF_GENERIC;
51
52         ObjDefHandle handle = ObjDefManager::createHandle(9530, OBJDEF_ORE, 47);
53
54         UASSERTEQ(ObjDefHandle, 0xAF507B55, handle);
55
56         UASSERT(ObjDefManager::decodeHandle(handle, &index, &type, &uid));
57
58         UASSERTEQ(u32, 9530, index);
59         UASSERTEQ(u32, 47, uid);
60         UASSERTEQ(ObjDefHandle, OBJDEF_ORE, type);
61 }
62
63
64 void TestObjDef::testAddGetSetClear()
65 {
66         ObjDefManager testmgr(NULL, OBJDEF_GENERIC);
67         ObjDefHandle hObj0, hObj1, hObj2, hObj3;
68         ObjDef *obj0, *obj1, *obj2, *obj3;
69
70         UASSERTEQ(ObjDefType, testmgr.getType(), OBJDEF_GENERIC);
71
72         obj0 = new ObjDef;
73         obj0->name = "foobar";
74         hObj0 = testmgr.add(obj0);
75         UASSERT(hObj0 != OBJDEF_INVALID_HANDLE);
76         UASSERTEQ(u32, obj0->index, 0);
77
78         obj1 = new ObjDef;
79         obj1->name = "FooBaz";
80         hObj1 = testmgr.add(obj1);
81         UASSERT(hObj1 != OBJDEF_INVALID_HANDLE);
82         UASSERTEQ(u32, obj1->index, 1);
83
84         obj2 = new ObjDef;
85         obj2->name = "asdf";
86         hObj2 = testmgr.add(obj2);
87         UASSERT(hObj2 != OBJDEF_INVALID_HANDLE);
88         UASSERTEQ(u32, obj2->index, 2);
89
90         obj3 = new ObjDef;
91         obj3->name = "foobaz";
92         hObj3 = testmgr.add(obj3);
93         UASSERT(hObj3 == OBJDEF_INVALID_HANDLE);
94
95         UASSERTEQ(size_t, testmgr.getNumObjects(), 3);
96
97         UASSERT(testmgr.get(hObj0) == obj0);
98         UASSERT(testmgr.getByName("FOOBAZ") == obj1);
99
100         UASSERT(testmgr.set(hObj0, obj3) == obj0);
101         UASSERT(testmgr.get(hObj0) == obj3);
102         delete obj0;
103
104         testmgr.clear();
105         UASSERTEQ(size_t, testmgr.getNumObjects(), 0);
106 }