Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(655)

Side by Side Diff: gin/shell_runner_unittest.cc

Issue 2711703002: Revert of Use TaskScheduler instead of WorkerPool in v8_platform.cc. (Closed)
Patch Set: another patchset to kick off tryjobs Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gin/shell/gin_main.cc ('k') | gin/test/file_runner.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "gin/shell_runner.h" 5 #include "gin/shell_runner.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "base/test/scoped_async_task_scheduler.h"
10 #include "base/threading/thread_task_runner_handle.h" 9 #include "base/threading/thread_task_runner_handle.h"
11 #include "gin/array_buffer.h" 10 #include "gin/array_buffer.h"
12 #include "gin/converter.h" 11 #include "gin/converter.h"
13 #include "gin/public/isolate_holder.h" 12 #include "gin/public/isolate_holder.h"
14 #include "gin/v8_initializer.h" 13 #include "gin/v8_initializer.h"
15 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
16 15
17 #ifdef V8_USE_EXTERNAL_STARTUP_DATA 16 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
18 #include "gin/public/isolate_holder.h" 17 #include "gin/public/isolate_holder.h"
19 #endif 18 #endif
20 19
21 using v8::Isolate; 20 using v8::Isolate;
22 using v8::Object; 21 using v8::Object;
23 using v8::Script; 22 using v8::Script;
24 using v8::String; 23 using v8::String;
25 24
26 namespace gin { 25 namespace gin {
27 26
28 TEST(RunnerTest, Run) { 27 TEST(RunnerTest, Run) {
29 base::MessageLoop message_loop; 28 base::MessageLoop message_loop;
30 base::test::ScopedAsyncTaskScheduler scoped_async_task_scheduler;
31 std::string source = "this.result = 'PASS';\n"; 29 std::string source = "this.result = 'PASS';\n";
32 30
33 #ifdef V8_USE_EXTERNAL_STARTUP_DATA 31 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
34 gin::V8Initializer::LoadV8Snapshot(); 32 gin::V8Initializer::LoadV8Snapshot();
35 gin::V8Initializer::LoadV8Natives(); 33 gin::V8Initializer::LoadV8Natives();
36 #endif 34 #endif
37 35
38 gin::IsolateHolder::Initialize(gin::IsolateHolder::kStrictMode, 36 gin::IsolateHolder::Initialize(gin::IsolateHolder::kStrictMode,
39 gin::IsolateHolder::kStableV8Extras, 37 gin::IsolateHolder::kStableV8Extras,
40 gin::ArrayBufferAllocator::SharedInstance()); 38 gin::ArrayBufferAllocator::SharedInstance());
41 gin::IsolateHolder instance(base::ThreadTaskRunnerHandle::Get()); 39 gin::IsolateHolder instance(base::ThreadTaskRunnerHandle::Get());
42 40
43 ShellRunnerDelegate delegate; 41 ShellRunnerDelegate delegate;
44 Isolate* isolate = instance.isolate(); 42 Isolate* isolate = instance.isolate();
45 ShellRunner runner(&delegate, isolate); 43 ShellRunner runner(&delegate, isolate);
46 Runner::Scope scope(&runner); 44 Runner::Scope scope(&runner);
47 runner.Run(source, "test_data.js"); 45 runner.Run(source, "test_data.js");
48 46
49 std::string result; 47 std::string result;
50 EXPECT_TRUE(Converter<std::string>::FromV8(isolate, 48 EXPECT_TRUE(Converter<std::string>::FromV8(isolate,
51 runner.global()->Get(StringToV8(isolate, "result")), 49 runner.global()->Get(StringToV8(isolate, "result")),
52 &result)); 50 &result));
53 EXPECT_EQ("PASS", result); 51 EXPECT_EQ("PASS", result);
54 } 52 }
55 53
56 } // namespace gin 54 } // namespace gin
OLDNEW
« no previous file with comments | « gin/shell/gin_main.cc ('k') | gin/test/file_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698