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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/facilitated_payments/ui/android/facilitated_payments_controller.h"
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/test/mock_callback.h"
#include "chrome/browser/facilitated_payments/ui/android/facilitated_payments_bottom_sheet_bridge.h"
#include "chrome/test/base/chrome_render_view_host_test_harness.h"
#include "components/autofill/core/browser/test_utils/autofill_test_utils.h"
#include "components/facilitated_payments/core/utils/facilitated_payments_ui_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using ::testing::_;
using ::testing::Return;
namespace {
class MockFacilitatedPaymentsBottomSheetBridge
: public payments::facilitated::FacilitatedPaymentsBottomSheetBridge {
public:
MockFacilitatedPaymentsBottomSheetBridge(
content::WebContents* web_contents,
FacilitatedPaymentsController* controller)
: payments::facilitated::FacilitatedPaymentsBottomSheetBridge(
web_contents,
controller) {}
~MockFacilitatedPaymentsBottomSheetBridge() override = default;
MOCK_METHOD(bool, IsInLandscapeMode, (), (override));
MOCK_METHOD(
void,
RequestShowContent,
(base::span<const autofill::BankAccount> bank_account_suggestions),
(override));
MOCK_METHOD(void,
RequestShowContentForEwallet,
(base::span<const autofill::Ewallet> ewallet_suggestions),
(override));
MOCK_METHOD(void, ShowProgressScreen, (), (override));
MOCK_METHOD(void, ShowErrorScreen, (), (override));
MOCK_METHOD(void, Dismiss, (), (override));
MOCK_METHOD(void, OnDismissed, (), (override));
MOCK_METHOD(void, ShowPixAccountLinkingPrompt, (), (override));
};
} // namespace
class FacilitatedPaymentsControllerTest
: public ChromeRenderViewHostTestHarness {
protected:
void SetUp() override {
ChromeRenderViewHostTestHarness::SetUp();
controller_ =
std::make_unique<FacilitatedPaymentsController>(web_contents());
auto mock_view = std::make_unique<MockFacilitatedPaymentsBottomSheetBridge>(
web_contents(), controller_.get());
mock_view_ = mock_view.get();
controller_->SetViewForTesting(std::move(mock_view));
}
void TearDown() override {
mock_view_ = nullptr;
ChromeRenderViewHostTestHarness::TearDown();
}
raw_ptr<MockFacilitatedPaymentsBottomSheetBridge> mock_view_;
std::unique_ptr<FacilitatedPaymentsController> controller_;
const std::vector<autofill::BankAccount> bank_accounts_ = {
autofill::test::CreatePixBankAccount(100L),
autofill::test::CreatePixBankAccount(200L)};
const std::vector<autofill::Ewallet> ewallets_ = {
autofill::test::CreateEwalletAccount(100L),
autofill::test::CreateEwalletAccount(200L)};
};
// Test controller forwards call for showing the Pix FOP selector to the view.
TEST_F(FacilitatedPaymentsControllerTest, Show_UserHasPixAccounts) {
EXPECT_CALL(*mock_view_,
RequestShowContent(testing::ElementsAreArray(bank_accounts_)));
controller_->Show(bank_accounts_, base::DoNothing());
}
// Test controller does not forward call for showing the Pix FOP selector to the
// view when there are no Pix accounts.
TEST_F(FacilitatedPaymentsControllerTest, Show_UserHasNoPixAccounts) {
EXPECT_CALL(*mock_view_, RequestShowContent).Times(0);
controller_->Show({}, base::DoNothing());
}
// Test onBankAccountSelected method.
TEST_F(FacilitatedPaymentsControllerTest, onBankAccountSelected) {
base::MockCallback<base::OnceCallback<void(int64_t)>>
mock_on_payment_account_selected;
// view_ is assigned when the bottom sheet is shown.
controller_->Show(bank_accounts_, mock_on_payment_account_selected.Get());
// When bank account is selected, call back should be called with the
// instrument id of the selected bank account.
EXPECT_CALL(mock_on_payment_account_selected,
Run(/*selected_bank_account_id=*/100L));
controller_->OnBankAccountSelected(nullptr, 100L);
}
// Test controller forwards call for showing the progress screen to the view.
TEST_F(FacilitatedPaymentsControllerTest, ShowProgressScreen) {
EXPECT_CALL(*mock_view_, ShowProgressScreen);
controller_->ShowProgressScreen();
}
// Test controller forwards call for showing the progress screen to the view.
TEST_F(FacilitatedPaymentsControllerTest, ShowErrorScreen) {
EXPECT_CALL(*mock_view_, ShowErrorScreen);
controller_->ShowErrorScreen();
}
// Test controller forwards call for showing the Pix account linking prompt to
// the view.
TEST_F(FacilitatedPaymentsControllerTest, ShowPixAccountLinkingPrompt) {
EXPECT_CALL(*mock_view_, ShowPixAccountLinkingPrompt);
controller_->ShowPixAccountLinkingPrompt(base::DoNothing(),
base::DoNothing());
}
TEST_F(FacilitatedPaymentsControllerTest, OnPixAccountLinkingPromptAccepted) {
base::MockCallback<base::OnceCallback<void()>> mock_on_accepted;
base::MockCallback<base::OnceCallback<void()>> mock_on_declined;
controller_->ShowPixAccountLinkingPrompt(mock_on_accepted.Get(),
mock_on_declined.Get());
// When the Pix account linking prompt is accepted, callback should be called.
EXPECT_CALL(mock_on_accepted, Run());
EXPECT_CALL(mock_on_declined, Run).Times(0);
controller_->OnPixAccountLinkingPromptAccepted(nullptr);
}
TEST_F(FacilitatedPaymentsControllerTest, OnPixAccountLinkingPromptDeclined) {
base::MockCallback<base::OnceCallback<void()>> mock_on_accepted;
base::MockCallback<base::OnceCallback<void()>> mock_on_declined;
controller_->ShowPixAccountLinkingPrompt(mock_on_accepted.Get(),
mock_on_declined.Get());
// When the Pix account linking prompt is declined, callback should be called.
EXPECT_CALL(mock_on_accepted, Run).Times(0);
EXPECT_CALL(mock_on_declined, Run());
controller_->OnPixAccountLinkingPromptDeclined(nullptr);
}
// Test that the view is able to process requests to show different screens back
// to back.
TEST_F(FacilitatedPaymentsControllerTest,
ViewIsAbleToProcessBackToBackShowRequests) {
EXPECT_CALL(*mock_view_, RequestShowContent);
EXPECT_CALL(*mock_view_, ShowProgressScreen);
controller_->Show(bank_accounts_, base::DoNothing());
controller_->ShowProgressScreen();
}
// Test controller forwards call for closing the bottom sheet to the view.
TEST_F(FacilitatedPaymentsControllerTest, Dismiss) {
EXPECT_CALL(*mock_view_, Dismiss);
controller_->Dismiss();
}
// Test controller forwards call to check the device screen orientation to the
// view.
TEST_F(FacilitatedPaymentsControllerTest, IsInLandscapeMode) {
EXPECT_CALL(*mock_view_, IsInLandscapeMode);
controller_->IsInLandscapeMode();
}
class FacilitatedPaymentsControllerTestForUiEvents
: public FacilitatedPaymentsControllerTest,
public testing::WithParamInterface<payments::facilitated::UiEvent> {
public:
payments::facilitated::UiEvent ui_event() { return GetParam(); }
};
INSTANTIATE_TEST_SUITE_P(
FacilitatedPaymentsControllerTest,
FacilitatedPaymentsControllerTestForUiEvents,
testing::Values(payments::facilitated::UiEvent::kNewScreenShown,
payments::facilitated::UiEvent::kScreenClosedNotByUser,
payments::facilitated::UiEvent::kScreenClosedByUser));
TEST_P(FacilitatedPaymentsControllerTestForUiEvents, OnUiEvent) {
// Set the UI event listener.
base::MockCallback<
base::RepeatingCallback<void(payments::facilitated::UiEvent)>>
mock_ui_event_listener;
controller_->SetUiEventListener(mock_ui_event_listener.Get());
// Verify that the UI event is communicated to the feature via the callback.
EXPECT_CALL(mock_ui_event_listener, Run(ui_event()));
if (ui_event() == payments::facilitated::UiEvent::kScreenClosedNotByUser ||
ui_event() == payments::facilitated::UiEvent::kScreenClosedByUser) {
// Verify that the screen closing event is communicated to the
// view. The second OnDismissed call is triggered when the test
// fixture destroys the `controller`.
EXPECT_CALL(*mock_view_, OnDismissed).Times(2);
}
controller_->OnUiEvent(nullptr, static_cast<jint>(ui_event()));
}
// Test controller forwards call for showing the eWallet FOP selector to the
// view.
TEST_F(FacilitatedPaymentsControllerTest,
ShowForEwallet_UserHasEwalletAccounts) {
EXPECT_CALL(*mock_view_, RequestShowContentForEwallet(
testing::ElementsAreArray(ewallets_)));
controller_->ShowForEwallet(ewallets_, base::DoNothing());
}
// Test controller does not forward call for showing the eWallet FOP selector to
// the view when there are no eWallet accounts.
TEST_F(FacilitatedPaymentsControllerTest,
ShowForEwallet_UserHasNoEwalletAccounts) {
EXPECT_CALL(*mock_view_, RequestShowContentForEwallet).Times(0);
controller_->ShowForEwallet({}, base::DoNothing());
}
// Test OnEwalletSelected method.
TEST_F(FacilitatedPaymentsControllerTest, OnEwalletSelected) {
base::MockCallback<base::OnceCallback<void(int64_t)>>
mock_on_payment_account_selected;
// view_ is assigned when the bottom sheet is shown.
controller_->ShowForEwallet(ewallets_,
mock_on_payment_account_selected.Get());
// When an eWallet is selected, call back should be called with the instrument
// id of the selected eWallet.
EXPECT_CALL(mock_on_payment_account_selected,
Run(/*selected_ewallet_instrument_id=*/100L));
controller_->OnEwalletSelected(nullptr, 100L);
}
|