Tests: Add ObjDef unittests
[oweals/minetest.git] / src / unittest / test_profiler.cpp
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
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 "profiler.h"
23
24 class TestProfiler : public TestBase {
25 public:
26         TestProfiler() { TestManager::registerTestModule(this); }
27         const char *getName() { return "TestProfiler"; }
28
29         void runTests(IGameDef *gamedef);
30
31         void testProfilerAverage();
32 };
33
34 static TestProfiler g_test_instance;
35
36 void TestProfiler::runTests(IGameDef *gamedef)
37 {
38         TEST(testProfilerAverage);
39 }
40
41 ////////////////////////////////////////////////////////////////////////////////
42
43 void TestProfiler::testProfilerAverage()
44 {
45         Profiler p;
46
47         p.avg("Test1", 1.f);
48         UASSERT(p.getValue("Test1") == 1.f);
49
50         p.avg("Test1", 2.f);
51         UASSERT(p.getValue("Test1") == 1.5f);
52
53         p.avg("Test1", 3.f);
54         UASSERT(p.getValue("Test1") == 2.f);
55
56         p.avg("Test1", 486.f);
57         UASSERT(p.getValue("Test1") == 123.f);
58
59         p.avg("Test1", 8);
60         UASSERT(p.getValue("Test1") == 100.f);
61
62         p.avg("Test1", 700);
63         UASSERT(p.getValue("Test1") == 200.f);
64
65         p.avg("Test1", 10000);
66         UASSERT(p.getValue("Test1") == 1600.f);
67
68         p.avg("Test2", 123.56);
69         p.avg("Test2", 123.58);
70
71         UASSERT(p.getValue("Test2") == 123.57f);
72 }