blob: 962bd9a4f7e438bb8c333a71f056d07305d2db46 (
plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// 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/public/wrapper_info.h"
#include "testing/gtest/include/gtest/gtest.h"
using v8::ObjectTemplate;
namespace gin {
namespace {
void ExpectTrue(const v8::FunctionCallbackInfo<v8::Value>& info) {
Arguments args(info);
bool value = false;
std::string description;
if (!args.GetNext(&value) ||
!args.GetNext(&description)) {
return args.ThrowError();
}
EXPECT_TRUE(value) << description;
}
void ExpectFalse(const v8::FunctionCallbackInfo<v8::Value>& info) {
Arguments args(info);
bool value = false;
std::string description;
if (!args.GetNext(&value) ||
!args.GetNext(&description)) {
return args.ThrowError();
}
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_wrapper_info = { kEmbedderNativeGin };
} // namespace
const char GTest::kModuleName[] = "gtest";
v8::Local<ObjectTemplate> GTest::GetTemplate(v8::Isolate* isolate) {
PerIsolateData* data = PerIsolateData::From(isolate);
v8::Local<ObjectTemplate> templ = data->GetObjectTemplate(&g_wrapper_info);
if (templ.IsEmpty()) {
templ = ObjectTemplate::New();
templ->Set(StringToSymbol(isolate, "expectTrue"),
v8::FunctionTemplate::New(ExpectTrue));
templ->Set(StringToSymbol(isolate, "expectFalse"),
v8::FunctionTemplate::New(ExpectFalse));
templ->Set(StringToSymbol(isolate, "expectEqual"),
v8::FunctionTemplate::New(ExpectEqual));
data->SetObjectTemplate(&g_wrapper_info, templ);
}
return templ;
}
} // namespace gin
|