3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
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.
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.
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.
26 #include "network/networkprotocol.h"
28 class TestNodeDef : public TestBase
31 TestNodeDef() { TestManager::registerTestModule(this); }
32 const char *getName() { return "TestNodeDef"; }
34 void runTests(IGameDef *gamedef);
36 void testContentFeaturesSerialization();
39 static TestNodeDef g_test_instance;
41 void TestNodeDef::runTests(IGameDef *gamedef)
43 TEST(testContentFeaturesSerialization);
46 ////////////////////////////////////////////////////////////////////////////////
48 void TestNodeDef::testContentFeaturesSerialization()
52 f.name = "default:stone";
53 for (TileDef &tiledef : f.tiledef)
54 tiledef.name = "default_stone.png";
55 f.is_ground_content = true;
57 std::ostringstream os(std::ios::binary);
58 f.serialize(os, LATEST_PROTOCOL_VERSION);
59 // verbosestream<<"Test ContentFeatures size: "<<os.str().size()<<std::endl;
61 std::istringstream is(os.str(), std::ios::binary);
65 UASSERT(f.walkable == f2.walkable);
66 UASSERT(f.node_box.type == f2.node_box.type);