Translated using Weblate (Italian)
[oweals/minetest.git] / src / unittest / test_nodedef.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 <sstream>
23
24 #include "gamedef.h"
25 #include "nodedef.h"
26 #include "network/networkprotocol.h"
27
28 class TestNodeDef : public TestBase
29 {
30 public:
31         TestNodeDef() { TestManager::registerTestModule(this); }
32         const char *getName() { return "TestNodeDef"; }
33
34         void runTests(IGameDef *gamedef);
35
36         void testContentFeaturesSerialization();
37 };
38
39 static TestNodeDef g_test_instance;
40
41 void TestNodeDef::runTests(IGameDef *gamedef)
42 {
43         TEST(testContentFeaturesSerialization);
44 }
45
46 ////////////////////////////////////////////////////////////////////////////////
47
48 void TestNodeDef::testContentFeaturesSerialization()
49 {
50         ContentFeatures f;
51
52         f.name = "default:stone";
53         for (TileDef &tiledef : f.tiledef)
54                 tiledef.name = "default_stone.png";
55         f.is_ground_content = true;
56
57         std::ostringstream os(std::ios::binary);
58         f.serialize(os, LATEST_PROTOCOL_VERSION);
59         // verbosestream<<"Test ContentFeatures size: "<<os.str().size()<<std::endl;
60
61         std::istringstream is(os.str(), std::ios::binary);
62         ContentFeatures f2;
63         f2.deSerialize(is);
64
65         UASSERT(f.walkable == f2.walkable);
66         UASSERT(f.node_box.type == f2.node_box.type);
67 }