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

Side by Side Diff: fxjs/fxjs_v8_embeddertest.cpp

Issue 2637503002: Tidy FXJS_V8, backfill tests. (Closed)
Patch Set: rebase Created 3 years, 11 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 | « fxjs/fxjs_v8.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 PDFium Authors. All rights reserved. 1 // Copyright 2015 PDFium 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 "testing/gtest/include/gtest/gtest.h" 5 #include "testing/gtest/include/gtest/gtest.h"
6 #include "testing/js_embedder_test.h" 6 #include "testing/js_embedder_test.h"
7 7
8 namespace { 8 namespace {
9 9
10 const double kExpected0 = 6.0; 10 const double kExpected0 = 6.0;
(...skipping 10 matching lines...) Expand all
21 public: 21 public:
22 void ExecuteInCurrentContext(const CFX_WideString& script) { 22 void ExecuteInCurrentContext(const CFX_WideString& script) {
23 FXJSErr error; 23 FXJSErr error;
24 int sts = engine()->Execute(script, &error); 24 int sts = engine()->Execute(script, &error);
25 EXPECT_EQ(0, sts); 25 EXPECT_EQ(0, sts);
26 } 26 }
27 void CheckAssignmentInCurrentContext(double expected) { 27 void CheckAssignmentInCurrentContext(double expected) {
28 v8::Local<v8::Object> This = engine()->GetThisObj(); 28 v8::Local<v8::Object> This = engine()->GetThisObj();
29 v8::Local<v8::Value> fred = engine()->GetObjectProperty(This, L"fred"); 29 v8::Local<v8::Value> fred = engine()->GetObjectProperty(This, L"fred");
30 EXPECT_TRUE(fred->IsNumber()); 30 EXPECT_TRUE(fred->IsNumber());
31 EXPECT_EQ(expected, engine()->ToNumber(fred)); 31 EXPECT_EQ(expected, engine()->ToDouble(fred));
32 } 32 }
33 }; 33 };
34 34
35 TEST_F(FXJSV8EmbedderTest, Getters) { 35 TEST_F(FXJSV8EmbedderTest, Getters) {
36 v8::Isolate::Scope isolate_scope(isolate()); 36 v8::Isolate::Scope isolate_scope(isolate());
37 v8::HandleScope handle_scope(isolate()); 37 v8::HandleScope handle_scope(isolate());
38 v8::Context::Scope context_scope(GetV8Context()); 38 v8::Context::Scope context_scope(GetV8Context());
39 39
40 ExecuteInCurrentContext(CFX_WideString(kScript1)); 40 ExecuteInCurrentContext(CFX_WideString(kScript1));
41 CheckAssignmentInCurrentContext(kExpected1); 41 CheckAssignmentInCurrentContext(kExpected1);
(...skipping 25 matching lines...) Expand all
67 { 67 {
68 v8::Local<v8::Context> context2 = engine2.NewLocalContext(); 68 v8::Local<v8::Context> context2 = engine2.NewLocalContext();
69 v8::Context::Scope context_scope2(context2); 69 v8::Context::Scope context_scope2(context2);
70 ExecuteInCurrentContext(CFX_WideString(kScript2)); 70 ExecuteInCurrentContext(CFX_WideString(kScript2));
71 CheckAssignmentInCurrentContext(kExpected2); 71 CheckAssignmentInCurrentContext(kExpected2);
72 } 72 }
73 73
74 engine2.ReleaseEngine(); 74 engine2.ReleaseEngine();
75 CheckAssignmentInCurrentContext(kExpected0); 75 CheckAssignmentInCurrentContext(kExpected0);
76 } 76 }
77
78 TEST_F(FXJSV8EmbedderTest, EmptyLocal) {
79 v8::Isolate::Scope isolate_scope(isolate());
80 v8::HandleScope handle_scope(isolate());
81 v8::Context::Scope context_scope(GetV8Context());
82
83 v8::Local<v8::Value> empty;
84 EXPECT_FALSE(engine()->ToBoolean(empty));
85 EXPECT_EQ(0, engine()->ToInt32(empty));
86 EXPECT_EQ(0.0, engine()->ToDouble(empty));
87 EXPECT_EQ(L"", engine()->ToWideString(empty));
88 EXPECT_TRUE(engine()->ToObject(empty).IsEmpty());
89 EXPECT_TRUE(engine()->ToArray(empty).IsEmpty());
90 }
91
92 TEST_F(FXJSV8EmbedderTest, NewNull) {
93 v8::Isolate::Scope isolate_scope(isolate());
94 v8::HandleScope handle_scope(isolate());
95 v8::Context::Scope context_scope(GetV8Context());
96
97 auto nullz = engine()->NewNull();
98 EXPECT_FALSE(engine()->ToBoolean(nullz));
99 EXPECT_EQ(0, engine()->ToInt32(nullz));
100 EXPECT_EQ(0.0, engine()->ToDouble(nullz));
101 EXPECT_EQ(L"", engine()->ToWideString(nullz));
102 EXPECT_TRUE(engine()->ToObject(nullz).IsEmpty());
103 EXPECT_TRUE(engine()->ToArray(nullz).IsEmpty());
104 }
105
106 TEST_F(FXJSV8EmbedderTest, NewBoolean) {
107 v8::Isolate::Scope isolate_scope(isolate());
108 v8::HandleScope handle_scope(isolate());
109 v8::Context::Scope context_scope(GetV8Context());
110
111 auto boolz = engine()->NewBoolean(true);
112 EXPECT_TRUE(engine()->ToBoolean(boolz));
113 EXPECT_EQ(1, engine()->ToInt32(boolz));
114 EXPECT_EQ(1.0, engine()->ToDouble(boolz));
115 EXPECT_EQ(L"true", engine()->ToWideString(boolz));
116 EXPECT_TRUE(engine()->ToObject(boolz).IsEmpty());
117 EXPECT_TRUE(engine()->ToArray(boolz).IsEmpty());
118 }
119
120 TEST_F(FXJSV8EmbedderTest, NewNumber) {
121 v8::Isolate::Scope isolate_scope(isolate());
122 v8::HandleScope handle_scope(isolate());
123 v8::Context::Scope context_scope(GetV8Context());
124
125 auto num = engine()->NewNumber(42.1);
126 EXPECT_TRUE(engine()->ToBoolean(num));
127 EXPECT_EQ(42, engine()->ToInt32(num));
128 EXPECT_EQ(42.1, engine()->ToDouble(num));
129 EXPECT_EQ(L"42.1", engine()->ToWideString(num));
130 EXPECT_TRUE(engine()->ToObject(num).IsEmpty());
131 EXPECT_TRUE(engine()->ToArray(num).IsEmpty());
132 }
133
134 TEST_F(FXJSV8EmbedderTest, NewString) {
135 v8::Isolate::Scope isolate_scope(isolate());
136 v8::HandleScope handle_scope(isolate());
137 v8::Context::Scope context_scope(GetV8Context());
138
139 auto str = engine()->NewString(L"123");
140 EXPECT_TRUE(engine()->ToBoolean(str));
141 EXPECT_EQ(123, engine()->ToInt32(str));
142 EXPECT_EQ(123, engine()->ToDouble(str));
143 EXPECT_EQ(L"123", engine()->ToWideString(str));
144 EXPECT_TRUE(engine()->ToObject(str).IsEmpty());
145 EXPECT_TRUE(engine()->ToArray(str).IsEmpty());
146 }
147
148 TEST_F(FXJSV8EmbedderTest, NewDate) {
149 v8::Isolate::Scope isolate_scope(isolate());
150 v8::HandleScope handle_scope(isolate());
151 v8::Context::Scope context_scope(GetV8Context());
152
153 auto date = engine()->NewDate(1111111111);
154 EXPECT_TRUE(engine()->ToBoolean(date));
155 EXPECT_EQ(1111111111, engine()->ToInt32(date));
156 EXPECT_EQ(1111111111.0, engine()->ToDouble(date));
157 EXPECT_NE(L"", engine()->ToWideString(date)); // exact format varies.
158 EXPECT_TRUE(engine()->ToObject(date)->IsObject());
159 EXPECT_TRUE(engine()->ToArray(date).IsEmpty());
160 }
161
162 TEST_F(FXJSV8EmbedderTest, NewArray) {
163 v8::Isolate::Scope isolate_scope(isolate());
164 v8::HandleScope handle_scope(isolate());
165 v8::Context::Scope context_scope(GetV8Context());
166
167 auto array = engine()->NewArray();
168 EXPECT_EQ(0u, engine()->GetArrayLength(array));
169 EXPECT_FALSE(engine()->GetArrayElement(array, 2).IsEmpty());
170 EXPECT_TRUE(engine()->GetArrayElement(array, 2)->IsUndefined());
171 EXPECT_EQ(0u, engine()->GetArrayLength(array));
172
173 engine()->PutArrayElement(array, 3, engine()->NewNumber(12));
174 EXPECT_FALSE(engine()->GetArrayElement(array, 2).IsEmpty());
175 EXPECT_TRUE(engine()->GetArrayElement(array, 2)->IsUndefined());
176 EXPECT_FALSE(engine()->GetArrayElement(array, 3).IsEmpty());
177 EXPECT_TRUE(engine()->GetArrayElement(array, 3)->IsNumber());
178 EXPECT_EQ(4u, engine()->GetArrayLength(array));
179
180 EXPECT_TRUE(engine()->ToBoolean(array));
181 EXPECT_EQ(0, engine()->ToInt32(array));
182 double d = engine()->ToDouble(array);
183 EXPECT_NE(d, d); // i.e. NaN.
184 EXPECT_EQ(L",,,12", engine()->ToWideString(array));
185 EXPECT_TRUE(engine()->ToObject(array)->IsObject());
186 EXPECT_TRUE(engine()->ToArray(array)->IsArray());
187 }
188
189 TEST_F(FXJSV8EmbedderTest, NewObject) {
190 v8::Isolate::Scope isolate_scope(isolate());
191 v8::HandleScope handle_scope(isolate());
192 v8::Context::Scope context_scope(GetV8Context());
193
194 auto object = engine()->NewFxDynamicObj(-1);
195 EXPECT_EQ(0u, engine()->GetObjectPropertyNames(object).size());
196 EXPECT_FALSE(engine()->GetObjectProperty(object, L"clams").IsEmpty());
197 EXPECT_TRUE(engine()->GetObjectProperty(object, L"clams")->IsUndefined());
198 EXPECT_EQ(0u, engine()->GetObjectPropertyNames(object).size());
199
200 engine()->PutObjectProperty(object, L"clams", engine()->NewNumber(12));
201 EXPECT_FALSE(engine()->GetObjectProperty(object, L"clams").IsEmpty());
202 EXPECT_TRUE(engine()->GetObjectProperty(object, L"clams")->IsNumber());
203 EXPECT_EQ(1u, engine()->GetObjectPropertyNames(object).size());
204 EXPECT_EQ(L"clams", engine()->GetObjectPropertyNames(object)[0]);
205
206 EXPECT_TRUE(engine()->ToBoolean(object));
207 EXPECT_EQ(0, engine()->ToInt32(object));
208 double d = engine()->ToDouble(object);
209 EXPECT_NE(d, d); // i.e. NaN.
210 EXPECT_EQ(L"[object Object]", engine()->ToWideString(object));
211 EXPECT_TRUE(engine()->ToObject(object)->IsObject());
212 EXPECT_TRUE(engine()->ToArray(object).IsEmpty());
213 }
OLDNEW
« no previous file with comments | « fxjs/fxjs_v8.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698