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

Unified Diff: gin/test/gtest.cc

Issue 59153005: Begin implementing V8 bindings for Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moar copyright 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
Index: gin/test/gtest.cc
diff --git a/gin/test/gtest.cc b/gin/test/gtest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..56abdd219b3a1a725fc538c1bc06410b690c6bad
--- /dev/null
+++ b/gin/test/gtest.cc
@@ -0,0 +1,75 @@
+// 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/test/gtest.h"
+
+#include "gin/arguments.h"
+#include "gin/converter.h"
+#include "gin/per_isolate_data.h"
+#include "gin/wrapper_info.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace gin {
+
+namespace {
+
+void ExpectTrue(const v8::FunctionCallbackInfo<v8::Value>& info) {
+ Arguments args(info);
+
+ bool value = false;
+ if (!args.Next(&value))
+ return args.ThrowTypeError("Expected bool.");
+
+ std::string description;
+ if (!args.Next(&description))
+ return args.ThrowTypeError("Expected description.");
+
+ EXPECT_TRUE(value) << description;
+}
+
+void ExpectFalse(const v8::FunctionCallbackInfo<v8::Value>& info) {
+ Arguments args(info);
+
+ bool value = false;
+ if (!args.Next(&value))
+ return args.ThrowTypeError("Expected bool.");
+
+ std::string description;
+ if (!args.Next(&description))
+ return args.ThrowTypeError("Expected description.");
+
+ EXPECT_FALSE(value) << description;
+}
+
+void ExpectEqual(const v8::FunctionCallbackInfo<v8::Value>& info) {
+ Arguments args(info);
+
+ std::string description;
+ if (!ConvertFromV8(info[2], &description))
+ return args.ThrowTypeError("Expected description.");
+
+ EXPECT_TRUE(info[0]->StrictEquals(info[1])) << description;
+}
+
+WrapperInfo g_gtest_wrapper_info = {};
+
+}
+
+v8::Local<v8::ObjectTemplate> GTestTemplate(v8::Isolate* isolate) {
+ PerIsolateData* data = PerIsolateData::From(isolate);
+ v8::Local<v8::ObjectTemplate> templ;
+ if (!data->GetObjectTemplate(&g_gtest_wrapper_info, &templ)) {
+ templ = v8::ObjectTemplate::New();
+ templ->Set(StringToV8(isolate, "expectTrue"),
+ v8::FunctionTemplate::New(ExpectTrue));
+ templ->Set(StringToV8(isolate, "expectFalse"),
+ v8::FunctionTemplate::New(ExpectFalse));
+ templ->Set(StringToV8(isolate, "expectEqual"),
+ v8::FunctionTemplate::New(ExpectEqual));
+ data->RegisterObjectTemplate(&g_gtest_wrapper_info, templ);
+ }
+ return templ;
+}
+
+} // namespace gin

Powered by Google App Engine
This is Rietveld 408576698