chromium/third_party/blink/renderer/modules/payments/payment_request_update_event_test.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/modules/payments/payment_request_update_event.h"

#include <memory>

#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/mojom/frame/user_activation_notification_type.mojom-blink.h"
#include "third_party/blink/renderer/bindings/core/v8/script_promise_resolver.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_testing.h"
#include "third_party/blink/renderer/core/event_type_names.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/testing/mock_function_scope.h"
#include "third_party/blink/renderer/modules/payments/payment_request.h"
#include "third_party/blink/renderer/modules/payments/payment_request_delegate.h"
#include "third_party/blink/renderer/modules/payments/payment_test_helper.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/bindings/script_state.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {
namespace {

class MockPaymentRequest : public GarbageCollected<MockPaymentRequest>,
                           public PaymentRequestDelegate {};

TEST(PaymentRequestUpdateEventTest, OnUpdatePaymentDetailsCalled) {}

TEST(PaymentRequestUpdateEventTest, OnUpdatePaymentDetailsFailureCalled) {}

TEST(PaymentRequestUpdateEventTest, CannotUpdateWithoutDispatching) {}

TEST(PaymentRequestUpdateEventTest, CannotUpdateTwice) {}

TEST(PaymentRequestUpdateEventTest, UpdaterNotRequired) {}

TEST(PaymentRequestUpdateEventTest, AddressChangeUpdateWithTimeout) {}

TEST(PaymentRequestUpdateEventTest, OptionChangeUpdateWithTimeout) {}

TEST(PaymentRequestUpdateEventTest, AddressChangePromiseTimeout) {}

TEST(PaymentRequestUpdateEventTest, OptionChangePromiseTimeout) {}

TEST(PaymentRequestUpdateEventTest, NotAllowUntrustedEvent) {}

}  // namespace
}  // namespace blink