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
|
// Copyright 2025 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/ui/autofill/payments/desktop_bnpl_ui_delegate.h"
#include "base/test/mock_callback.h"
#include "chrome/browser/ui/autofill/chrome_autofill_client.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/test/test_browser_dialog.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "components/autofill/core/browser/test_utils/autofill_test_utils.h"
#include "components/autofill/core/browser/ui/payments/bnpl_tos_controller.h"
#include "components/autofill/core/browser/ui/payments/select_bnpl_issuer_dialog_controller.h"
#include "content/public/test/browser_test.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
enum class DialogEnum { kSelectBnplIssuer, kBnplTos };
struct DialogTestData {
std::string name;
DialogEnum dialog = DialogEnum::kSelectBnplIssuer;
};
std::string GetTestName(const ::testing::TestParamInfo<DialogTestData>& info) {
return info.param.name;
}
} // namespace
namespace autofill::payments {
class DesktopBnplUiDelegateBrowserTest
: public DialogBrowserTest,
public testing::WithParamInterface<DialogTestData> {
public:
DesktopBnplUiDelegateBrowserTest() = default;
DesktopBnplUiDelegateBrowserTest(const DesktopBnplUiDelegateBrowserTest&) =
delete;
DesktopBnplUiDelegateBrowserTest& operator=(
const DesktopBnplUiDelegateBrowserTest&) = delete;
~DesktopBnplUiDelegateBrowserTest() override = default;
void ShowUi(const std::string& name) override {
switch (GetParam().dialog) {
case DialogEnum::kSelectBnplIssuer: {
GetDesktopBnplUiDelegate()->ShowSelectBnplIssuerUi(
{payments::BnplIssuerContext(
test::GetTestUnlinkedBnplIssuer(),
payments::BnplIssuerEligibilityForPage::kIsEligible)},
/*app_locale=*/"en-US", base::DoNothing(), base::DoNothing());
break;
}
case DialogEnum::kBnplTos: {
BnplTosModel model;
model.issuer = test::GetTestUnlinkedBnplIssuer();
GetDesktopBnplUiDelegate()->ShowBnplTosUi(
std::move(model), base::DoNothing(), base::DoNothing());
break;
}
}
}
DesktopBnplUiDelegate* GetDesktopBnplUiDelegate() {
return static_cast<DesktopBnplUiDelegate*>(
ChromeAutofillClient::FromWebContents(web_contents())
->GetPaymentsAutofillClient()
->GetBnplUiDelegate());
}
content::WebContents* web_contents() const {
return browser()->tab_strip_model()->GetActiveWebContents();
}
};
INSTANTIATE_TEST_SUITE_P(
,
DesktopBnplUiDelegateBrowserTest,
testing::Values(DialogTestData{"Select_BNPL_Issuer",
DialogEnum::kSelectBnplIssuer},
DialogTestData{"BNPL_ToS", DialogEnum::kBnplTos}),
GetTestName);
// Ensures that the dialog is shown and it won't crash the browser.
IN_PROC_BROWSER_TEST_P(DesktopBnplUiDelegateBrowserTest, ShowAndVerifyUi) {
ShowAndVerifyUi();
}
// Ensures that closing the current tab while the dialog is visible won't crash
// the browser.
IN_PROC_BROWSER_TEST_P(DesktopBnplUiDelegateBrowserTest,
ShowAndVerifyUi_ThenCloseTab) {
ShowAndVerifyUi();
// Close the tab.
web_contents()->Close();
// Wait until tab is closed.
base::RunLoop().RunUntilIdle();
}
// Ensures that closing the window while the dialog is visible won't crash the
// browser.
IN_PROC_BROWSER_TEST_P(DesktopBnplUiDelegateBrowserTest,
ShowAndVerifyUi_ThenCloseWindow) {
ShowAndVerifyUi();
// Close the browser window.
browser()->window()->Close();
// Wait until the browser window is closed.
base::RunLoop().RunUntilIdle();
}
} // namespace autofill::payments
|