aboutsummaryrefslogtreecommitdiff
path: root/games/devtest/mods/testnodes/textures/testnodes_line_curved.png
blob: ab9f8e7208af8577ebd5df34f7a1d2749b5a95d9 (plain)
ofshex dumpascii
0000 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 10 00 00 00 10 08 06 00 00 00 1f f3 ff .PNG........IHDR................
0020 61 00 00 00 42 49 44 41 54 78 01 63 f8 8f 04 f2 f3 f3 49 c6 28 06 30 90 08 f0 1a 70 ea d4 29 64 a...BIDATx.c......I.(.0....p..)d
0040 8c d3 00 08 01 05 83 ce 00 42 98 a0 01 ff 89 c0 23 ca 00 1c b1 30 44 0d 00 25 7f 10 a6 a2 01 d8 .........B......#....0D..%......
0060 30 ba 01 b8 d4 01 00 c4 d9 a4 ca b3 e0 3f 01 00 00 00 00 49 45 4e 44 ae 42 60 82 0............?.....IEND.B`.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
/*
Minetest
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#include "test.h"

#include <sstream>

#include "gamedef.h"
#include "inventory.h"

class TestInventory : public TestBase {
public:
	TestInventory() { TestManager::registerTestModule(this); }
	const char *getName() { return "TestInventory"; }

	void runTests(IGameDef *gamedef);

	void testSerializeDeserialize(IItemDefManager *idef);

	static const char *serialized_inventory_in;
	static const char *serialized_inventory_out;
	static const char *serialized_inventory_inc;
};

static TestInventory g_test_instance;

void TestInventory::runTests(IGameDef *gamedef)
{
	TEST(testSerializeDeserialize, gamedef->getItemDefManager());
}

////////////////////////////////////////////////////////////////////////////////

void TestInventory::testSerializeDeserialize(IItemDefManager *idef)
{
	Inventory inv(idef);
	std::istringstream is(serialized_inventory_in, std::ios::binary);

	inv.deSerialize(is);
	UASSERT(inv.getList("0"));
	UASSERT(!inv.getList("main"));

	inv.getList("0")->setName("main");
	UASSERT(!inv.getList("0"));
	UASSERT(inv.getList("main"));
	UASSERTEQ(u32, inv.getList("main")->getWidth(), 3);

	inv.getList("main")->setWidth(5);
	std::ostringstream inv_os(std::ios::binary);
	inv.serialize(inv_os, false);
	UASSERTEQ(std::string, inv_os.str(), serialized_inventory_out);

	inv.setModified(false);
	inv_os.str("");
	inv_os.clear();
	inv.serialize(inv_os, true);
	UASSERTEQ(std::string, inv_os.str(), serialized_inventory_inc);

	ItemStack leftover = inv.getList("main")->takeItem(7, 99 - 12);
	ItemStack wanted = ItemStack("default:dirt", 99 - 12, 0, idef);
	UASSERT(leftover == wanted);
	leftover = inv.getList("main")->getItem(7);
	wanted.count = 12;
	UASSERT(leftover == wanted);
}

const char *TestInventory::serialized_inventory_in =
	"List 0 10\n"
	"Width 3\n"
	"Empty\n"
	"Empty\n"
	"Item default:cobble 61\n"
	"Empty\n"
	"Empty\n"
	"Item default:dirt 71\n"
	"Empty\n"
	"Item default:dirt 99\n"
	"Item default:cobble 38\n"
	"Empty\n"
	"EndInventoryList\n"
	"List abc 1\n"
	"Item default:stick 3\n"
	"Width 0\n"
	"EndInventoryList\n"
	"EndInventory\n";

const char *TestInventory::serialized_inventory_out =
	"List main 10\n"
	"Width 5\n"
	"Empty\n"
	"Empty\n"
	"Item default:cobble 61\n"
	"Empty\n"
	"Empty\n"
	"Item default:dirt 71\n"
	"Empty\n"
	"Item default:dirt 99\n"
	"Item default:cobble 38\n"
	"Empty\n"
	"EndInventoryList\n"
	"List abc 1\n"
	"Width 0\n"
	"Item default:stick 3\n"
	"EndInventoryList\n"
	"EndInventory\n";

const char *TestInventory::serialized_inventory_inc =
	"KeepList main\n"
	"KeepList abc\n"
	"EndInventory\n";