Pass clang-format on various cpp/header files (#5559)
[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 {
27 public:
28         TestObjDef() { TestManager::registerTestModule(this); }
29         const char *getName() { return "TestObjDef"; }
30
31         void runTests(IGameDef *gamedef);
32
33         void testHandles();
34         void testAddGetSetClear();
35 };
36
37 static TestObjDef g_test_instance;
38
39 void TestObjDef::runTests(IGameDef *gamedef)
40 {
41         TEST(testHandles);
42         TEST(testAddGetSetClear);
43 }
44
45 ////////////////////////////////////////////////////////////////////////////////
46
47 void TestObjDef::testHandles()
48 {
49         u32 uid = 0;
50         u32 index = 0;
51         ObjDefType type = OBJDEF_GENERIC;
52
53         ObjDefHandle handle = ObjDefManager::createHandle(9530, OBJDEF_ORE, 47);
54
55         UASSERTEQ(ObjDefHandle, 0xAF507B55, handle);
56
57         UASSERT(ObjDefManager::decodeHandle(handle, &index, &type, &uid));
58
59         UASSERTEQ(u32, 9530, index);
60         UASSERTEQ(u32, 47, uid);
61         UASSERTEQ(ObjDefHandle, OBJDEF_ORE, type);
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 }