forked from google-deepmind/lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlua_unit_test.cc
58 lines (49 loc) · 1.88 KB
/
lua_unit_test.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright (C) 2016 Google Inc.
//
// This program 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.
//
// 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 General Public License for more details.
//
// You should have received a copy of the GNU 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 "gtest/gtest.h"
#include "deepmind/support/test_srcdir.h"
#include "public/dmlab.h"
namespace deepmind {
namespace lab {
namespace {
const char* test_script = nullptr;
TEST(LuaUnitTest, RunsTest) {
const std::string runfiles_path = TestSrcDir();
const std::string test_script_path = runfiles_path + "/" + test_script;
DeepMindLabLaunchParams params = {};
params.runfiles_path = runfiles_path.c_str();
params.renderer = DeepMindLabRenderer_Software;
EnvCApi env_c_api;
void* context;
ASSERT_EQ(dmlab_connect(¶ms, &env_c_api, &context), 0);
ASSERT_EQ(env_c_api.setting(context, "levelName", test_script_path.c_str()),
0);
ASSERT_EQ(env_c_api.setting(context, "datasetPath", "dummy"), 0);
if (env_c_api.init(context) != 0) {
ADD_FAILURE() << env_c_api.error_message(context);
}
env_c_api.release_context(context);
}
} // namespace
} // namespace lab
} // namespace deepmind
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
deepmind::lab::test_script = argv[1];
return RUN_ALL_TESTS();
}