forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunner_unittest.cc
55 lines (45 loc) · 1.34 KB
/
runner_unittest.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
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gin/runner.h"
#include "base/compiler_specific.h"
#include "gin/converter.h"
#include "testing/gtest/include/gtest/gtest.h"
using v8::Handle;
using v8::Isolate;
using v8::Object;
using v8::Script;
using v8::String;
namespace gin {
namespace {
class TestRunnerDelegate : public RunnerDelegate {
public:
virtual Handle<Object> CreateRootObject(Runner* runner) OVERRIDE {
Isolate* isolate = runner->isolate();
Handle<Object> root = Object::New();
root->Set(StringToV8(isolate, "foo"), StringToV8(isolate, "bar"));
return root;
}
virtual ~TestRunnerDelegate() {}
};
}
TEST(RunnerTest, Run) {
std::string source =
"function main(root) {\n"
" if (root.foo)\n"
" this.result = 'PASS';\n"
" else\n"
" this.result = 'FAIL';\n"
"}\n";
TestRunnerDelegate delegate;
Isolate* isolate = Isolate::GetCurrent();
Runner runner(&delegate, isolate);
Runner::Scope scope(&runner);
runner.Run(Script::New(StringToV8(isolate, source)));
std::string result;
EXPECT_TRUE(Converter<std::string>::FromV8(
runner.global()->Get(StringToV8(isolate, "result")),
&result));
EXPECT_EQ("PASS", result);
}
} // namespace gin