Fix some memory leaks on packet sending.
[oweals/minetest.git] / src / test.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 #include "irrlichttypes_extrabloated.h"
22 #include "debug.h"
23 #include "map.h"
24 #include "player.h"
25 #include "main.h"
26 #include "socket.h"
27 #include "network/connection.h"
28 #include "serialization.h"
29 #include "voxel.h"
30 #include "collision.h"
31 #include <sstream>
32 #include "porting.h"
33 #include "content_mapnode.h"
34 #include "nodedef.h"
35 #include "mapsector.h"
36 #include "settings.h"
37 #include "log.h"
38 #include "util/string.h"
39 #include "filesys.h"
40 #include "voxelalgorithms.h"
41 #include "inventory.h"
42 #include "util/numeric.h"
43 #include "util/serialize.h"
44 #include "noise.h" // PseudoRandom used for random data for compression
45 #include "network/networkprotocol.h" // LATEST_PROTOCOL_VERSION
46 #include <algorithm>
47
48 /*
49         Asserts that the exception occurs
50 */
51 #define EXCEPTION_CHECK(EType, code)\
52 {\
53         bool exception_thrown = false;\
54         try{ code; }\
55         catch(EType &e) { exception_thrown = true; }\
56         UASSERT(exception_thrown);\
57 }
58
59 #define UTEST(x, fmt, ...)\
60 {\
61         if(!(x)){\
62                 dstream << "Test (" #x ") failed: " fmt << std::endl; \
63                 test_failed = true;\
64         }\
65 }
66
67 #define UASSERT(x) UTEST(x, "UASSERT")
68
69 /*
70         A few item and node definitions for those tests that need them
71 */
72
73 static content_t CONTENT_STONE;
74 static content_t CONTENT_GRASS;
75 static content_t CONTENT_TORCH;
76
77 void define_some_nodes(IWritableItemDefManager *idef, IWritableNodeDefManager *ndef)
78 {
79         ItemDefinition itemdef;
80         ContentFeatures f;
81
82         /*
83                 Stone
84         */
85         itemdef = ItemDefinition();
86         itemdef.type = ITEM_NODE;
87         itemdef.name = "default:stone";
88         itemdef.description = "Stone";
89         itemdef.groups["cracky"] = 3;
90         itemdef.inventory_image = "[inventorycube"
91                 "{default_stone.png"
92                 "{default_stone.png"
93                 "{default_stone.png";
94         f = ContentFeatures();
95         f.name = itemdef.name;
96         for(int i = 0; i < 6; i++)
97                 f.tiledef[i].name = "default_stone.png";
98         f.is_ground_content = true;
99         idef->registerItem(itemdef);
100         CONTENT_STONE = ndef->set(f.name, f);
101
102         /*
103                 Grass
104         */
105         itemdef = ItemDefinition();
106         itemdef.type = ITEM_NODE;
107         itemdef.name = "default:dirt_with_grass";
108         itemdef.description = "Dirt with grass";
109         itemdef.groups["crumbly"] = 3;
110         itemdef.inventory_image = "[inventorycube"
111                 "{default_grass.png"
112                 "{default_dirt.png&default_grass_side.png"
113                 "{default_dirt.png&default_grass_side.png";
114         f = ContentFeatures();
115         f.name = itemdef.name;
116         f.tiledef[0].name = "default_grass.png";
117         f.tiledef[1].name = "default_dirt.png";
118         for(int i = 2; i < 6; i++)
119                 f.tiledef[i].name = "default_dirt.png^default_grass_side.png";
120         f.is_ground_content = true;
121         idef->registerItem(itemdef);
122         CONTENT_GRASS = ndef->set(f.name, f);
123
124         /*
125                 Torch (minimal definition for lighting tests)
126         */
127         itemdef = ItemDefinition();
128         itemdef.type = ITEM_NODE;
129         itemdef.name = "default:torch";
130         f = ContentFeatures();
131         f.name = itemdef.name;
132         f.param_type = CPT_LIGHT;
133         f.light_propagates = true;
134         f.sunlight_propagates = true;
135         f.light_source = LIGHT_MAX-1;
136         idef->registerItem(itemdef);
137         CONTENT_TORCH = ndef->set(f.name, f);
138 }
139
140 struct TestBase
141 {
142         bool test_failed;
143         TestBase():
144                 test_failed(false)
145         {}
146 };
147
148 struct TestUtilities: public TestBase
149 {
150         void Run()
151         {
152                 /*infostream<<"wrapDegrees(100.0) = "<<wrapDegrees(100.0)<<std::endl;
153                 infostream<<"wrapDegrees(720.5) = "<<wrapDegrees(720.5)<<std::endl;
154                 infostream<<"wrapDegrees(-0.5) = "<<wrapDegrees(-0.5)<<std::endl;*/
155                 UASSERT(fabs(wrapDegrees(100.0) - 100.0) < 0.001);
156                 UASSERT(fabs(wrapDegrees(720.5) - 0.5) < 0.001);
157                 UASSERT(fabs(wrapDegrees(-0.5) - (-0.5)) < 0.001);
158                 UASSERT(fabs(wrapDegrees(-365.5) - (-5.5)) < 0.001);
159                 UASSERT(lowercase("Foo bAR") == "foo bar");
160                 UASSERT(trim("\n \t\r  Foo bAR  \r\n\t\t  ") == "Foo bAR");
161                 UASSERT(trim("\n \t\r    \r\n\t\t  ") == "");
162                 UASSERT(is_yes("YeS") == true);
163                 UASSERT(is_yes("") == false);
164                 UASSERT(is_yes("FAlse") == false);
165                 UASSERT(is_yes("-1") == true);
166                 UASSERT(is_yes("0") == false);
167                 UASSERT(is_yes("1") == true);
168                 UASSERT(is_yes("2") == true);
169                 const char *ends[] = {"abc", "c", "bc", "", NULL};
170                 UASSERT(removeStringEnd("abc", ends) == "");
171                 UASSERT(removeStringEnd("bc", ends) == "b");
172                 UASSERT(removeStringEnd("12c", ends) == "12");
173                 UASSERT(removeStringEnd("foo", ends) == "");
174                 UASSERT(urlencode("\"Aardvarks lurk, OK?\"")
175                                 == "%22Aardvarks%20lurk%2C%20OK%3F%22");
176                 UASSERT(urldecode("%22Aardvarks%20lurk%2C%20OK%3F%22")
177                                 == "\"Aardvarks lurk, OK?\"");
178                 UASSERT(padStringRight("hello", 8) == "hello   ");
179                 UASSERT(str_equal(narrow_to_wide("abc"), narrow_to_wide("abc")));
180                 UASSERT(str_equal(narrow_to_wide("ABC"), narrow_to_wide("abc"), true));
181                 UASSERT(trim("  a") == "a");
182                 UASSERT(trim("   a  ") == "a");
183                 UASSERT(trim("a   ") == "a");
184                 UASSERT(trim("") == "");
185                 UASSERT(mystoi("123", 0, 1000) == 123);
186                 UASSERT(mystoi("123", 0, 10) == 10);
187                 std::string test_str;
188                 test_str = "Hello there";
189                 str_replace(test_str, "there", "world");
190                 UASSERT(test_str == "Hello world");
191                 test_str = "ThisAisAaAtest";
192                 str_replace(test_str, 'A', ' ');
193                 UASSERT(test_str == "This is a test");
194                 UASSERT(string_allowed("hello", "abcdefghijklmno") == true);
195                 UASSERT(string_allowed("123", "abcdefghijklmno") == false);
196                 UASSERT(string_allowed_blacklist("hello", "123") == true);
197                 UASSERT(string_allowed_blacklist("hello123", "123") == false);
198                 UASSERT(wrap_rows("12345678",4) == "1234\n5678");
199                 UASSERT(is_number("123") == true);
200                 UASSERT(is_number("") == false);
201                 UASSERT(is_number("123a") == false);
202                 UASSERT(is_power_of_two(0) == false);
203                 UASSERT(is_power_of_two(1) == true);
204                 UASSERT(is_power_of_two(2) == true);
205                 UASSERT(is_power_of_two(3) == false);
206                 for (int exponent = 2; exponent <= 31; ++exponent) {
207                         UASSERT(is_power_of_two((1 << exponent) - 1) == false);
208                         UASSERT(is_power_of_two((1 << exponent)) == true);
209                         UASSERT(is_power_of_two((1 << exponent) + 1) == false);
210                 }
211                 UASSERT(is_power_of_two((u32)-1) == false);
212         }
213 };
214
215 struct TestPath: public TestBase
216 {
217         // adjusts a POSIX path to system-specific conventions
218         // -> changes '/' to DIR_DELIM
219         // -> absolute paths start with "C:\\" on windows
220         std::string p(std::string path)
221         {
222                 for(size_t i = 0; i < path.size(); ++i){
223                         if(path[i] == '/'){
224                                 path.replace(i, 1, DIR_DELIM);
225                                 i += std::string(DIR_DELIM).size() - 1; // generally a no-op
226                         }
227                 }
228
229                 #ifdef _WIN32
230                 if(path[0] == '\\')
231                         path = "C:" + path;
232                 #endif
233
234                 return path;
235         }
236
237         void Run()
238         {
239                 std::string path, result, removed;
240
241                 /*
242                         Test fs::IsDirDelimiter
243                 */
244                 UASSERT(fs::IsDirDelimiter('/') == true);
245                 UASSERT(fs::IsDirDelimiter('A') == false);
246                 UASSERT(fs::IsDirDelimiter(0) == false);
247                 #ifdef _WIN32
248                 UASSERT(fs::IsDirDelimiter('\\') == true);
249                 #else
250                 UASSERT(fs::IsDirDelimiter('\\') == false);
251                 #endif
252
253                 /*
254                         Test fs::PathStartsWith
255                 */
256                 {
257                         const int numpaths = 12;
258                         std::string paths[numpaths] = {
259                                 "",
260                                 p("/"),
261                                 p("/home/user/minetest"),
262                                 p("/home/user/minetest/bin"),
263                                 p("/home/user/.minetest"),
264                                 p("/tmp/dir/file"),
265                                 p("/tmp/file/"),
266                                 p("/tmP/file"),
267                                 p("/tmp"),
268                                 p("/tmp/dir"),
269                                 p("/home/user2/minetest/worlds"),
270                                 p("/home/user2/minetest/world"),
271                         };
272                         /*
273                                 expected fs::PathStartsWith results
274                                 0 = returns false
275                                 1 = returns true
276                                 2 = returns false on windows, true elsewhere
277                                 3 = returns true on windows, false elsewhere
278                                 4 = returns true if and only if
279                                     FILESYS_CASE_INSENSITIVE is true
280                         */
281                         int expected_results[numpaths][numpaths] = {
282                                 {1,2,0,0,0,0,0,0,0,0,0,0},
283                                 {1,1,0,0,0,0,0,0,0,0,0,0},
284                                 {1,1,1,0,0,0,0,0,0,0,0,0},
285                                 {1,1,1,1,0,0,0,0,0,0,0,0},
286                                 {1,1,0,0,1,0,0,0,0,0,0,0},
287                                 {1,1,0,0,0,1,0,0,1,1,0,0},
288                                 {1,1,0,0,0,0,1,4,1,0,0,0},
289                                 {1,1,0,0,0,0,4,1,4,0,0,0},
290                                 {1,1,0,0,0,0,0,0,1,0,0,0},
291                                 {1,1,0,0,0,0,0,0,1,1,0,0},
292                                 {1,1,0,0,0,0,0,0,0,0,1,0},
293                                 {1,1,0,0,0,0,0,0,0,0,0,1},
294                         };
295
296                         for (int i = 0; i < numpaths; i++)
297                         for (int j = 0; j < numpaths; j++){
298                                 /*verbosestream<<"testing fs::PathStartsWith(\""
299                                         <<paths[i]<<"\", \""
300                                         <<paths[j]<<"\")"<<std::endl;*/
301                                 bool starts = fs::PathStartsWith(paths[i], paths[j]);
302                                 int expected = expected_results[i][j];
303                                 if(expected == 0){
304                                         UASSERT(starts == false);
305                                 }
306                                 else if(expected == 1){
307                                         UASSERT(starts == true);
308                                 }
309                                 #ifdef _WIN32
310                                 else if(expected == 2){
311                                         UASSERT(starts == false);
312                                 }
313                                 else if(expected == 3){
314                                         UASSERT(starts == true);
315                                 }
316                                 #else
317                                 else if(expected == 2){
318                                         UASSERT(starts == true);
319                                 }
320                                 else if(expected == 3){
321                                         UASSERT(starts == false);
322                                 }
323                                 #endif
324                                 else if(expected == 4){
325                                         UASSERT(starts == (bool)FILESYS_CASE_INSENSITIVE);
326                                 }
327                         }
328                 }
329
330                 /*
331                         Test fs::RemoveLastPathComponent
332                 */
333                 UASSERT(fs::RemoveLastPathComponent("") == "");
334                 path = p("/home/user/minetest/bin/..//worlds/world1");
335                 result = fs::RemoveLastPathComponent(path, &removed, 0);
336                 UASSERT(result == path);
337                 UASSERT(removed == "");
338                 result = fs::RemoveLastPathComponent(path, &removed, 1);
339                 UASSERT(result == p("/home/user/minetest/bin/..//worlds"));
340                 UASSERT(removed == p("world1"));
341                 result = fs::RemoveLastPathComponent(path, &removed, 2);
342                 UASSERT(result == p("/home/user/minetest/bin/.."));
343                 UASSERT(removed == p("worlds/world1"));
344                 result = fs::RemoveLastPathComponent(path, &removed, 3);
345                 UASSERT(result == p("/home/user/minetest/bin"));
346                 UASSERT(removed == p("../worlds/world1"));
347                 result = fs::RemoveLastPathComponent(path, &removed, 4);
348                 UASSERT(result == p("/home/user/minetest"));
349                 UASSERT(removed == p("bin/../worlds/world1"));
350                 result = fs::RemoveLastPathComponent(path, &removed, 5);
351                 UASSERT(result == p("/home/user"));
352                 UASSERT(removed == p("minetest/bin/../worlds/world1"));
353                 result = fs::RemoveLastPathComponent(path, &removed, 6);
354                 UASSERT(result == p("/home"));
355                 UASSERT(removed == p("user/minetest/bin/../worlds/world1"));
356                 result = fs::RemoveLastPathComponent(path, &removed, 7);
357                 #ifdef _WIN32
358                 UASSERT(result == "C:");
359                 #else
360                 UASSERT(result == "");
361                 #endif
362                 UASSERT(removed == p("home/user/minetest/bin/../worlds/world1"));
363
364                 /*
365                         Now repeat the test with a trailing delimiter
366                 */
367                 path = p("/home/user/minetest/bin/..//worlds/world1/");
368                 result = fs::RemoveLastPathComponent(path, &removed, 0);
369                 UASSERT(result == path);
370                 UASSERT(removed == "");
371                 result = fs::RemoveLastPathComponent(path, &removed, 1);
372                 UASSERT(result == p("/home/user/minetest/bin/..//worlds"));
373                 UASSERT(removed == p("world1"));
374                 result = fs::RemoveLastPathComponent(path, &removed, 2);
375                 UASSERT(result == p("/home/user/minetest/bin/.."));
376                 UASSERT(removed == p("worlds/world1"));
377                 result = fs::RemoveLastPathComponent(path, &removed, 3);
378                 UASSERT(result == p("/home/user/minetest/bin"));
379                 UASSERT(removed == p("../worlds/world1"));
380                 result = fs::RemoveLastPathComponent(path, &removed, 4);
381                 UASSERT(result == p("/home/user/minetest"));
382                 UASSERT(removed == p("bin/../worlds/world1"));
383                 result = fs::RemoveLastPathComponent(path, &removed, 5);
384                 UASSERT(result == p("/home/user"));
385                 UASSERT(removed == p("minetest/bin/../worlds/world1"));
386                 result = fs::RemoveLastPathComponent(path, &removed, 6);
387                 UASSERT(result == p("/home"));
388                 UASSERT(removed == p("user/minetest/bin/../worlds/world1"));
389                 result = fs::RemoveLastPathComponent(path, &removed, 7);
390                 #ifdef _WIN32
391                 UASSERT(result == "C:");
392                 #else
393                 UASSERT(result == "");
394                 #endif
395                 UASSERT(removed == p("home/user/minetest/bin/../worlds/world1"));
396
397                 /*
398                         Test fs::RemoveRelativePathComponent
399                 */
400                 path = p("/home/user/minetest/bin");
401                 result = fs::RemoveRelativePathComponents(path);
402                 UASSERT(result == path);
403                 path = p("/home/user/minetest/bin/../worlds/world1");
404                 result = fs::RemoveRelativePathComponents(path);
405                 UASSERT(result == p("/home/user/minetest/worlds/world1"));
406                 path = p("/home/user/minetest/bin/../worlds/world1/");
407                 result = fs::RemoveRelativePathComponents(path);
408                 UASSERT(result == p("/home/user/minetest/worlds/world1"));
409                 path = p(".");
410                 result = fs::RemoveRelativePathComponents(path);
411                 UASSERT(result == "");
412                 path = p("./subdir/../..");
413                 result = fs::RemoveRelativePathComponents(path);
414                 UASSERT(result == "");
415                 path = p("/a/b/c/.././../d/../e/f/g/../h/i/j/../../../..");
416                 result = fs::RemoveRelativePathComponents(path);
417                 UASSERT(result == p("/a/e"));
418         }
419 };
420
421 #define TEST_CONFIG_TEXT_BEFORE               \
422         "leet = 1337\n"                           \
423         "leetleet = 13371337\n"                   \
424         "leetleet_neg = -13371337\n"              \
425         "floaty_thing = 1.1\n"                    \
426         "stringy_thing = asd /( Â¤%&(/\" BLÖÄRP\n" \
427         "coord = (1, 2, 4.5)\n"                   \
428         "      # this is just a comment\n"        \
429         "this is an invalid line\n"               \
430         "asdf = {\n"                              \
431         "       a   = 5\n"                            \
432         "       bb  = 2.5\n"                          \
433         "       ccc = \"\"\"\n"                       \
434         "testy\n"                                 \
435         "   testa   \n"                           \
436         "\"\"\"\n"                                \
437         "\n"                                      \
438         "}\n"                                     \
439         "blarg = \"\"\" \n"                       \
440         "some multiline text\n"                   \
441         "     with leading whitespace!\n"         \
442         "\"\"\"\n"                                \
443         "np_terrain = 5, 40, (250, 250, 250), 12341, 5, 0.7, 2.4\n" \
444         "zoop = true"
445
446 #define TEST_CONFIG_TEXT_AFTER                \
447         "leet = 1337\n"                           \
448         "leetleet = 13371337\n"                   \
449         "leetleet_neg = -13371337\n"              \
450         "floaty_thing = 1.1\n"                    \
451         "stringy_thing = asd /( Â¤%&(/\" BLÖÄRP\n" \
452         "coord = (1, 2, 4.5)\n"                   \
453         "      # this is just a comment\n"        \
454         "this is an invalid line\n"               \
455         "asdf = {\n"                              \
456         "       a   = 5\n"                            \
457         "       bb  = 2.5\n"                          \
458         "       ccc = \"\"\"\n"                       \
459         "testy\n"                                 \
460         "   testa   \n"                           \
461         "\"\"\"\n"                                \
462         "\n"                                      \
463         "}\n"                                     \
464         "blarg = \"\"\" \n"                       \
465         "some multiline text\n"                   \
466         "     with leading whitespace!\n"         \
467         "\"\"\"\n"                                \
468         "np_terrain = {\n"                        \
469         "       flags = defaults\n"                   \
470         "       lacunarity = 2.4\n"                   \
471         "       octaves = 6\n"                        \
472         "       offset = 3.5\n"                       \
473         "       persistence = 0.7\n"                  \
474         "       scale = 40\n"                         \
475         "       seed = 12341\n"                       \
476         "       spread = (250,250,250)\n"             \
477         "}\n"                                     \
478         "zoop = true\n"                           \
479         "coord2 = (1,2,3.3)\n"                    \
480         "floaty_thing_2 = 1.2\n"                  \
481         "groupy_thing = {\n"                      \
482         "       animals = cute\n"                     \
483         "       num_apples = 4\n"                     \
484         "       num_oranges = 53\n"                   \
485         "}\n"
486
487 struct TestSettings: public TestBase
488 {
489         void Run()
490         {
491                 try {
492                 Settings s;
493
494                 // Test reading of settings
495                 std::istringstream is(TEST_CONFIG_TEXT_BEFORE);
496                 s.parseConfigLines(is);
497
498                 UASSERT(s.getS32("leet") == 1337);
499                 UASSERT(s.getS16("leetleet") == 32767);
500                 UASSERT(s.getS16("leetleet_neg") == -32768);
501
502                 // Not sure if 1.1 is an exact value as a float, but doesn't matter
503                 UASSERT(fabs(s.getFloat("floaty_thing") - 1.1) < 0.001);
504                 UASSERT(s.get("stringy_thing") == "asd /( Â¤%&(/\" BLÖÄRP");
505                 UASSERT(fabs(s.getV3F("coord").X - 1.0) < 0.001);
506                 UASSERT(fabs(s.getV3F("coord").Y - 2.0) < 0.001);
507                 UASSERT(fabs(s.getV3F("coord").Z - 4.5) < 0.001);
508
509                 // Test the setting of settings too
510                 s.setFloat("floaty_thing_2", 1.2);
511                 s.setV3F("coord2", v3f(1, 2, 3.3));
512                 UASSERT(s.get("floaty_thing_2").substr(0,3) == "1.2");
513                 UASSERT(fabs(s.getFloat("floaty_thing_2") - 1.2) < 0.001);
514                 UASSERT(fabs(s.getV3F("coord2").X - 1.0) < 0.001);
515                 UASSERT(fabs(s.getV3F("coord2").Y - 2.0) < 0.001);
516                 UASSERT(fabs(s.getV3F("coord2").Z - 3.3) < 0.001);
517
518                 // Test settings groups
519                 Settings *group = s.getGroup("asdf");
520                 UASSERT(group != NULL);
521                 UASSERT(s.getGroupNoEx("zoop", group) == false);
522                 UASSERT(group->getS16("a") == 5);
523                 UASSERT(fabs(group->getFloat("bb") - 2.5) < 0.001);
524
525                 Settings *group3 = new Settings;
526                 group3->set("cat", "meow");
527                 group3->set("dog", "woof");
528
529                 Settings *group2 = new Settings;
530                 group2->setS16("num_apples", 4);
531                 group2->setS16("num_oranges", 53);
532                 group2->setGroup("animals", group3);
533                 group2->set("animals", "cute"); //destroys group 3
534                 s.setGroup("groupy_thing", group2);
535
536                 // Test set failure conditions
537                 UASSERT(s.set("Zoop = Poop\nsome_other_setting", "false") == false);
538                 UASSERT(s.set("sneaky", "\"\"\"\njabberwocky = false") == false);
539                 UASSERT(s.set("hehe", "asdfasdf\n\"\"\"\nsomething = false") == false);
540
541                 // Test multiline settings
542                 UASSERT(group->get("ccc") == "testy\n   testa   ");
543
544                 UASSERT(s.get("blarg") ==
545                         "some multiline text\n"
546                         "     with leading whitespace!");
547
548                 // Test NoiseParams
549                 UASSERT(s.getEntry("np_terrain").is_group == false);
550
551                 NoiseParams np;
552                 UASSERT(s.getNoiseParams("np_terrain", np) == true);
553                 UASSERT(fabs(np.offset - 5) < 0.001);
554                 UASSERT(fabs(np.scale - 40) < 0.001);
555                 UASSERT(fabs(np.spread.X - 250) < 0.001);
556                 UASSERT(fabs(np.spread.Y - 250) < 0.001);
557                 UASSERT(fabs(np.spread.Z - 250) < 0.001);
558                 UASSERT(np.seed == 12341);
559                 UASSERT(np.octaves == 5);
560                 UASSERT(fabs(np.persist - 0.7) < 0.001);
561
562                 np.offset  = 3.5;
563                 np.octaves = 6;
564                 s.setNoiseParams("np_terrain", np);
565
566                 UASSERT(s.getEntry("np_terrain").is_group == true);
567
568                 // Test writing
569                 std::ostringstream os(std::ios_base::binary);
570                 is.clear();
571                 is.seekg(0);
572
573                 UASSERT(s.updateConfigObject(is, os, "", 0) == true);
574                 //printf(">>>> expected config:\n%s\n", TEST_CONFIG_TEXT_AFTER);
575                 //printf(">>>> actual config:\n%s\n", os.str().c_str());
576                 UASSERT(os.str() == TEST_CONFIG_TEXT_AFTER);
577                 } catch (SettingNotFoundException &e) {
578                         UASSERT(!"Setting not found!");
579                 }
580         }
581 };
582
583 struct TestSerialization: public TestBase
584 {
585         // To be used like this:
586         //   mkstr("Some\0string\0with\0embedded\0nuls")
587         // since std::string("...") doesn't work as expected in that case.
588         template<size_t N> std::string mkstr(const char (&s)[N])
589         {
590                 return std::string(s, N - 1);
591         }
592
593         void Run()
594         {
595                 // Tests some serialization primitives
596
597                 UASSERT(serializeString("") == mkstr("\0\0"));
598                 UASSERT(serializeWideString(L"") == mkstr("\0\0"));
599                 UASSERT(serializeLongString("") == mkstr("\0\0\0\0"));
600                 UASSERT(serializeJsonString("") == "\"\"");
601
602                 std::string teststring = "Hello world!";
603                 UASSERT(serializeString(teststring) ==
604                         mkstr("\0\14Hello world!"));
605                 UASSERT(serializeWideString(narrow_to_wide(teststring)) ==
606                         mkstr("\0\14\0H\0e\0l\0l\0o\0 \0w\0o\0r\0l\0d\0!"));
607                 UASSERT(serializeLongString(teststring) ==
608                         mkstr("\0\0\0\14Hello world!"));
609                 UASSERT(serializeJsonString(teststring) ==
610                         "\"Hello world!\"");
611
612                 std::string teststring2;
613                 std::wstring teststring2_w;
614                 std::string teststring2_w_encoded;
615                 {
616                         std::ostringstream tmp_os;
617                         std::wostringstream tmp_os_w;
618                         std::ostringstream tmp_os_w_encoded;
619                         for(int i = 0; i < 256; i++)
620                         {
621                                 tmp_os<<(char)i;
622                                 tmp_os_w<<(wchar_t)i;
623                                 tmp_os_w_encoded<<(char)0<<(char)i;
624                         }
625                         teststring2 = tmp_os.str();
626                         teststring2_w = tmp_os_w.str();
627                         teststring2_w_encoded = tmp_os_w_encoded.str();
628                 }
629                 UASSERT(serializeString(teststring2) ==
630                         mkstr("\1\0") + teststring2);
631                 UASSERT(serializeWideString(teststring2_w) ==
632                         mkstr("\1\0") + teststring2_w_encoded);
633                 UASSERT(serializeLongString(teststring2) ==
634                         mkstr("\0\0\1\0") + teststring2);
635                 // MSVC fails when directly using "\\\\"
636                 std::string backslash = "\\";
637                 UASSERT(serializeJsonString(teststring2) ==
638                         mkstr("\"") +
639                         "\\u0000\\u0001\\u0002\\u0003\\u0004\\u0005\\u0006\\u0007" +
640                         "\\b\\t\\n\\u000b\\f\\r\\u000e\\u000f" +
641                         "\\u0010\\u0011\\u0012\\u0013\\u0014\\u0015\\u0016\\u0017" +
642                         "\\u0018\\u0019\\u001a\\u001b\\u001c\\u001d\\u001e\\u001f" +
643                         " !\\\"" + teststring2.substr(0x23, 0x2f-0x23) +
644                         "\\/" + teststring2.substr(0x30, 0x5c-0x30) +
645                         backslash + backslash + teststring2.substr(0x5d, 0x7f-0x5d) + "\\u007f" +
646                         "\\u0080\\u0081\\u0082\\u0083\\u0084\\u0085\\u0086\\u0087" +
647                         "\\u0088\\u0089\\u008a\\u008b\\u008c\\u008d\\u008e\\u008f" +
648                         "\\u0090\\u0091\\u0092\\u0093\\u0094\\u0095\\u0096\\u0097" +
649                         "\\u0098\\u0099\\u009a\\u009b\\u009c\\u009d\\u009e\\u009f" +
650                         "\\u00a0\\u00a1\\u00a2\\u00a3\\u00a4\\u00a5\\u00a6\\u00a7" +
651                         "\\u00a8\\u00a9\\u00aa\\u00ab\\u00ac\\u00ad\\u00ae\\u00af" +
652                         "\\u00b0\\u00b1\\u00b2\\u00b3\\u00b4\\u00b5\\u00b6\\u00b7" +
653                         "\\u00b8\\u00b9\\u00ba\\u00bb\\u00bc\\u00bd\\u00be\\u00bf" +
654                         "\\u00c0\\u00c1\\u00c2\\u00c3\\u00c4\\u00c5\\u00c6\\u00c7" +
655                         "\\u00c8\\u00c9\\u00ca\\u00cb\\u00cc\\u00cd\\u00ce\\u00cf" +
656                         "\\u00d0\\u00d1\\u00d2\\u00d3\\u00d4\\u00d5\\u00d6\\u00d7" +
657                         "\\u00d8\\u00d9\\u00da\\u00db\\u00dc\\u00dd\\u00de\\u00df" +
658                         "\\u00e0\\u00e1\\u00e2\\u00e3\\u00e4\\u00e5\\u00e6\\u00e7" +
659                         "\\u00e8\\u00e9\\u00ea\\u00eb\\u00ec\\u00ed\\u00ee\\u00ef" +
660                         "\\u00f0\\u00f1\\u00f2\\u00f3\\u00f4\\u00f5\\u00f6\\u00f7" +
661                         "\\u00f8\\u00f9\\u00fa\\u00fb\\u00fc\\u00fd\\u00fe\\u00ff" +
662                         "\"");
663
664                 {
665                         std::istringstream is(serializeString(teststring2), std::ios::binary);
666                         UASSERT(deSerializeString(is) == teststring2);
667                         UASSERT(!is.eof());
668                         is.get();
669                         UASSERT(is.eof());
670                 }
671                 {
672                         std::istringstream is(serializeWideString(teststring2_w), std::ios::binary);
673                         UASSERT(deSerializeWideString(is) == teststring2_w);
674                         UASSERT(!is.eof());
675                         is.get();
676                         UASSERT(is.eof());
677                 }
678                 {
679                         std::istringstream is(serializeLongString(teststring2), std::ios::binary);
680                         UASSERT(deSerializeLongString(is) == teststring2);
681                         UASSERT(!is.eof());
682                         is.get();
683                         UASSERT(is.eof());
684                 }
685                 {
686                         std::istringstream is(serializeJsonString(teststring2), std::ios::binary);
687                         //dstream<<serializeJsonString(deSerializeJsonString(is));
688                         UASSERT(deSerializeJsonString(is) == teststring2);
689                         UASSERT(!is.eof());
690                         is.get();
691                         UASSERT(is.eof());
692                 }
693         }
694 };
695
696 struct TestNodedefSerialization: public TestBase
697 {
698         void Run()
699         {
700                 ContentFeatures f;
701                 f.name = "default:stone";
702                 for(int i = 0; i < 6; i++)
703                         f.tiledef[i].name = "default_stone.png";
704                 f.is_ground_content = true;
705                 std::ostringstream os(std::ios::binary);
706                 f.serialize(os, LATEST_PROTOCOL_VERSION);
707                 verbosestream<<"Test ContentFeatures size: "<<os.str().size()<<std::endl;
708                 std::istringstream is(os.str(), std::ios::binary);
709                 ContentFeatures f2;
710                 f2.deSerialize(is);
711                 UASSERT(f.walkable == f2.walkable);
712                 UASSERT(f.node_box.type == f2.node_box.type);
713         }
714 };
715
716 struct TestCompress: public TestBase
717 {
718         void Run()
719         {
720                 { // ver 0
721
722                 SharedBuffer<u8> fromdata(4);
723                 fromdata[0]=1;
724                 fromdata[1]=5;
725                 fromdata[2]=5;
726                 fromdata[3]=1;
727
728                 std::ostringstream os(std::ios_base::binary);
729                 compress(fromdata, os, 0);
730
731                 std::string str_out = os.str();
732
733                 infostream<<"str_out.size()="<<str_out.size()<<std::endl;
734                 infostream<<"TestCompress: 1,5,5,1 -> ";
735                 for(u32 i=0; i<str_out.size(); i++)
736                 {
737                         infostream<<(u32)str_out[i]<<",";
738                 }
739                 infostream<<std::endl;
740
741                 UASSERT(str_out.size() == 10);
742
743                 UASSERT(str_out[0] == 0);
744                 UASSERT(str_out[1] == 0);
745                 UASSERT(str_out[2] == 0);
746                 UASSERT(str_out[3] == 4);
747                 UASSERT(str_out[4] == 0);
748                 UASSERT(str_out[5] == 1);
749                 UASSERT(str_out[6] == 1);
750                 UASSERT(str_out[7] == 5);
751                 UASSERT(str_out[8] == 0);
752                 UASSERT(str_out[9] == 1);
753
754                 std::istringstream is(str_out, std::ios_base::binary);
755                 std::ostringstream os2(std::ios_base::binary);
756
757                 decompress(is, os2, 0);
758                 std::string str_out2 = os2.str();
759
760                 infostream<<"decompress: ";
761                 for(u32 i=0; i<str_out2.size(); i++)
762                 {
763                         infostream<<(u32)str_out2[i]<<",";
764                 }
765                 infostream<<std::endl;
766
767                 UASSERT(str_out2.size() == fromdata.getSize());
768
769                 for(u32 i=0; i<str_out2.size(); i++)
770                 {
771                         UASSERT(str_out2[i] == fromdata[i]);
772                 }
773
774                 }
775
776                 { // ver HIGHEST
777
778                 SharedBuffer<u8> fromdata(4);
779                 fromdata[0]=1;
780                 fromdata[1]=5;
781                 fromdata[2]=5;
782                 fromdata[3]=1;
783
784                 std::ostringstream os(std::ios_base::binary);
785                 compress(fromdata, os, SER_FMT_VER_HIGHEST_READ);
786
787                 std::string str_out = os.str();
788
789                 infostream<<"str_out.size()="<<str_out.size()<<std::endl;
790                 infostream<<"TestCompress: 1,5,5,1 -> ";
791                 for(u32 i=0; i<str_out.size(); i++)
792                 {
793                         infostream<<(u32)str_out[i]<<",";
794                 }
795                 infostream<<std::endl;
796
797                 std::istringstream is(str_out, std::ios_base::binary);
798                 std::ostringstream os2(std::ios_base::binary);
799
800                 decompress(is, os2, SER_FMT_VER_HIGHEST_READ);
801                 std::string str_out2 = os2.str();
802
803                 infostream<<"decompress: ";
804                 for(u32 i=0; i<str_out2.size(); i++)
805                 {
806                         infostream<<(u32)str_out2[i]<<",";
807                 }
808                 infostream<<std::endl;
809
810                 UASSERT(str_out2.size() == fromdata.getSize());
811
812                 for(u32 i=0; i<str_out2.size(); i++)
813                 {
814                         UASSERT(str_out2[i] == fromdata[i]);
815                 }
816
817                 }
818
819                 // Test zlib wrapper with large amounts of data (larger than its
820                 // internal buffers)
821                 {
822                         infostream<<"Test: Testing zlib wrappers with a large amount "
823                                         <<"of pseudorandom data"<<std::endl;
824                         u32 size = 50000;
825                         infostream<<"Test: Input size of large compressZlib is "
826                                         <<size<<std::endl;
827                         std::string data_in;
828                         data_in.resize(size);
829                         PseudoRandom pseudorandom(9420);
830                         for(u32 i=0; i<size; i++)
831                                 data_in[i] = pseudorandom.range(0,255);
832                         std::ostringstream os_compressed(std::ios::binary);
833                         compressZlib(data_in, os_compressed);
834                         infostream<<"Test: Output size of large compressZlib is "
835                                         <<os_compressed.str().size()<<std::endl;
836                         std::istringstream is_compressed(os_compressed.str(), std::ios::binary);
837                         std::ostringstream os_decompressed(std::ios::binary);
838                         decompressZlib(is_compressed, os_decompressed);
839                         infostream<<"Test: Output size of large decompressZlib is "
840                                         <<os_decompressed.str().size()<<std::endl;
841                         std::string str_decompressed = os_decompressed.str();
842                         UTEST(str_decompressed.size() == data_in.size(), "Output size not"
843                                         " equal (output: %u, input: %u)",
844                                         (unsigned int)str_decompressed.size(), (unsigned int)data_in.size());
845                         for(u32 i=0; i<size && i<str_decompressed.size(); i++){
846                                 UTEST(str_decompressed[i] == data_in[i],
847                                                 "index out[%i]=%i differs from in[%i]=%i",
848                                                 i, str_decompressed[i], i, data_in[i]);
849                         }
850                 }
851         }
852 };
853
854 struct TestMapNode: public TestBase
855 {
856         void Run(INodeDefManager *nodedef)
857         {
858                 MapNode n(CONTENT_AIR);
859
860                 UASSERT(n.getContent() == CONTENT_AIR);
861                 UASSERT(n.getLight(LIGHTBANK_DAY, nodedef) == 0);
862                 UASSERT(n.getLight(LIGHTBANK_NIGHT, nodedef) == 0);
863
864                 // Transparency
865                 n.setContent(CONTENT_AIR);
866                 UASSERT(nodedef->get(n).light_propagates == true);
867                 n.setContent(LEGN(nodedef, "CONTENT_STONE"));
868                 UASSERT(nodedef->get(n).light_propagates == false);
869         }
870 };
871
872 struct TestVoxelManipulator: public TestBase
873 {
874         void Run(INodeDefManager *nodedef)
875         {
876                 /*
877                         VoxelArea
878                 */
879
880                 VoxelArea a(v3s16(-1,-1,-1), v3s16(1,1,1));
881                 UASSERT(a.index(0,0,0) == 1*3*3 + 1*3 + 1);
882                 UASSERT(a.index(-1,-1,-1) == 0);
883
884                 VoxelArea c(v3s16(-2,-2,-2), v3s16(2,2,2));
885                 // An area that is 1 bigger in x+ and z-
886                 VoxelArea d(v3s16(-2,-2,-3), v3s16(3,2,2));
887
888                 std::list<VoxelArea> aa;
889                 d.diff(c, aa);
890
891                 // Correct results
892                 std::vector<VoxelArea> results;
893                 results.push_back(VoxelArea(v3s16(-2,-2,-3),v3s16(3,2,-3)));
894                 results.push_back(VoxelArea(v3s16(3,-2,-2),v3s16(3,2,2)));
895
896                 UASSERT(aa.size() == results.size());
897
898                 infostream<<"Result of diff:"<<std::endl;
899                 for(std::list<VoxelArea>::const_iterator
900                                 i = aa.begin(); i != aa.end(); ++i)
901                 {
902                         i->print(infostream);
903                         infostream<<std::endl;
904
905                         std::vector<VoxelArea>::iterator j = std::find(results.begin(), results.end(), *i);
906                         UASSERT(j != results.end());
907                         results.erase(j);
908                 }
909
910
911                 /*
912                         VoxelManipulator
913                 */
914
915                 VoxelManipulator v;
916
917                 v.print(infostream, nodedef);
918
919                 infostream<<"*** Setting (-1,0,-1)=2 ***"<<std::endl;
920
921                 v.setNodeNoRef(v3s16(-1,0,-1), MapNode(CONTENT_GRASS));
922
923                 v.print(infostream, nodedef);
924
925                 UASSERT(v.getNode(v3s16(-1,0,-1)).getContent() == CONTENT_GRASS);
926
927                 infostream<<"*** Reading from inexistent (0,0,-1) ***"<<std::endl;
928
929                 EXCEPTION_CHECK(InvalidPositionException, v.getNode(v3s16(0,0,-1)));
930
931                 v.print(infostream, nodedef);
932
933                 infostream<<"*** Adding area ***"<<std::endl;
934
935                 v.addArea(a);
936
937                 v.print(infostream, nodedef);
938
939                 UASSERT(v.getNode(v3s16(-1,0,-1)).getContent() == CONTENT_GRASS);
940                 EXCEPTION_CHECK(InvalidPositionException, v.getNode(v3s16(0,1,1)));
941         }
942 };
943
944 struct TestVoxelAlgorithms: public TestBase
945 {
946         void Run(INodeDefManager *ndef)
947         {
948                 /*
949                         voxalgo::propagateSunlight
950                 */
951                 {
952                         VoxelManipulator v;
953                         for(u16 z=0; z<3; z++)
954                         for(u16 y=0; y<3; y++)
955                         for(u16 x=0; x<3; x++)
956                         {
957                                 v3s16 p(x,y,z);
958                                 v.setNodeNoRef(p, MapNode(CONTENT_AIR));
959                         }
960                         VoxelArea a(v3s16(0,0,0), v3s16(2,2,2));
961                         {
962                                 std::set<v3s16> light_sources;
963                                 voxalgo::setLight(v, a, 0, ndef);
964                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
965                                                 v, a, true, light_sources, ndef);
966                                 //v.print(dstream, ndef, VOXELPRINT_LIGHT_DAY);
967                                 UASSERT(res.bottom_sunlight_valid == true);
968                                 UASSERT(v.getNode(v3s16(1,1,1)).getLight(LIGHTBANK_DAY, ndef)
969                                                 == LIGHT_SUN);
970                         }
971                         v.setNodeNoRef(v3s16(0,0,0), MapNode(CONTENT_STONE));
972                         {
973                                 std::set<v3s16> light_sources;
974                                 voxalgo::setLight(v, a, 0, ndef);
975                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
976                                                 v, a, true, light_sources, ndef);
977                                 UASSERT(res.bottom_sunlight_valid == true);
978                                 UASSERT(v.getNode(v3s16(1,1,1)).getLight(LIGHTBANK_DAY, ndef)
979                                                 == LIGHT_SUN);
980                         }
981                         {
982                                 std::set<v3s16> light_sources;
983                                 voxalgo::setLight(v, a, 0, ndef);
984                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
985                                                 v, a, false, light_sources, ndef);
986                                 UASSERT(res.bottom_sunlight_valid == true);
987                                 UASSERT(v.getNode(v3s16(2,0,2)).getLight(LIGHTBANK_DAY, ndef)
988                                                 == 0);
989                         }
990                         v.setNodeNoRef(v3s16(1,3,2), MapNode(CONTENT_STONE));
991                         {
992                                 std::set<v3s16> light_sources;
993                                 voxalgo::setLight(v, a, 0, ndef);
994                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
995                                                 v, a, true, light_sources, ndef);
996                                 UASSERT(res.bottom_sunlight_valid == true);
997                                 UASSERT(v.getNode(v3s16(1,1,2)).getLight(LIGHTBANK_DAY, ndef)
998                                                 == 0);
999                         }
1000                         {
1001                                 std::set<v3s16> light_sources;
1002                                 voxalgo::setLight(v, a, 0, ndef);
1003                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
1004                                                 v, a, false, light_sources, ndef);
1005                                 UASSERT(res.bottom_sunlight_valid == true);
1006                                 UASSERT(v.getNode(v3s16(1,0,2)).getLight(LIGHTBANK_DAY, ndef)
1007                                                 == 0);
1008                         }
1009                         {
1010                                 MapNode n(CONTENT_AIR);
1011                                 n.setLight(LIGHTBANK_DAY, 10, ndef);
1012                                 v.setNodeNoRef(v3s16(1,-1,2), n);
1013                         }
1014                         {
1015                                 std::set<v3s16> light_sources;
1016                                 voxalgo::setLight(v, a, 0, ndef);
1017                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
1018                                                 v, a, true, light_sources, ndef);
1019                                 UASSERT(res.bottom_sunlight_valid == true);
1020                         }
1021                         {
1022                                 std::set<v3s16> light_sources;
1023                                 voxalgo::setLight(v, a, 0, ndef);
1024                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
1025                                                 v, a, false, light_sources, ndef);
1026                                 UASSERT(res.bottom_sunlight_valid == true);
1027                         }
1028                         {
1029                                 MapNode n(CONTENT_AIR);
1030                                 n.setLight(LIGHTBANK_DAY, LIGHT_SUN, ndef);
1031                                 v.setNodeNoRef(v3s16(1,-1,2), n);
1032                         }
1033                         {
1034                                 std::set<v3s16> light_sources;
1035                                 voxalgo::setLight(v, a, 0, ndef);
1036                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
1037                                                 v, a, true, light_sources, ndef);
1038                                 UASSERT(res.bottom_sunlight_valid == false);
1039                         }
1040                         {
1041                                 std::set<v3s16> light_sources;
1042                                 voxalgo::setLight(v, a, 0, ndef);
1043                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
1044                                                 v, a, false, light_sources, ndef);
1045                                 UASSERT(res.bottom_sunlight_valid == false);
1046                         }
1047                         v.setNodeNoRef(v3s16(1,3,2), MapNode(CONTENT_IGNORE));
1048                         {
1049                                 std::set<v3s16> light_sources;
1050                                 voxalgo::setLight(v, a, 0, ndef);
1051                                 voxalgo::SunlightPropagateResult res = voxalgo::propagateSunlight(
1052                                                 v, a, true, light_sources, ndef);
1053                                 UASSERT(res.bottom_sunlight_valid == true);
1054                         }
1055                 }
1056                 /*
1057                         voxalgo::clearLightAndCollectSources
1058                 */
1059                 {
1060                         VoxelManipulator v;
1061                         for(u16 z=0; z<3; z++)
1062                         for(u16 y=0; y<3; y++)
1063                         for(u16 x=0; x<3; x++)
1064                         {
1065                                 v3s16 p(x,y,z);
1066                                 v.setNode(p, MapNode(CONTENT_AIR));
1067                         }
1068                         VoxelArea a(v3s16(0,0,0), v3s16(2,2,2));
1069                         v.setNodeNoRef(v3s16(0,0,0), MapNode(CONTENT_STONE));
1070                         v.setNodeNoRef(v3s16(1,1,1), MapNode(CONTENT_TORCH));
1071                         {
1072                                 MapNode n(CONTENT_AIR);
1073                                 n.setLight(LIGHTBANK_DAY, 1, ndef);
1074                                 v.setNode(v3s16(1,1,2), n);
1075                         }
1076                         {
1077                                 std::set<v3s16> light_sources;
1078                                 std::map<v3s16, u8> unlight_from;
1079                                 voxalgo::clearLightAndCollectSources(v, a, LIGHTBANK_DAY,
1080                                                 ndef, light_sources, unlight_from);
1081                                 //v.print(dstream, ndef, VOXELPRINT_LIGHT_DAY);
1082                                 UASSERT(v.getNode(v3s16(0,1,1)).getLight(LIGHTBANK_DAY, ndef)
1083                                                 == 0);
1084                                 UASSERT(light_sources.find(v3s16(1,1,1)) != light_sources.end());
1085                                 UASSERT(light_sources.size() == 1);
1086                                 UASSERT(unlight_from.find(v3s16(1,1,2)) != unlight_from.end());
1087                                 UASSERT(unlight_from.size() == 1);
1088                         }
1089                 }
1090         }
1091 };
1092
1093 struct TestInventory: public TestBase
1094 {
1095         void Run(IItemDefManager *idef)
1096         {
1097                 std::string serialized_inventory =
1098                 "List 0 32\n"
1099                 "Width 3\n"
1100                 "Empty\n"
1101                 "Empty\n"
1102                 "Empty\n"
1103                 "Empty\n"
1104                 "Empty\n"
1105                 "Empty\n"
1106                 "Empty\n"
1107                 "Empty\n"
1108                 "Empty\n"
1109                 "Item default:cobble 61\n"
1110                 "Empty\n"
1111                 "Empty\n"
1112                 "Empty\n"
1113                 "Empty\n"
1114                 "Empty\n"
1115                 "Empty\n"
1116                 "Item default:dirt 71\n"
1117                 "Empty\n"
1118                 "Empty\n"
1119                 "Empty\n"
1120                 "Empty\n"
1121                 "Empty\n"
1122                 "Empty\n"
1123                 "Empty\n"
1124                 "Item default:dirt 99\n"
1125                 "Item default:cobble 38\n"
1126                 "Empty\n"
1127                 "Empty\n"
1128                 "Empty\n"
1129                 "Empty\n"
1130                 "Empty\n"
1131                 "Empty\n"
1132                 "EndInventoryList\n"
1133                 "EndInventory\n";
1134
1135                 std::string serialized_inventory_2 =
1136                 "List main 32\n"
1137                 "Width 5\n"
1138                 "Empty\n"
1139                 "Empty\n"
1140                 "Empty\n"
1141                 "Empty\n"
1142                 "Empty\n"
1143                 "Empty\n"
1144                 "Empty\n"
1145                 "Empty\n"
1146                 "Empty\n"
1147                 "Item default:cobble 61\n"
1148                 "Empty\n"
1149                 "Empty\n"
1150                 "Empty\n"
1151                 "Empty\n"
1152                 "Empty\n"
1153                 "Empty\n"
1154                 "Item default:dirt 71\n"
1155                 "Empty\n"
1156                 "Empty\n"
1157                 "Empty\n"
1158                 "Empty\n"
1159                 "Empty\n"
1160                 "Empty\n"
1161                 "Empty\n"
1162                 "Item default:dirt 99\n"
1163                 "Item default:cobble 38\n"
1164                 "Empty\n"
1165                 "Empty\n"
1166                 "Empty\n"
1167                 "Empty\n"
1168                 "Empty\n"
1169                 "Empty\n"
1170                 "EndInventoryList\n"
1171                 "EndInventory\n";
1172
1173                 Inventory inv(idef);
1174                 std::istringstream is(serialized_inventory, std::ios::binary);
1175                 inv.deSerialize(is);
1176                 UASSERT(inv.getList("0"));
1177                 UASSERT(!inv.getList("main"));
1178                 inv.getList("0")->setName("main");
1179                 UASSERT(!inv.getList("0"));
1180                 UASSERT(inv.getList("main"));
1181                 UASSERT(inv.getList("main")->getWidth() == 3);
1182                 inv.getList("main")->setWidth(5);
1183                 std::ostringstream inv_os(std::ios::binary);
1184                 inv.serialize(inv_os);
1185                 UASSERT(inv_os.str() == serialized_inventory_2);
1186         }
1187 };
1188
1189 /*
1190         NOTE: These tests became non-working then NodeContainer was removed.
1191               These should be redone, utilizing some kind of a virtual
1192                   interface for Map (IMap would be fine).
1193 */
1194 #if 0
1195 struct TestMapBlock: public TestBase
1196 {
1197         class TC : public NodeContainer
1198         {
1199         public:
1200
1201                 MapNode node;
1202                 bool position_valid;
1203                 core::list<v3s16> validity_exceptions;
1204
1205                 TC()
1206                 {
1207                         position_valid = true;
1208                 }
1209
1210                 virtual bool isValidPosition(v3s16 p)
1211                 {
1212                         //return position_valid ^ (p==position_valid_exception);
1213                         bool exception = false;
1214                         for(core::list<v3s16>::Iterator i=validity_exceptions.begin();
1215                                         i != validity_exceptions.end(); i++)
1216                         {
1217                                 if(p == *i)
1218                                 {
1219                                         exception = true;
1220                                         break;
1221                                 }
1222                         }
1223                         return exception ? !position_valid : position_valid;
1224                 }
1225
1226                 virtual MapNode getNode(v3s16 p)
1227                 {
1228                         if(isValidPosition(p) == false)
1229                                 throw InvalidPositionException();
1230                         return node;
1231                 }
1232
1233                 virtual void setNode(v3s16 p, MapNode & n)
1234                 {
1235                         if(isValidPosition(p) == false)
1236                                 throw InvalidPositionException();
1237                 };
1238
1239                 virtual u16 nodeContainerId() const
1240                 {
1241                         return 666;
1242                 }
1243         };
1244
1245         void Run()
1246         {
1247                 TC parent;
1248
1249                 MapBlock b(&parent, v3s16(1,1,1));
1250                 v3s16 relpos(MAP_BLOCKSIZE, MAP_BLOCKSIZE, MAP_BLOCKSIZE);
1251
1252                 UASSERT(b.getPosRelative() == relpos);
1253
1254                 UASSERT(b.getBox().MinEdge.X == MAP_BLOCKSIZE);
1255                 UASSERT(b.getBox().MaxEdge.X == MAP_BLOCKSIZE*2-1);
1256                 UASSERT(b.getBox().MinEdge.Y == MAP_BLOCKSIZE);
1257                 UASSERT(b.getBox().MaxEdge.Y == MAP_BLOCKSIZE*2-1);
1258                 UASSERT(b.getBox().MinEdge.Z == MAP_BLOCKSIZE);
1259                 UASSERT(b.getBox().MaxEdge.Z == MAP_BLOCKSIZE*2-1);
1260
1261                 UASSERT(b.isValidPosition(v3s16(0,0,0)) == true);
1262                 UASSERT(b.isValidPosition(v3s16(-1,0,0)) == false);
1263                 UASSERT(b.isValidPosition(v3s16(-1,-142,-2341)) == false);
1264                 UASSERT(b.isValidPosition(v3s16(-124,142,2341)) == false);
1265                 UASSERT(b.isValidPosition(v3s16(MAP_BLOCKSIZE-1,MAP_BLOCKSIZE-1,MAP_BLOCKSIZE-1)) == true);
1266                 UASSERT(b.isValidPosition(v3s16(MAP_BLOCKSIZE-1,MAP_BLOCKSIZE,MAP_BLOCKSIZE-1)) == false);
1267
1268                 /*
1269                         TODO: this method should probably be removed
1270                         if the block size isn't going to be set variable
1271                 */
1272                 /*UASSERT(b.getSizeNodes() == v3s16(MAP_BLOCKSIZE,
1273                                 MAP_BLOCKSIZE, MAP_BLOCKSIZE));*/
1274
1275                 // Changed flag should be initially set
1276                 UASSERT(b.getModified() == MOD_STATE_WRITE_NEEDED);
1277                 b.resetModified();
1278                 UASSERT(b.getModified() == MOD_STATE_CLEAN);
1279
1280                 // All nodes should have been set to
1281                 // .d=CONTENT_IGNORE and .getLight() = 0
1282                 for(u16 z=0; z<MAP_BLOCKSIZE; z++)
1283                 for(u16 y=0; y<MAP_BLOCKSIZE; y++)
1284                 for(u16 x=0; x<MAP_BLOCKSIZE; x++)
1285                 {
1286                         //UASSERT(b.getNode(v3s16(x,y,z)).getContent() == CONTENT_AIR);
1287                         UASSERT(b.getNode(v3s16(x,y,z)).getContent() == CONTENT_IGNORE);
1288                         UASSERT(b.getNode(v3s16(x,y,z)).getLight(LIGHTBANK_DAY) == 0);
1289                         UASSERT(b.getNode(v3s16(x,y,z)).getLight(LIGHTBANK_NIGHT) == 0);
1290                 }
1291
1292                 {
1293                         MapNode n(CONTENT_AIR);
1294                         for(u16 z=0; z<MAP_BLOCKSIZE; z++)
1295                         for(u16 y=0; y<MAP_BLOCKSIZE; y++)
1296                         for(u16 x=0; x<MAP_BLOCKSIZE; x++)
1297                         {
1298                                 b.setNode(v3s16(x,y,z), n);
1299                         }
1300                 }
1301
1302                 /*
1303                         Parent fetch functions
1304                 */
1305                 parent.position_valid = false;
1306                 parent.node.setContent(5);
1307
1308                 MapNode n;
1309
1310                 // Positions in the block should still be valid
1311                 UASSERT(b.isValidPositionParent(v3s16(0,0,0)) == true);
1312                 UASSERT(b.isValidPositionParent(v3s16(MAP_BLOCKSIZE-1,MAP_BLOCKSIZE-1,MAP_BLOCKSIZE-1)) == true);
1313                 n = b.getNodeParent(v3s16(0,MAP_BLOCKSIZE-1,0));
1314                 UASSERT(n.getContent() == CONTENT_AIR);
1315
1316                 // ...but outside the block they should be invalid
1317                 UASSERT(b.isValidPositionParent(v3s16(-121,2341,0)) == false);
1318                 UASSERT(b.isValidPositionParent(v3s16(-1,0,0)) == false);
1319                 UASSERT(b.isValidPositionParent(v3s16(MAP_BLOCKSIZE-1,MAP_BLOCKSIZE-1,MAP_BLOCKSIZE)) == false);
1320
1321                 {
1322                         bool exception_thrown = false;
1323                         try{
1324                                 // This should throw an exception
1325                                 MapNode n = b.getNodeParent(v3s16(0,0,-1));
1326                         }
1327                         catch(InvalidPositionException &e)
1328                         {
1329                                 exception_thrown = true;
1330                         }
1331                         UASSERT(exception_thrown);
1332                 }
1333
1334                 parent.position_valid = true;
1335                 // Now the positions outside should be valid
1336                 UASSERT(b.isValidPositionParent(v3s16(-121,2341,0)) == true);
1337                 UASSERT(b.isValidPositionParent(v3s16(-1,0,0)) == true);
1338                 UASSERT(b.isValidPositionParent(v3s16(MAP_BLOCKSIZE-1,MAP_BLOCKSIZE-1,MAP_BLOCKSIZE)) == true);
1339                 n = b.getNodeParent(v3s16(0,0,MAP_BLOCKSIZE));
1340                 UASSERT(n.getContent() == 5);
1341
1342                 /*
1343                         Set a node
1344                 */
1345                 v3s16 p(1,2,0);
1346                 n.setContent(4);
1347                 b.setNode(p, n);
1348                 UASSERT(b.getNode(p).getContent() == 4);
1349                 //TODO: Update to new system
1350                 /*UASSERT(b.getNodeTile(p) == 4);
1351                 UASSERT(b.getNodeTile(v3s16(-1,-1,0)) == 5);*/
1352
1353                 /*
1354                         propagateSunlight()
1355                 */
1356                 // Set lighting of all nodes to 0
1357                 for(u16 z=0; z<MAP_BLOCKSIZE; z++){
1358                         for(u16 y=0; y<MAP_BLOCKSIZE; y++){
1359                                 for(u16 x=0; x<MAP_BLOCKSIZE; x++){
1360                                         MapNode n = b.getNode(v3s16(x,y,z));
1361                                         n.setLight(LIGHTBANK_DAY, 0);
1362                                         n.setLight(LIGHTBANK_NIGHT, 0);
1363                                         b.setNode(v3s16(x,y,z), n);
1364                                 }
1365                         }
1366                 }
1367                 {
1368                         /*
1369                                 Check how the block handles being a lonely sky block
1370                         */
1371                         parent.position_valid = true;
1372                         b.setIsUnderground(false);
1373                         parent.node.setContent(CONTENT_AIR);
1374                         parent.node.setLight(LIGHTBANK_DAY, LIGHT_SUN);
1375                         parent.node.setLight(LIGHTBANK_NIGHT, 0);
1376                         core::map<v3s16, bool> light_sources;
1377                         // The bottom block is invalid, because we have a shadowing node
1378                         UASSERT(b.propagateSunlight(light_sources) == false);
1379                         UASSERT(b.getNode(v3s16(1,4,0)).getLight(LIGHTBANK_DAY) == LIGHT_SUN);
1380                         UASSERT(b.getNode(v3s16(1,3,0)).getLight(LIGHTBANK_DAY) == LIGHT_SUN);
1381                         UASSERT(b.getNode(v3s16(1,2,0)).getLight(LIGHTBANK_DAY) == 0);
1382                         UASSERT(b.getNode(v3s16(1,1,0)).getLight(LIGHTBANK_DAY) == 0);
1383                         UASSERT(b.getNode(v3s16(1,0,0)).getLight(LIGHTBANK_DAY) == 0);
1384                         UASSERT(b.getNode(v3s16(1,2,3)).getLight(LIGHTBANK_DAY) == LIGHT_SUN);
1385                         UASSERT(b.getFaceLight2(1000, p, v3s16(0,1,0)) == LIGHT_SUN);
1386                         UASSERT(b.getFaceLight2(1000, p, v3s16(0,-1,0)) == 0);
1387                         UASSERT(b.getFaceLight2(0, p, v3s16(0,-1,0)) == 0);
1388                         // According to MapBlock::getFaceLight,
1389                         // The face on the z+ side should have double-diminished light
1390                         //UASSERT(b.getFaceLight(p, v3s16(0,0,1)) == diminish_light(diminish_light(LIGHT_MAX)));
1391                         // The face on the z+ side should have diminished light
1392                         UASSERT(b.getFaceLight2(1000, p, v3s16(0,0,1)) == diminish_light(LIGHT_MAX));
1393                 }
1394                 /*
1395                         Check how the block handles being in between blocks with some non-sunlight
1396                         while being underground
1397                 */
1398                 {
1399                         // Make neighbours to exist and set some non-sunlight to them
1400                         parent.position_valid = true;
1401                         b.setIsUnderground(true);
1402                         parent.node.setLight(LIGHTBANK_DAY, LIGHT_MAX/2);
1403                         core::map<v3s16, bool> light_sources;
1404                         // The block below should be valid because there shouldn't be
1405                         // sunlight in there either
1406                         UASSERT(b.propagateSunlight(light_sources, true) == true);
1407                         // Should not touch nodes that are not affected (that is, all of them)
1408                         //UASSERT(b.getNode(v3s16(1,2,3)).getLight() == LIGHT_SUN);
1409                         // Should set light of non-sunlighted blocks to 0.
1410                         UASSERT(b.getNode(v3s16(1,2,3)).getLight(LIGHTBANK_DAY) == 0);
1411                 }
1412                 /*
1413                         Set up a situation where:
1414                         - There is only air in this block
1415                         - There is a valid non-sunlighted block at the bottom, and
1416                         - Invalid blocks elsewhere.
1417                         - the block is not underground.
1418
1419                         This should result in bottom block invalidity
1420                 */
1421                 {
1422                         b.setIsUnderground(false);
1423                         // Clear block
1424                         for(u16 z=0; z<MAP_BLOCKSIZE; z++){
1425                                 for(u16 y=0; y<MAP_BLOCKSIZE; y++){
1426                                         for(u16 x=0; x<MAP_BLOCKSIZE; x++){
1427                                                 MapNode n;
1428                                                 n.setContent(CONTENT_AIR);
1429                                                 n.setLight(LIGHTBANK_DAY, 0);
1430                                                 b.setNode(v3s16(x,y,z), n);
1431                                         }
1432                                 }
1433                         }
1434                         // Make neighbours invalid
1435                         parent.position_valid = false;
1436                         // Add exceptions to the top of the bottom block
1437                         for(u16 x=0; x<MAP_BLOCKSIZE; x++)
1438                         for(u16 z=0; z<MAP_BLOCKSIZE; z++)
1439                         {
1440                                 parent.validity_exceptions.push_back(v3s16(MAP_BLOCKSIZE+x, MAP_BLOCKSIZE-1, MAP_BLOCKSIZE+z));
1441                         }
1442                         // Lighting value for the valid nodes
1443                         parent.node.setLight(LIGHTBANK_DAY, LIGHT_MAX/2);
1444                         core::map<v3s16, bool> light_sources;
1445                         // Bottom block is not valid
1446                         UASSERT(b.propagateSunlight(light_sources) == false);
1447                 }
1448         }
1449 };
1450
1451 struct TestMapSector: public TestBase
1452 {
1453         class TC : public NodeContainer
1454         {
1455         public:
1456
1457                 MapNode node;
1458                 bool position_valid;
1459
1460                 TC()
1461                 {
1462                         position_valid = true;
1463                 }
1464
1465                 virtual bool isValidPosition(v3s16 p)
1466                 {
1467                         return position_valid;
1468                 }
1469
1470                 virtual MapNode getNode(v3s16 p)
1471                 {
1472                         if(position_valid == false)
1473                                 throw InvalidPositionException();
1474                         return node;
1475                 }
1476
1477                 virtual void setNode(v3s16 p, MapNode & n)
1478                 {
1479                         if(position_valid == false)
1480                                 throw InvalidPositionException();
1481                 };
1482
1483                 virtual u16 nodeContainerId() const
1484                 {
1485                         return 666;
1486                 }
1487         };
1488
1489         void Run()
1490         {
1491                 TC parent;
1492                 parent.position_valid = false;
1493
1494                 // Create one with no heightmaps
1495                 ServerMapSector sector(&parent, v2s16(1,1));
1496
1497                 UASSERT(sector.getBlockNoCreateNoEx(0) == 0);
1498                 UASSERT(sector.getBlockNoCreateNoEx(1) == 0);
1499
1500                 MapBlock * bref = sector.createBlankBlock(-2);
1501
1502                 UASSERT(sector.getBlockNoCreateNoEx(0) == 0);
1503                 UASSERT(sector.getBlockNoCreateNoEx(-2) == bref);
1504
1505                 //TODO: Check for AlreadyExistsException
1506
1507                 /*bool exception_thrown = false;
1508                 try{
1509                         sector.getBlock(0);
1510                 }
1511                 catch(InvalidPositionException &e){
1512                         exception_thrown = true;
1513                 }
1514                 UASSERT(exception_thrown);*/
1515
1516         }
1517 };
1518 #endif
1519
1520 struct TestCollision: public TestBase
1521 {
1522         void Run()
1523         {
1524                 /*
1525                         axisAlignedCollision
1526                 */
1527
1528                 for(s16 bx = -3; bx <= 3; bx++)
1529                 for(s16 by = -3; by <= 3; by++)
1530                 for(s16 bz = -3; bz <= 3; bz++)
1531                 {
1532                         // X-
1533                         {
1534                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1535                                 aabb3f m(bx-2, by, bz, bx-1, by+1, bz+1);
1536                                 v3f v(1, 0, 0);
1537                                 f32 dtime = 0;
1538                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 0);
1539                                 UASSERT(fabs(dtime - 1.000) < 0.001);
1540                         }
1541                         {
1542                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1543                                 aabb3f m(bx-2, by, bz, bx-1, by+1, bz+1);
1544                                 v3f v(-1, 0, 0);
1545                                 f32 dtime = 0;
1546                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == -1);
1547                         }
1548                         {
1549                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1550                                 aabb3f m(bx-2, by+1.5, bz, bx-1, by+2.5, bz-1);
1551                                 v3f v(1, 0, 0);
1552                                 f32 dtime;
1553                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == -1);
1554                         }
1555                         {
1556                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1557                                 aabb3f m(bx-2, by-1.5, bz, bx-1.5, by+0.5, bz+1);
1558                                 v3f v(0.5, 0.1, 0);
1559                                 f32 dtime;
1560                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 0);
1561                                 UASSERT(fabs(dtime - 3.000) < 0.001);
1562                         }
1563                         {
1564                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1565                                 aabb3f m(bx-2, by-1.5, bz, bx-1.5, by+0.5, bz+1);
1566                                 v3f v(0.5, 0.1, 0);
1567                                 f32 dtime;
1568                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 0);
1569                                 UASSERT(fabs(dtime - 3.000) < 0.001);
1570                         }
1571
1572                         // X+
1573                         {
1574                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1575                                 aabb3f m(bx+2, by, bz, bx+3, by+1, bz+1);
1576                                 v3f v(-1, 0, 0);
1577                                 f32 dtime;
1578                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 0);
1579                                 UASSERT(fabs(dtime - 1.000) < 0.001);
1580                         }
1581                         {
1582                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1583                                 aabb3f m(bx+2, by, bz, bx+3, by+1, bz+1);
1584                                 v3f v(1, 0, 0);
1585                                 f32 dtime;
1586                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == -1);
1587                         }
1588                         {
1589                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1590                                 aabb3f m(bx+2, by, bz+1.5, bx+3, by+1, bz+3.5);
1591                                 v3f v(-1, 0, 0);
1592                                 f32 dtime;
1593                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == -1);
1594                         }
1595                         {
1596                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1597                                 aabb3f m(bx+2, by-1.5, bz, bx+2.5, by-0.5, bz+1);
1598                                 v3f v(-0.5, 0.2, 0);
1599                                 f32 dtime;
1600                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 1);  // Y, not X!
1601                                 UASSERT(fabs(dtime - 2.500) < 0.001);
1602                         }
1603                         {
1604                                 aabb3f s(bx, by, bz, bx+1, by+1, bz+1);
1605                                 aabb3f m(bx+2, by-1.5, bz, bx+2.5, by-0.5, bz+1);
1606                                 v3f v(-0.5, 0.3, 0);
1607                                 f32 dtime;
1608                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 0);
1609                                 UASSERT(fabs(dtime - 2.000) < 0.001);
1610                         }
1611
1612                         // TODO: Y-, Y+, Z-, Z+
1613
1614                         // misc
1615                         {
1616                                 aabb3f s(bx, by, bz, bx+2, by+2, bz+2);
1617                                 aabb3f m(bx+2.3, by+2.29, bz+2.29, bx+4.2, by+4.2, bz+4.2);
1618                                 v3f v(-1./3, -1./3, -1./3);
1619                                 f32 dtime;
1620                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 0);
1621                                 UASSERT(fabs(dtime - 0.9) < 0.001);
1622                         }
1623                         {
1624                                 aabb3f s(bx, by, bz, bx+2, by+2, bz+2);
1625                                 aabb3f m(bx+2.29, by+2.3, bz+2.29, bx+4.2, by+4.2, bz+4.2);
1626                                 v3f v(-1./3, -1./3, -1./3);
1627                                 f32 dtime;
1628                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 1);
1629                                 UASSERT(fabs(dtime - 0.9) < 0.001);
1630                         }
1631                         {
1632                                 aabb3f s(bx, by, bz, bx+2, by+2, bz+2);
1633                                 aabb3f m(bx+2.29, by+2.29, bz+2.3, bx+4.2, by+4.2, bz+4.2);
1634                                 v3f v(-1./3, -1./3, -1./3);
1635                                 f32 dtime;
1636                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 2);
1637                                 UASSERT(fabs(dtime - 0.9) < 0.001);
1638                         }
1639                         {
1640                                 aabb3f s(bx, by, bz, bx+2, by+2, bz+2);
1641                                 aabb3f m(bx-4.2, by-4.2, bz-4.2, bx-2.3, by-2.29, bz-2.29);
1642                                 v3f v(1./7, 1./7, 1./7);
1643                                 f32 dtime;
1644                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 0);
1645                                 UASSERT(fabs(dtime - 16.1) < 0.001);
1646                         }
1647                         {
1648                                 aabb3f s(bx, by, bz, bx+2, by+2, bz+2);
1649                                 aabb3f m(bx-4.2, by-4.2, bz-4.2, bx-2.29, by-2.3, bz-2.29);
1650                                 v3f v(1./7, 1./7, 1./7);
1651                                 f32 dtime;
1652                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 1);
1653                                 UASSERT(fabs(dtime - 16.1) < 0.001);
1654                         }
1655                         {
1656                                 aabb3f s(bx, by, bz, bx+2, by+2, bz+2);
1657                                 aabb3f m(bx-4.2, by-4.2, bz-4.2, bx-2.29, by-2.29, bz-2.3);
1658                                 v3f v(1./7, 1./7, 1./7);
1659                                 f32 dtime;
1660                                 UASSERT(axisAlignedCollision(s, m, v, 0, dtime) == 2);
1661                                 UASSERT(fabs(dtime - 16.1) < 0.001);
1662                         }
1663                 }
1664         }
1665 };
1666
1667 struct TestSocket: public TestBase
1668 {
1669         void Run()
1670         {
1671                 const int port = 30003;
1672                 Address address(0, 0, 0, 0, port);
1673                 Address bind_addr(0, 0, 0, 0, port);
1674                 Address address6((IPv6AddressBytes*) NULL, port);
1675
1676                 /*
1677                  * Try to use the bind_address for servers with no localhost address
1678                  * For example: FreeBSD jails
1679                  */
1680                 std::string bind_str = g_settings->get("bind_address");
1681                 try {
1682                         bind_addr.Resolve(bind_str.c_str());
1683
1684                         if (!bind_addr.isIPv6()) {
1685                                 address = bind_addr;
1686                         }
1687                 } catch (ResolveError &e) {
1688                 }
1689
1690                 // IPv6 socket test
1691                 if (g_settings->getBool("enable_ipv6")) {
1692                         UDPSocket socket6;
1693
1694                         if (!socket6.init(true, true)) {
1695                                 /* Note: Failing to create an IPv6 socket is not technically an
1696                                    error because the OS may not support IPv6 or it may
1697                                    have been disabled. IPv6 is not /required/ by
1698                                    minetest and therefore this should not cause the unit
1699                                    test to fail
1700                                 */
1701                                 dstream << "WARNING: IPv6 socket creation failed (unit test)"
1702                                         << std::endl;
1703                         } else {
1704                                 const char sendbuffer[] = "hello world!";
1705                                 IPv6AddressBytes bytes;
1706                                 bytes.bytes[15] = 1;
1707
1708                                 socket6.Bind(address6);
1709
1710                                 try {
1711                                         socket6.Send(Address(&bytes, port), sendbuffer, sizeof(sendbuffer));
1712
1713                                         sleep_ms(50);
1714
1715                                         char rcvbuffer[256] = { 0 };
1716                                         Address sender;
1717
1718                                         for(;;) {
1719                                                 if (socket6.Receive(sender, rcvbuffer, sizeof(rcvbuffer )) < 0)
1720                                                         break;
1721                                         }
1722                                         //FIXME: This fails on some systems
1723                                         UASSERT(strncmp(sendbuffer, rcvbuffer, sizeof(sendbuffer)) == 0);
1724                                         UASSERT(memcmp(sender.getAddress6().sin6_addr.s6_addr,
1725                                                         Address(&bytes, 0).getAddress6().sin6_addr.s6_addr, 16) == 0);
1726                                 }
1727                                 catch (SendFailedException &e) {
1728                                         errorstream << "IPv6 support enabled but not available!"
1729                                                     << std::endl;
1730                                 }
1731                         }
1732                 }
1733
1734                 // IPv4 socket test
1735                 {
1736                         UDPSocket socket(false);
1737                         socket.Bind(address);
1738
1739                         const char sendbuffer[] = "hello world!";
1740                         /*
1741                          * If there is a bind address, use it.
1742                          * It's useful in container environments
1743                          */
1744                         if (address != Address(0, 0, 0, 0, port)) {
1745                                 socket.Send(address, sendbuffer, sizeof(sendbuffer));
1746                         }
1747                         else
1748                                 socket.Send(Address(127, 0, 0 ,1, port), sendbuffer, sizeof(sendbuffer));
1749
1750                         sleep_ms(50);
1751
1752                         char rcvbuffer[256] = { 0 };
1753                         Address sender;
1754                         for(;;) {
1755                                 if (socket.Receive(sender, rcvbuffer, sizeof(rcvbuffer)) < 0)
1756                                         break;
1757                         }
1758                         //FIXME: This fails on some systems
1759                         UASSERT(strncmp(sendbuffer, rcvbuffer, sizeof(sendbuffer)) == 0);
1760
1761                         if (address != Address(0, 0, 0, 0, port)) {
1762                                 UASSERT(sender.getAddress().sin_addr.s_addr ==
1763                                                 address.getAddress().sin_addr.s_addr);
1764                         }
1765                         else {
1766                                 UASSERT(sender.getAddress().sin_addr.s_addr ==
1767                                                 Address(127, 0, 0, 1, 0).getAddress().sin_addr.s_addr);
1768                         }
1769                 }
1770         }
1771 };
1772
1773 struct TestConnection: public TestBase
1774 {
1775         void TestHelpers()
1776         {
1777                 /*
1778                         Test helper functions
1779                 */
1780
1781                 // Some constants for testing
1782                 u32 proto_id = 0x12345678;
1783                 u16 peer_id = 123;
1784                 u8 channel = 2;
1785                 SharedBuffer<u8> data1(1);
1786                 data1[0] = 100;
1787                 Address a(127,0,0,1, 10);
1788                 const u16 seqnum = 34352;
1789
1790                 con::BufferedPacket p1 = con::makePacket(a, data1,
1791                                 proto_id, peer_id, channel);
1792                 /*
1793                         We should now have a packet with this data:
1794                         Header:
1795                                 [0] u32 protocol_id
1796                                 [4] u16 sender_peer_id
1797                                 [6] u8 channel
1798                         Data:
1799                                 [7] u8 data1[0]
1800                 */
1801                 UASSERT(readU32(&p1.data[0]) == proto_id);
1802                 UASSERT(readU16(&p1.data[4]) == peer_id);
1803                 UASSERT(readU8(&p1.data[6]) == channel);
1804                 UASSERT(readU8(&p1.data[7]) == data1[0]);
1805
1806                 //infostream<<"initial data1[0]="<<((u32)data1[0]&0xff)<<std::endl;
1807
1808                 SharedBuffer<u8> p2 = con::makeReliablePacket(data1, seqnum);
1809
1810                 /*infostream<<"p2.getSize()="<<p2.getSize()<<", data1.getSize()="
1811                                 <<data1.getSize()<<std::endl;
1812                 infostream<<"readU8(&p2[3])="<<readU8(&p2[3])
1813                                 <<" p2[3]="<<((u32)p2[3]&0xff)<<std::endl;
1814                 infostream<<"data1[0]="<<((u32)data1[0]&0xff)<<std::endl;*/
1815
1816                 UASSERT(p2.getSize() == 3 + data1.getSize());
1817                 UASSERT(readU8(&p2[0]) == TYPE_RELIABLE);
1818                 UASSERT(readU16(&p2[1]) == seqnum);
1819                 UASSERT(readU8(&p2[3]) == data1[0]);
1820         }
1821
1822         struct Handler : public con::PeerHandler
1823         {
1824                 Handler(const char *a_name)
1825                 {
1826                         count = 0;
1827                         last_id = 0;
1828                         name = a_name;
1829                 }
1830                 void peerAdded(con::Peer *peer)
1831                 {
1832                         infostream<<"Handler("<<name<<")::peerAdded(): "
1833                                         "id="<<peer->id<<std::endl;
1834                         last_id = peer->id;
1835                         count++;
1836                 }
1837                 void deletingPeer(con::Peer *peer, bool timeout)
1838                 {
1839                         infostream<<"Handler("<<name<<")::deletingPeer(): "
1840                                         "id="<<peer->id
1841                                         <<", timeout="<<timeout<<std::endl;
1842                         last_id = peer->id;
1843                         count--;
1844                 }
1845
1846                 s32 count;
1847                 u16 last_id;
1848                 const char *name;
1849         };
1850
1851         void Run()
1852         {
1853                 DSTACK("TestConnection::Run");
1854
1855                 TestHelpers();
1856
1857                 /*
1858                         Test some real connections
1859
1860                         NOTE: This mostly tests the legacy interface.
1861                 */
1862
1863                 u32 proto_id = 0xad26846a;
1864
1865                 Handler hand_server("server");
1866                 Handler hand_client("client");
1867
1868                 Address address(0, 0, 0, 0, 30001);
1869                 Address bind_addr(0, 0, 0, 0, 30001);
1870                 /*
1871                  * Try to use the bind_address for servers with no localhost address
1872                  * For example: FreeBSD jails
1873                  */
1874                 std::string bind_str = g_settings->get("bind_address");
1875                 try {
1876                         bind_addr.Resolve(bind_str.c_str());
1877
1878                         if (!bind_addr.isIPv6()) {
1879                                 address = bind_addr;
1880                         }
1881                 } catch (ResolveError &e) {
1882                 }
1883
1884                 infostream<<"** Creating server Connection"<<std::endl;
1885                 con::Connection server(proto_id, 512, 5.0, false, &hand_server);
1886                 server.Serve(address);
1887
1888                 infostream<<"** Creating client Connection"<<std::endl;
1889                 con::Connection client(proto_id, 512, 5.0, false, &hand_client);
1890
1891                 UASSERT(hand_server.count == 0);
1892                 UASSERT(hand_client.count == 0);
1893
1894                 sleep_ms(50);
1895
1896                 Address server_address(127, 0, 0, 1, 30001);
1897                 if (address != Address(0, 0, 0, 0, 30001)) {
1898                         server_address = bind_addr;
1899                 }
1900
1901                 infostream<<"** running client.Connect()"<<std::endl;
1902                 client.Connect(server_address);
1903
1904                 sleep_ms(50);
1905
1906                 // Client should not have added client yet
1907                 UASSERT(hand_client.count == 0);
1908
1909                 try
1910                 {
1911                         u16 peer_id;
1912                         SharedBuffer<u8> data;
1913                         infostream<<"** running client.Receive()"<<std::endl;
1914                         u32 size = client.Receive(peer_id, data);
1915                         infostream<<"** Client received: peer_id="<<peer_id
1916                                         <<", size="<<size
1917                                         <<std::endl;
1918                 }
1919                 catch(con::NoIncomingDataException &e)
1920                 {
1921                 }
1922
1923                 // Client should have added server now
1924                 UASSERT(hand_client.count == 1);
1925                 UASSERT(hand_client.last_id == 1);
1926                 // Server should not have added client yet
1927                 UASSERT(hand_server.count == 0);
1928
1929                 sleep_ms(100);
1930
1931                 try
1932                 {
1933                         u16 peer_id;
1934                         SharedBuffer<u8> data;
1935                         infostream<<"** running server.Receive()"<<std::endl;
1936                         u32 size = server.Receive(peer_id, data);
1937                         infostream<<"** Server received: peer_id="<<peer_id
1938                                         <<", size="<<size
1939                                         <<std::endl;
1940                 }
1941                 catch(con::NoIncomingDataException &e)
1942                 {
1943                         // No actual data received, but the client has
1944                         // probably been connected
1945                 }
1946
1947                 // Client should be the same
1948                 UASSERT(hand_client.count == 1);
1949                 UASSERT(hand_client.last_id == 1);
1950                 // Server should have the client
1951                 UASSERT(hand_server.count == 1);
1952                 UASSERT(hand_server.last_id == 2);
1953
1954                 //sleep_ms(50);
1955
1956                 while(client.Connected() == false)
1957                 {
1958                         try
1959                         {
1960                                 u16 peer_id;
1961                                 SharedBuffer<u8> data;
1962                                 infostream<<"** running client.Receive()"<<std::endl;
1963                                 u32 size = client.Receive(peer_id, data);
1964                                 infostream<<"** Client received: peer_id="<<peer_id
1965                                                 <<", size="<<size
1966                                                 <<std::endl;
1967                         }
1968                         catch(con::NoIncomingDataException &e)
1969                         {
1970                         }
1971                         sleep_ms(50);
1972                 }
1973
1974                 sleep_ms(50);
1975
1976                 try
1977                 {
1978                         u16 peer_id;
1979                         SharedBuffer<u8> data;
1980                         infostream<<"** running server.Receive()"<<std::endl;
1981                         u32 size = server.Receive(peer_id, data);
1982                         infostream<<"** Server received: peer_id="<<peer_id
1983                                         <<", size="<<size
1984                                         <<std::endl;
1985                 }
1986                 catch(con::NoIncomingDataException &e)
1987                 {
1988                 }
1989
1990                 /*
1991                         Simple send-receive test
1992                 */
1993                 {
1994                         NetworkPacket* pkt = new NetworkPacket((u8*) "Hello World !", 14, 0);
1995
1996                         SharedBuffer<u8> sentdata = pkt->oldForgePacket();
1997
1998                         infostream<<"** running client.Send()"<<std::endl;
1999                         client.Send(PEER_ID_SERVER, 0, pkt, true);
2000
2001                         sleep_ms(50);
2002
2003                         u16 peer_id;
2004                         SharedBuffer<u8> recvdata;
2005                         infostream << "** running server.Receive()" << std::endl;
2006                         u32 size = server.Receive(peer_id, recvdata);
2007                         infostream << "** Server received: peer_id=" << peer_id
2008                                         << ", size=" << size
2009                                         << ", data=" << (const char*)pkt->getU8Ptr(0)
2010                                         << std::endl;
2011
2012                         UASSERT(memcmp(*sentdata, *recvdata, recvdata.getSize()) == 0);
2013
2014                         delete pkt;
2015                 }
2016
2017                 u16 peer_id_client = 2;
2018                 /*
2019                         Send a large packet
2020                 */
2021                 {
2022                         const int datasize = 30000;
2023                         NetworkPacket* pkt = new NetworkPacket(0, datasize);
2024                         for(u16 i=0; i<datasize; i++){
2025                                 *pkt << (u8) i/4;
2026                         }
2027
2028                         infostream<<"Sending data (size="<<datasize<<"):";
2029                         for(int i=0; i<datasize && i<20; i++){
2030                                 if(i%2==0) infostream<<" ";
2031                                 char buf[10];
2032                                 snprintf(buf, 10, "%.2X", ((int)((const char*)pkt->getU8Ptr(0))[i])&0xff);
2033                                 infostream<<buf;
2034                         }
2035                         if(datasize>20)
2036                                 infostream<<"...";
2037                         infostream<<std::endl;
2038
2039                         SharedBuffer<u8> sentdata = pkt->oldForgePacket();
2040
2041                         server.Send(peer_id_client, 0, pkt, true);
2042
2043                         //sleep_ms(3000);
2044
2045                         SharedBuffer<u8> recvdata;
2046                         infostream<<"** running client.Receive()"<<std::endl;
2047                         u16 peer_id = 132;
2048                         u16 size = 0;
2049                         bool received = false;
2050                         u32 timems0 = porting::getTimeMs();
2051                         for(;;){
2052                                 if(porting::getTimeMs() - timems0 > 5000 || received)
2053                                         break;
2054                                 try{
2055                                         size = client.Receive(peer_id, recvdata);
2056                                         received = true;
2057                                 }catch(con::NoIncomingDataException &e){
2058                                 }
2059                                 sleep_ms(10);
2060                         }
2061                         UASSERT(received);
2062                         infostream<<"** Client received: peer_id="<<peer_id
2063                                         <<", size="<<size
2064                                         <<std::endl;
2065
2066                         infostream<<"Received data (size="<<size<<"): ";
2067                         for(int i=0; i<size && i<20; i++){
2068                                 if(i%2==0) infostream<<" ";
2069                                 char buf[10];
2070                                 snprintf(buf, 10, "%.2X", ((int)(recvdata[i]))&0xff);
2071                                 infostream<<buf;
2072                         }
2073                         if(size>20)
2074                                 infostream<<"...";
2075                         infostream<<std::endl;
2076
2077                         UASSERT(memcmp(*sentdata, *recvdata, recvdata.getSize()) == 0);
2078                         UASSERT(peer_id == PEER_ID_SERVER);
2079
2080                         delete pkt;
2081                 }
2082
2083                 // Check peer handlers
2084                 UASSERT(hand_client.count == 1);
2085                 UASSERT(hand_client.last_id == 1);
2086                 UASSERT(hand_server.count == 1);
2087                 UASSERT(hand_server.last_id == 2);
2088
2089                 //assert(0);
2090         }
2091 };
2092
2093 #define TEST(X) do {\
2094         X x;\
2095         infostream<<"Running " #X <<std::endl;\
2096         x.Run();\
2097         tests_run++;\
2098         tests_failed += x.test_failed ? 1 : 0;\
2099 } while (0)
2100
2101 #define TESTPARAMS(X, ...) do {\
2102         X x;\
2103         infostream<<"Running " #X <<std::endl;\
2104         x.Run(__VA_ARGS__);\
2105         tests_run++;\
2106         tests_failed += x.test_failed ? 1 : 0;\
2107 } while (0)
2108
2109 void run_tests()
2110 {
2111         DSTACK(__FUNCTION_NAME);
2112
2113         int tests_run = 0;
2114         int tests_failed = 0;
2115
2116         // Create item and node definitions
2117         IWritableItemDefManager *idef = createItemDefManager();
2118         IWritableNodeDefManager *ndef = createNodeDefManager();
2119         define_some_nodes(idef, ndef);
2120
2121         log_set_lev_silence(LMT_ERROR, true);
2122
2123         infostream<<"run_tests() started"<<std::endl;
2124         TEST(TestUtilities);
2125         TEST(TestPath);
2126         TEST(TestSettings);
2127         TEST(TestCompress);
2128         TEST(TestSerialization);
2129         TEST(TestNodedefSerialization);
2130         TESTPARAMS(TestMapNode, ndef);
2131         TESTPARAMS(TestVoxelManipulator, ndef);
2132         TESTPARAMS(TestVoxelAlgorithms, ndef);
2133         TESTPARAMS(TestInventory, idef);
2134         //TEST(TestMapBlock);
2135         //TEST(TestMapSector);
2136         TEST(TestCollision);
2137         if(INTERNET_SIMULATOR == false){
2138                 TEST(TestSocket);
2139                 dout_con << "=== BEGIN RUNNING UNIT TESTS FOR CONNECTION ===" << std::endl;
2140                 TEST(TestConnection);
2141                 dout_con << "=== END RUNNING UNIT TESTS FOR CONNECTION ===" << std::endl;
2142         }
2143
2144         log_set_lev_silence(LMT_ERROR, false);
2145
2146         delete idef;
2147         delete ndef;
2148
2149         if(tests_failed == 0) {
2150                 actionstream << "run_tests(): " << tests_failed << " / " << tests_run << " tests failed." << std::endl;
2151                 actionstream << "run_tests() passed." << std::endl;
2152                 return;
2153         } else {
2154                 errorstream << "run_tests(): " << tests_failed << " / " << tests_run << " tests failed." << std::endl;
2155                 errorstream << "run_tests() aborting." << std::endl;
2156                 abort();
2157         }
2158 }
2159