OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "config.h" |
| 6 #include "bindings/v8/ScriptPromiseProperty.h" |
| 7 |
| 8 #include "bindings/v8/DOMWrapperWorld.h" |
| 9 #include "bindings/v8/ScriptFunction.h" |
| 10 #include "bindings/v8/ScriptPromise.h" |
| 11 #include "bindings/v8/ScriptState.h" |
| 12 #include "bindings/v8/ScriptValue.h" |
| 13 #include "bindings/v8/V8Binding.h" |
| 14 #include "core/dom/Document.h" |
| 15 #include "core/events/Event.h" |
| 16 #include "core/testing/DummyPageHolder.h" |
| 17 #include "core/testing/GCObservation.h" |
| 18 #include "wtf/OwnPtr.h" |
| 19 #include "wtf/PassOwnPtr.h" |
| 20 #include "wtf/PassRefPtr.h" |
| 21 #include "wtf/RefPtr.h" |
| 22 #include <gtest/gtest.h> |
| 23 #include <v8.h> |
| 24 |
| 25 using namespace WebCore; |
| 26 |
| 27 namespace { |
| 28 |
| 29 class NotReached : public ScriptFunction { |
| 30 public: |
| 31 NotReached() : ScriptFunction(v8::Isolate::GetCurrent()) { } |
| 32 |
| 33 private: |
| 34 virtual ScriptValue call(ScriptValue) OVERRIDE; |
| 35 }; |
| 36 |
| 37 ScriptValue NotReached::call(ScriptValue) |
| 38 { |
| 39 EXPECT_TRUE(false) << "'Unreachable' code was reached"; |
| 40 return ScriptValue(); |
| 41 } |
| 42 |
| 43 class StubFunction : public ScriptFunction { |
| 44 public: |
| 45 StubFunction(ScriptValue&, size_t& callCount); |
| 46 |
| 47 private: |
| 48 virtual ScriptValue call(ScriptValue) OVERRIDE; |
| 49 |
| 50 ScriptValue& m_value; |
| 51 size_t& m_callCount; |
| 52 }; |
| 53 |
| 54 StubFunction::StubFunction(ScriptValue& value, size_t& callCount) |
| 55 : ScriptFunction(v8::Isolate::GetCurrent()) |
| 56 , m_value(value) |
| 57 , m_callCount(callCount) |
| 58 { |
| 59 } |
| 60 |
| 61 ScriptValue StubFunction::call(ScriptValue arg) |
| 62 { |
| 63 m_value = arg; |
| 64 m_callCount++; |
| 65 return ScriptValue(); |
| 66 } |
| 67 |
| 68 class ScriptPromisePropertyTest : public ::testing::Test { |
| 69 protected: |
| 70 ScriptPromisePropertyTest() |
| 71 : m_page(DummyPageHolder::create(IntSize(1, 1))) |
| 72 { |
| 73 } |
| 74 |
| 75 virtual ~ScriptPromisePropertyTest() |
| 76 { |
| 77 m_page.clear(); |
| 78 gc(); |
| 79 } |
| 80 |
| 81 Document& document() { return m_page->document(); } |
| 82 v8::Isolate* isolate() { return toIsolate(&document()); } |
| 83 ScriptState* scriptState() { return ScriptState::forMainWorld(document().fra
me()); } |
| 84 void gc() { v8::Isolate::GetCurrent()->RequestGarbageCollectionForTesting(v8
::Isolate::kFullGarbageCollection); } |
| 85 |
| 86 PassOwnPtr<ScriptFunction> notReached() { return adoptPtr(new NotReached());
} |
| 87 PassOwnPtr<ScriptFunction> stub(ScriptValue& value, size_t& callCount) { ret
urn adoptPtr(new StubFunction(value, callCount)); } |
| 88 |
| 89 // These tests use Event because it is simple to manufacture lots of events. |
| 90 |
| 91 ScriptValue wrap(PassRefPtrWillBeRawPtr<Event> event) |
| 92 { |
| 93 ScriptState::Scope scope(scriptState()); |
| 94 return ScriptValue(scriptState(), V8ValueTraits<Event>::toV8Value(event,
scriptState()->context()->Global(), isolate())); |
| 95 } |
| 96 |
| 97 typedef ScriptPromiseProperty<RefPtrWillBeMember<Event>, Event*, Event*> Pro
perty; |
| 98 PassRefPtrWillBeRawPtr<Property> newProperty() { return Property::create(&do
cument(), Event::create(), "test"); } |
| 99 |
| 100 private: |
| 101 OwnPtr<DummyPageHolder> m_page; |
| 102 }; |
| 103 |
| 104 TEST_F(ScriptPromisePropertyTest, Promise_IsStableObject) |
| 105 { |
| 106 RefPtrWillBeRawPtr<Property> p(newProperty()); |
| 107 ScriptPromise v = p->promise(DOMWrapperWorld::mainWorld()); |
| 108 ScriptPromise w = p->promise(DOMWrapperWorld::mainWorld()); |
| 109 EXPECT_EQ(v, w); |
| 110 EXPECT_FALSE(v.isEmpty()); |
| 111 EXPECT_EQ(Property::Pending, p->state()); |
| 112 } |
| 113 |
| 114 TEST_F(ScriptPromisePropertyTest, Promise_IsStableObjectAfterSettling) |
| 115 { |
| 116 RefPtrWillBeRawPtr<Property> p(newProperty()); |
| 117 ScriptPromise v = p->promise(DOMWrapperWorld::mainWorld()); |
| 118 |
| 119 RefPtrWillBeRawPtr<Event> value(Event::create()); |
| 120 p->resolve(value.get()); |
| 121 EXPECT_EQ(Property::Resolved, p->state()); |
| 122 |
| 123 ScriptPromise w = p->promise(DOMWrapperWorld::mainWorld()); |
| 124 EXPECT_EQ(v, w); |
| 125 EXPECT_FALSE(v.isEmpty()); |
| 126 } |
| 127 |
| 128 TEST_F(ScriptPromisePropertyTest, Promise_DoesNotImpedeGarbageCollection) |
| 129 { |
| 130 RefPtrWillBeRawPtr<Event> holder(Event::create()); |
| 131 ScriptValue holderWrapper = wrap(holder); |
| 132 |
| 133 RefPtrWillBeRawPtr<Property> p(Property::create(&document(), holder, "test")
); |
| 134 |
| 135 RefPtrWillBeRawPtr<GCObservation> observation; |
| 136 { |
| 137 ScriptState::Scope scope(scriptState()); |
| 138 observation = GCObservation::create(p->promise(DOMWrapperWorld::mainWorl
d()).v8Value()); |
| 139 } |
| 140 |
| 141 gc(); |
| 142 EXPECT_FALSE(observation->wasCollected()); |
| 143 |
| 144 holderWrapper.clear(); |
| 145 gc(); |
| 146 EXPECT_TRUE(observation->wasCollected()); |
| 147 |
| 148 EXPECT_EQ(Property::Pending, p->state()); |
| 149 } |
| 150 |
| 151 TEST_F(ScriptPromisePropertyTest, Resolve_ResolvesScriptPromise) |
| 152 { |
| 153 RefPtrWillBeRawPtr<Property> p(newProperty()); |
| 154 |
| 155 ScriptPromise promise = p->promise(DOMWrapperWorld::mainWorld()); |
| 156 ScriptValue value; |
| 157 size_t nResolveCalls = 0; |
| 158 |
| 159 { |
| 160 ScriptState::Scope scope(scriptState()); |
| 161 promise.then(stub(value, nResolveCalls), notReached()); |
| 162 } |
| 163 |
| 164 RefPtrWillBeRawPtr<Event> event(Event::create()); |
| 165 p->resolve(event.get()); |
| 166 EXPECT_EQ(Property::Resolved, p->state()); |
| 167 |
| 168 isolate()->RunMicrotasks(); |
| 169 EXPECT_EQ(1u, nResolveCalls); |
| 170 EXPECT_EQ(wrap(event), value); |
| 171 } |
| 172 |
| 173 TEST_F(ScriptPromisePropertyTest, Reject_RejectsScriptPromise) |
| 174 { |
| 175 RefPtrWillBeRawPtr<Property> p(newProperty()); |
| 176 |
| 177 RefPtrWillBeRawPtr<Event> event(Event::create()); |
| 178 p->reject(event.get()); |
| 179 EXPECT_EQ(Property::Rejected, p->state()); |
| 180 |
| 181 ScriptValue value; |
| 182 size_t nRejectCalls = 0; |
| 183 |
| 184 { |
| 185 ScriptState::Scope scope(scriptState()); |
| 186 p->promise(DOMWrapperWorld::mainWorld()).then(notReached(), stub(value,
nRejectCalls)); |
| 187 } |
| 188 |
| 189 isolate()->RunMicrotasks(); |
| 190 EXPECT_EQ(1u, nRejectCalls); |
| 191 EXPECT_EQ(wrap(event), value); |
| 192 } |
| 193 |
| 194 TEST_F(ScriptPromisePropertyTest, Settle_IsIdempotent) |
| 195 { |
| 196 RefPtrWillBeRawPtr<Property> p(newProperty()); |
| 197 |
| 198 RefPtrWillBeRawPtr<Event> eventA(Event::create()); |
| 199 p->reject(eventA.get()); |
| 200 EXPECT_EQ(Property::Rejected, p->state()); |
| 201 |
| 202 RefPtrWillBeRawPtr<Event> eventB(Event::create()); |
| 203 p->resolve(eventB.get()); |
| 204 EXPECT_EQ(Property::Rejected, p->state()); |
| 205 |
| 206 ScriptValue value; |
| 207 size_t nRejectCalls = 0; |
| 208 |
| 209 { |
| 210 ScriptState::Scope scope(scriptState()); |
| 211 p->promise(DOMWrapperWorld::mainWorld()).then(notReached(), stub(value,
nRejectCalls)); |
| 212 } |
| 213 |
| 214 isolate()->RunMicrotasks(); |
| 215 |
| 216 EXPECT_EQ(1u, nRejectCalls); |
| 217 EXPECT_EQ(wrap(eventA), value); |
| 218 |
| 219 RefPtrWillBeRawPtr<Event> eventC(Event::create()); |
| 220 p->reject(eventC.get()); |
| 221 EXPECT_EQ(1u, nRejectCalls); |
| 222 } |
| 223 |
| 224 TEST_F(ScriptPromisePropertyTest, Settle_WaitsForResume) |
| 225 { |
| 226 document().suspendScheduledTasks(); |
| 227 |
| 228 RefPtrWillBeRawPtr<Property> p(newProperty()); |
| 229 |
| 230 RefPtrWillBeRawPtr<Event> event(Event::create()); |
| 231 p->resolve(event.get()); |
| 232 EXPECT_EQ(Property::Resolved, p->state()); |
| 233 |
| 234 ScriptValue value; |
| 235 size_t nResolveCalls = 0; |
| 236 |
| 237 { |
| 238 ScriptState::Scope scope(scriptState()); |
| 239 p->promise(DOMWrapperWorld::mainWorld()).then(stub(value, nResolveCalls)
, notReached()); |
| 240 } |
| 241 |
| 242 isolate()->RunMicrotasks(); |
| 243 EXPECT_EQ(0u, nResolveCalls); |
| 244 |
| 245 document().resumeScheduledTasks(); |
| 246 isolate()->RunMicrotasks(); |
| 247 EXPECT_EQ(1u, nResolveCalls); |
| 248 EXPECT_EQ(wrap(event), value); |
| 249 } |
| 250 |
| 251 } // namespace |
OLD | NEW |