1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
// Copyright 2017 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 "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/views/payments/payment_request_browsertest_base.h"
#include "chrome/browser/ui/views/payments/payment_request_dialog_view_ids.h"
#include "components/autofill/core/browser/autofill_test_utils.h"
#include "components/autofill/core/browser/personal_data_manager.h"
#include "components/payments/content/payment_request.h"
#include "components/payments/content/payment_request_state.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace payments {
class PaymentMethodViewControllerTest : public PaymentRequestBrowserTestBase {
protected:
PaymentMethodViewControllerTest() {}
private:
DISALLOW_COPY_AND_ASSIGN(PaymentMethodViewControllerTest);
};
IN_PROC_BROWSER_TEST_F(PaymentMethodViewControllerTest, OneCardSelected) {
NavigateTo("/payment_request_no_shipping_test.html");
autofill::AutofillProfile billing_profile(autofill::test::GetFullProfile());
AddAutofillProfile(billing_profile);
autofill::CreditCard card = autofill::test::GetCreditCard();
card.set_billing_address_id(billing_profile.guid());
AddCreditCard(card);
InvokePaymentRequestUI();
OpenPaymentMethodScreen();
PaymentRequest* request = GetPaymentRequests(GetActiveWebContents()).front();
EXPECT_EQ(1U, request->state()->available_instruments().size());
views::View* list_view = dialog_view()->GetViewByID(
static_cast<int>(DialogViewID::PAYMENT_METHOD_SHEET_LIST_VIEW));
EXPECT_TRUE(list_view);
EXPECT_EQ(1, list_view->child_count());
EXPECT_EQ(request->state()->available_instruments().front().get(),
request->state()->selected_instrument());
views::View* checkmark_view = list_view->child_at(0)->GetViewByID(
static_cast<int>(DialogViewID::CHECKMARK_VIEW));
EXPECT_TRUE(checkmark_view->visible());
}
IN_PROC_BROWSER_TEST_F(PaymentMethodViewControllerTest,
OneCardSelectedOutOfMany) {
NavigateTo("/payment_request_no_shipping_test.html");
autofill::AutofillProfile billing_profile(autofill::test::GetFullProfile());
AddAutofillProfile(billing_profile);
autofill::CreditCard card1 = autofill::test::GetCreditCard();
card1.set_billing_address_id(billing_profile.guid());
// Ensure that this card is the first suggestion.
card1.set_use_count(5U);
AddCreditCard(card1);
// Slightly different visa.
autofill::CreditCard card2 = autofill::test::GetCreditCard();
card2.SetNumber(base::ASCIIToUTF16("4111111111111112"));
card2.set_billing_address_id(billing_profile.guid());
card2.set_use_count(1U);
AddCreditCard(card2);
InvokePaymentRequestUI();
OpenPaymentMethodScreen();
PaymentRequest* request = GetPaymentRequests(GetActiveWebContents()).front();
EXPECT_EQ(2U, request->state()->available_instruments().size());
EXPECT_EQ(request->state()->available_instruments().front().get(),
request->state()->selected_instrument());
views::View* list_view = dialog_view()->GetViewByID(
static_cast<int>(DialogViewID::PAYMENT_METHOD_SHEET_LIST_VIEW));
EXPECT_TRUE(list_view);
EXPECT_EQ(2, list_view->child_count());
EXPECT_EQ(request->state()->available_instruments().front().get(),
request->state()->selected_instrument());
views::View* checkmark_view = list_view->child_at(0)->GetViewByID(
static_cast<int>(DialogViewID::CHECKMARK_VIEW));
EXPECT_TRUE(checkmark_view->visible());
views::View* checkmark_view2 = list_view->child_at(1)->GetViewByID(
static_cast<int>(DialogViewID::CHECKMARK_VIEW));
EXPECT_FALSE(checkmark_view2->visible());
ResetEventWaiter(DialogEvent::BACK_NAVIGATION);
// Simulate selecting the second card.
ClickOnDialogViewAndWait(list_view->child_at(1));
EXPECT_EQ(request->state()->available_instruments().back().get(),
request->state()->selected_instrument());
OpenPaymentMethodScreen();
list_view = dialog_view()->GetViewByID(
static_cast<int>(DialogViewID::PAYMENT_METHOD_SHEET_LIST_VIEW));
ResetEventWaiter(DialogEvent::BACK_NAVIGATION);
// Clicking on the second card again should not modify any state, and should
// return to the main payment sheet.
ClickOnDialogViewAndWait(list_view->child_at(1));
EXPECT_EQ(request->state()->available_instruments().back().get(),
request->state()->selected_instrument());
}
IN_PROC_BROWSER_TEST_F(PaymentMethodViewControllerTest, EditButtonOpensEditor) {
NavigateTo("/payment_request_no_shipping_test.html");
AddCreditCard(autofill::test::GetCreditCard());
InvokePaymentRequestUI();
OpenPaymentMethodScreen();
views::View* list_view = dialog_view()->GetViewByID(
static_cast<int>(DialogViewID::PAYMENT_METHOD_SHEET_LIST_VIEW));
EXPECT_TRUE(list_view);
EXPECT_EQ(1, list_view->child_count());
views::View* edit_button = list_view->child_at(0)->GetViewByID(
static_cast<int>(DialogViewID::EDIT_ITEM_BUTTON));
ResetEventWaiter(DialogEvent::CREDIT_CARD_EDITOR_OPENED);
ClickOnDialogViewAndWait(edit_button);
}
} // namespace payments
|