2015-07-29 16:44:12 -07:00
|
|
|
/* Copyright (C) 2015 Wildfire Games.
|
2010-01-09 11:20:14 -08:00
|
|
|
* 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 "simulation2/system/ComponentTest.h"
|
|
|
|
|
|
|
|
|
|
#include "ps/Filesystem.h"
|
|
|
|
|
|
|
|
|
|
class TestComponentScripts : public CxxTest::TestSuite
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
void setUp()
|
|
|
|
|
{
|
|
|
|
|
g_VFS = CreateVfs(20 * MiB);
|
2014-08-25 09:38:54 -07:00
|
|
|
g_VFS->Mount(L"", DataDir()/"mods"/"mod", VFS_MOUNT_MUST_EXIST);
|
|
|
|
|
g_VFS->Mount(L"", DataDir()/"mods"/"public", VFS_MOUNT_MUST_EXIST, 1); // ignore directory-not-found errors
|
2010-01-09 11:20:14 -08:00
|
|
|
CXeromyces::Startup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void tearDown()
|
|
|
|
|
{
|
|
|
|
|
CXeromyces::Terminate();
|
|
|
|
|
g_VFS.reset();
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-23 06:36:20 -07:00
|
|
|
static void load_script(ScriptInterface& scriptInterface, const VfsPath& pathname)
|
2010-01-09 11:20:14 -08:00
|
|
|
{
|
|
|
|
|
CVFSFile file;
|
2011-03-23 06:36:20 -07:00
|
|
|
TS_ASSERT_EQUALS(file.Load(g_VFS, pathname), PSRETURN_OK);
|
2012-05-04 14:48:46 -07:00
|
|
|
CStr content = file.DecodeUTF8(); // assume it's UTF-8
|
|
|
|
|
TSM_ASSERT(L"Running script "+pathname.string(), scriptInterface.LoadScript(pathname, content));
|
2010-01-09 11:20:14 -08:00
|
|
|
}
|
|
|
|
|
|
2014-01-04 02:14:53 -08:00
|
|
|
static void Script_LoadComponentScript(ScriptInterface::CxPrivate* pCxPrivate, VfsPath pathname)
|
2010-01-09 11:20:14 -08:00
|
|
|
{
|
2014-01-04 02:14:53 -08:00
|
|
|
CComponentManager* componentManager = static_cast<CComponentManager*> (pCxPrivate->pCBData);
|
2011-03-23 06:36:20 -07:00
|
|
|
TS_ASSERT(componentManager->LoadScript(VfsPath(L"simulation/components") / pathname));
|
2010-01-09 11:20:14 -08:00
|
|
|
}
|
|
|
|
|
|
2014-01-04 02:14:53 -08:00
|
|
|
static void Script_LoadHelperScript(ScriptInterface::CxPrivate* pCxPrivate, VfsPath pathname)
|
2010-11-22 12:12:04 -08:00
|
|
|
{
|
2014-01-04 02:14:53 -08:00
|
|
|
CComponentManager* componentManager = static_cast<CComponentManager*> (pCxPrivate->pCBData);
|
2011-03-23 06:36:20 -07:00
|
|
|
TS_ASSERT(componentManager->LoadScript(VfsPath(L"simulation/helpers") / pathname));
|
2010-11-22 12:12:04 -08:00
|
|
|
}
|
|
|
|
|
|
2010-01-09 11:20:14 -08:00
|
|
|
void test_scripts()
|
|
|
|
|
{
|
2011-02-25 08:30:55 -08:00
|
|
|
if (!VfsFileExists(L"simulation/components/tests/setup.js"))
|
2010-05-07 08:59:23 -07:00
|
|
|
{
|
2015-02-13 17:45:13 -08:00
|
|
|
debug_printf("WARNING: Skipping component scripts tests (can't find binaries/data/mods/public/simulation/components/tests/setup.js)\n");
|
2010-05-07 08:59:23 -07:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-09 11:20:14 -08:00
|
|
|
VfsPaths paths;
|
2011-05-25 03:39:13 -07:00
|
|
|
TS_ASSERT_OK(vfs::GetPathnames(g_VFS, L"simulation/components/tests/", L"test_*.js", paths));
|
2015-07-29 16:44:12 -07:00
|
|
|
for (const VfsPath& path : paths)
|
2010-01-09 11:20:14 -08:00
|
|
|
{
|
|
|
|
|
CSimContext context;
|
2014-04-25 14:19:51 -07:00
|
|
|
CComponentManager componentManager(context, g_ScriptRuntime, true);
|
2010-01-09 11:20:14 -08:00
|
|
|
|
|
|
|
|
ScriptTestSetup(componentManager.GetScriptInterface());
|
|
|
|
|
|
2011-03-21 10:53:13 -07:00
|
|
|
componentManager.GetScriptInterface().RegisterFunction<void, VfsPath, Script_LoadComponentScript> ("LoadComponentScript");
|
|
|
|
|
componentManager.GetScriptInterface().RegisterFunction<void, VfsPath, Script_LoadHelperScript> ("LoadHelperScript");
|
2010-01-09 11:20:14 -08:00
|
|
|
|
|
|
|
|
componentManager.LoadComponentTypes();
|
|
|
|
|
|
|
|
|
|
load_script(componentManager.GetScriptInterface(), L"simulation/components/tests/setup.js");
|
2015-07-29 16:44:12 -07:00
|
|
|
load_script(componentManager.GetScriptInterface(), path);
|
2010-01-09 11:20:14 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|