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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp

Issue 1931233002: Implement PaymentRequestUpdateEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@explicit-shipping
Patch Set: Rebase 3 Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp
diff --git a/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp b/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..82eb9ec2186dc26fb5fa18dd324b4c2d81b762ac
--- /dev/null
+++ b/third_party/WebKit/Source/modules/payments/PaymentRequestUpdateEventTest.cpp
@@ -0,0 +1,114 @@
+// Copyright 2016 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 "modules/payments/PaymentRequestUpdateEvent.h"
+
+#include "bindings/core/v8/ExceptionState.h"
+#include "bindings/core/v8/ScriptPromiseResolver.h"
+#include "bindings/core/v8/ScriptState.h"
+#include "core/EventTypeNames.h"
+#include "core/testing/DummyPageHolder.h"
+#include "modules/payments/PaymentUpdater.h"
+#include "testing/gmock/include/gmock/gmock.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "wtf/OwnPtr.h"
+#include <utility>
Marijn Kruisselbrink 2016/05/03 22:28:51 probably just my fault, but I don't see where this
please use gerrit instead 2016/05/05 04:57:48 You're right. It's not used in this file. It was a
+
+namespace blink {
+namespace {
+
+class MockPaymentUpdater : public GarbageCollectedFinalized<MockPaymentUpdater>, public PaymentUpdater {
+ USING_GARBAGE_COLLECTED_MIXIN(MockPaymentUpdater);
+ WTF_MAKE_NONCOPYABLE(MockPaymentUpdater);
+
+public:
+ MockPaymentUpdater() {}
+ ~MockPaymentUpdater() override {}
+
+ MOCK_METHOD1(onUpdatePaymentDetails, void(const ScriptValue& detailsScriptValue));
+ MOCK_METHOD1(onUpdatePaymentDetailsFailure, void(const ScriptValue& error));
+
+ DEFINE_INLINE_TRACE() {}
+};
+
+class PaymentRequestUpdateEventTest : public testing::Test {
+public:
+ PaymentRequestUpdateEventTest()
+ : m_page(DummyPageHolder::create())
+ {
+ }
+
+ ~PaymentRequestUpdateEventTest() override {}
+
+ ScriptState* getScriptState() { return ScriptState::forMainWorld(m_page->document().frame()); }
+ ExecutionContext* getExecutionContext() { return &m_page->document(); }
+ ExceptionState& getExceptionState() { return m_exceptionState; }
+
+private:
+ OwnPtr<DummyPageHolder> m_page;
+ TrackExceptionState m_exceptionState;
+};
+
+TEST_F(PaymentRequestUpdateEventTest, OnUpdatePaymentDetailsCalled)
+{
+ ScriptState::Scope scope(getScriptState());
+ PaymentRequestUpdateEvent* event = PaymentRequestUpdateEvent::create();
+ MockPaymentUpdater* updater = new MockPaymentUpdater;
+ event->setPaymentDetailsUpdater(updater);
+ event->setEventPhase(Event::CAPTURING_PHASE);
+ ScriptPromiseResolver* paymentDetails = ScriptPromiseResolver::create(getScriptState());
+ event->updateWith(getScriptState(), paymentDetails->promise(), getExceptionState());
+ EXPECT_FALSE(getExceptionState().hadException());
+
+ EXPECT_CALL(*updater, onUpdatePaymentDetails(testing::_));
+ EXPECT_CALL(*updater, onUpdatePaymentDetailsFailure(testing::_)).Times(0);
+
+ paymentDetails->resolve("foo");
+}
+
+TEST_F(PaymentRequestUpdateEventTest, OnUpdatePaymentDetailsFailureCalled)
+{
+ ScriptState::Scope scope(getScriptState());
+ PaymentRequestUpdateEvent* event = PaymentRequestUpdateEvent::create(EventTypeNames::shippingaddresschange);
+ MockPaymentUpdater* updater = new MockPaymentUpdater;
+ event->setPaymentDetailsUpdater(updater);
+ event->setEventPhase(Event::CAPTURING_PHASE);
+ ScriptPromiseResolver* paymentDetails = ScriptPromiseResolver::create(getScriptState());
+ event->updateWith(getScriptState(), paymentDetails->promise(), getExceptionState());
+ EXPECT_FALSE(getExceptionState().hadException());
+
+ EXPECT_CALL(*updater, onUpdatePaymentDetails(testing::_)).Times(0);
+ EXPECT_CALL(*updater, onUpdatePaymentDetailsFailure(testing::_));
+
+ paymentDetails->reject("oops");
+}
+
+TEST_F(PaymentRequestUpdateEventTest, CannotUpdateWithoutDispatching)
+{
+ ScriptState::Scope scope(getScriptState());
+ PaymentRequestUpdateEvent* event = PaymentRequestUpdateEvent::create(EventTypeNames::shippingaddresschange);
+ event->setPaymentDetailsUpdater(new MockPaymentUpdater);
+
+ event->updateWith(getScriptState(), ScriptPromiseResolver::create(getScriptState())->promise(), getExceptionState());
+
+ EXPECT_TRUE(getExceptionState().hadException());
+}
+
+TEST_F(PaymentRequestUpdateEventTest, CannotUpdateTwice)
+{
+ ScriptState::Scope scope(getScriptState());
+ PaymentRequestUpdateEvent* event = PaymentRequestUpdateEvent::create(EventTypeNames::shippingaddresschange);
+ MockPaymentUpdater* updater = new MockPaymentUpdater;
+ event->setPaymentDetailsUpdater(updater);
+ event->setEventPhase(Event::CAPTURING_PHASE);
+ event->updateWith(getScriptState(), ScriptPromiseResolver::create(getScriptState())->promise(), getExceptionState());
+ EXPECT_FALSE(getExceptionState().hadException());
+
+ event->updateWith(getScriptState(), ScriptPromiseResolver::create(getScriptState())->promise(), getExceptionState());
+
+ EXPECT_TRUE(getExceptionState().hadException());
+}
+
+} // namespace
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698