mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 13:23:56 -07:00
Reviewed By: elexis Tested By: elexis, Freagarach Differential Revision: https://code.wildfiregames.com/D2352 This was SVN commit r23044.
56 lines
1.7 KiB
C++
56 lines
1.7 KiB
C++
/* Copyright (C) 2019 Wildfire Games.
|
|
* This file is part of 0 A.D.
|
|
*
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 0 A.D. 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "lib/self_test.h"
|
|
|
|
#include "scriptinterface/ScriptInterface.h"
|
|
#include "simulation2/serialization/DebugSerializer.h"
|
|
#include "simulation2/serialization/SerializeTemplates.h"
|
|
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <vector>
|
|
|
|
class TestSerializeTemplates : public CxxTest::TestSuite
|
|
{
|
|
public:
|
|
void test_Debug_vector()
|
|
{
|
|
ScriptInterface script("Test", "Test", g_ScriptRuntime);
|
|
std::stringstream stream;
|
|
|
|
CDebugSerializer serialize(script, stream);
|
|
std::vector<u32> value = {
|
|
3, 0, 1, 4, 1, 5
|
|
};
|
|
SerializeVector<SerializeU32_Unbounded>()(serialize, "E", value);
|
|
TS_ASSERT_STR_EQUALS(stream.str(), "length: 6\nE: 3\nE: 0\nE: 1\nE: 4\nE: 1\nE: 5\n");
|
|
}
|
|
|
|
void test_Debug_set()
|
|
{
|
|
ScriptInterface script("Test", "Test", g_ScriptRuntime);
|
|
std::stringstream stream;
|
|
|
|
CDebugSerializer serialize(script, stream);
|
|
std::set<u32> value = {
|
|
3, 0, 1, 4, 1, 5
|
|
};
|
|
SerializeSet<SerializeU32_Unbounded>()(serialize, "E", value);
|
|
TS_ASSERT_STR_EQUALS(stream.str(), "size: 5\nE: 0\nE: 1\nE: 3\nE: 4\nE: 5\n");
|
|
}
|
|
};
|