1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "gin/shell_runner.h"
7 #include "base/compiler_specific.h"
8 #include "gin/converter.h"
9 #include "gin/public/isolate_holder.h"
10 #include "testing/gtest/include/gtest/gtest.h"
19 TEST(RunnerTest
, Run
) {
20 std::string source
= "this.result = 'PASS';\n";
22 gin::IsolateHolder
instance(gin::IsolateHolder::kStrictMode
);
24 ShellRunnerDelegate delegate
;
25 Isolate
* isolate
= instance
.isolate();
26 ShellRunner
runner(&delegate
, isolate
);
27 Runner::Scope
scope(&runner
);
28 runner
.Run(source
, "test_data.js");
31 EXPECT_TRUE(Converter
<std::string
>::FromV8(isolate
,
32 runner
.global()->Get(StringToV8(isolate
, "result")),
34 EXPECT_EQ("PASS", result
);