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

Unified Diff: gin/runner_unittest.cc

Issue 67763002: Add gin, a lightweight bindings system for V8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Aaron's comments Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gin/runner.cc ('k') | gin/test/run_all_unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/runner_unittest.cc
diff --git a/gin/runner_unittest.cc b/gin/runner_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4b3c0fc48aff19504282bce0f767c429154d9ae4
--- /dev/null
+++ b/gin/runner_unittest.cc
@@ -0,0 +1,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
« no previous file with comments | « gin/runner.cc ('k') | gin/test/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698