| OLD | NEW |
| 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 "bindings/core/v8/V8Binding.h" | 5 #include "bindings/core/v8/V8Binding.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/ExceptionState.h" | 7 #include "bindings/core/v8/ExceptionState.h" |
| 8 #include "bindings/core/v8/ToV8.h" | 8 #include "bindings/core/v8/ToV8.h" |
| 9 #include "bindings/core/v8/V8BindingForTesting.h" | 9 #include "bindings/core/v8/V8BindingForTesting.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "wtf/Vector.h" | 11 #include "wtf/Vector.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 namespace { | 15 namespace { |
| 16 | 16 |
| 17 template<typename T> v8::Local<v8::Value> toV8(V8TestingScope* scope, T value) | 17 template<typename T> v8::Local<v8::Value> toV8(V8TestingScope* scope, T value) |
| 18 { | 18 { |
| 19 return blink::toV8(value, scope->context()->Global(), scope->isolate()); | 19 return blink::toV8(value, scope->context()->Global(), scope->isolate()); |
| 20 } | 20 } |
| 21 | 21 |
| 22 TEST(V8BindingTest, toImplSequence) |
| 23 { |
| 24 V8TestingScope scope; |
| 25 { |
| 26 v8::Local<v8::Array> v8StringArray = v8::Array::New(scope.isolate(), 2); |
| 27 v8StringArray->Set(scope.context(), toV8(&scope, 0), toV8(&scope, "Hello
, World!")).ToChecked(); |
| 28 v8StringArray->Set(scope.context(), toV8(&scope, 1), toV8(&scope, "Hi, M
om!")).ToChecked(); |
| 29 |
| 30 NonThrowableExceptionState exceptionState; |
| 31 Vector<String> stringVector = toImplSequence<Vector<String>>(scope.isola
te(), v8StringArray, exceptionState); |
| 32 EXPECT_EQ(2U, stringVector.size()); |
| 33 EXPECT_EQ("Hello, World!", stringVector[0]); |
| 34 EXPECT_EQ("Hi, Mom!", stringVector[1]); |
| 35 } |
| 36 } |
| 37 |
| 22 TEST(V8BindingTest, toImplArray) | 38 TEST(V8BindingTest, toImplArray) |
| 23 { | 39 { |
| 24 V8TestingScope scope; | 40 V8TestingScope scope; |
| 25 { | 41 { |
| 26 v8::Local<v8::Array> v8StringArray = v8::Array::New(scope.isolate(), 2); | 42 v8::Local<v8::Array> v8StringArray = v8::Array::New(scope.isolate(), 2); |
| 27 EXPECT_TRUE(v8CallBoolean(v8StringArray->Set(scope.context(), toV8(&scop
e, 0), toV8(&scope, "Hello, World!")))); | 43 EXPECT_TRUE(v8CallBoolean(v8StringArray->Set(scope.context(), toV8(&scop
e, 0), toV8(&scope, "Hello, World!")))); |
| 28 EXPECT_TRUE(v8CallBoolean(v8StringArray->Set(scope.context(), toV8(&scop
e, 1), toV8(&scope, "Hi, Mom!")))); | 44 EXPECT_TRUE(v8CallBoolean(v8StringArray->Set(scope.context(), toV8(&scop
e, 1), toV8(&scope, "Hi, Mom!")))); |
| 29 | 45 |
| 30 NonThrowableExceptionState exceptionState; | 46 NonThrowableExceptionState exceptionState; |
| 31 Vector<String> stringVector = toImplArray<Vector<String>>(v8StringArray,
0, scope.isolate(), exceptionState); | 47 Vector<String> stringVector = toImplArray<Vector<String>>(v8StringArray,
0, scope.isolate(), exceptionState); |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 EXPECT_EQ(3U, stringVectorVector[1].size()); | 117 EXPECT_EQ(3U, stringVectorVector[1].size()); |
| 102 EXPECT_EQ("x", stringVectorVector[1][0]); | 118 EXPECT_EQ("x", stringVectorVector[1][0]); |
| 103 EXPECT_EQ("y", stringVectorVector[1][1]); | 119 EXPECT_EQ("y", stringVectorVector[1][1]); |
| 104 EXPECT_EQ("z", stringVectorVector[1][2]); | 120 EXPECT_EQ("z", stringVectorVector[1][2]); |
| 105 } | 121 } |
| 106 } | 122 } |
| 107 | 123 |
| 108 } // namespace | 124 } // namespace |
| 109 | 125 |
| 110 } // namespace blink | 126 } // namespace blink |
| OLD | NEW |