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
|
// 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/ui/webauthn/passkey_saved_confirmation_controller.h"
#include <memory>
#include "base/test/metrics/histogram_tester.h"
#include "chrome/browser/signin/identity_test_environment_profile_adaptor.h"
#include "chrome/browser/ui/passwords/passwords_model_delegate_mock.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/test/base/testing_profile.h"
#include "components/password_manager/core/browser/manage_passwords_referrer.h"
#include "components/password_manager/core/browser/password_manager_metrics_util.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_renderer_host.h"
#include "content/public/test/web_contents_tester.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"
namespace {
using ::testing::Return;
constexpr char kUIDismissalReasonMetric[] = "PasswordManager.UIDismissalReason";
constexpr char kRpId[] = "touhou.example.com";
} // namespace
class PasskeySavedConfirmationControllerTest : public ::testing::Test {
public:
~PasskeySavedConfirmationControllerTest() override = default;
void SetUp() override {
TestingProfile::Builder profile_builder;
profile_builder.AddTestingFactories(
IdentityTestEnvironmentProfileAdaptor::
GetIdentityTestEnvironmentFactories());
profile_ = profile_builder.Build();
web_contents_ =
content::WebContentsTester::CreateTestWebContents(profile(), nullptr);
mock_delegate_ =
std::make_unique<testing::NiceMock<PasswordsModelDelegateMock>>();
ON_CALL(*mock_delegate_, GpmPinCreatedDuringRecentPasskeyCreation)
.WillByDefault(Return(false));
}
TestingProfile* profile() { return profile_.get(); }
PasswordsModelDelegateMock* delegate() { return mock_delegate_.get(); }
PasskeySavedConfirmationController* controller() { return controller_.get(); }
void CreateController() {
EXPECT_CALL(*delegate(), OnBubbleShown());
controller_ = std::make_unique<PasskeySavedConfirmationController>(
mock_delegate_->AsWeakPtr(), kRpId);
ASSERT_TRUE(testing::Mock::VerifyAndClearExpectations(delegate()));
}
void DestroyController() { controller_.reset(); }
private:
content::BrowserTaskEnvironment task_environment_;
content::RenderViewHostTestEnabler rvh_enabler_;
std::unique_ptr<TestingProfile> profile_;
std::unique_ptr<content::WebContents> web_contents_;
std::unique_ptr<PasswordsModelDelegateMock> mock_delegate_;
std::unique_ptr<PasskeySavedConfirmationController> controller_;
};
TEST_F(PasskeySavedConfirmationControllerTest, Destroy) {
CreateController();
EXPECT_CALL(*delegate(), OnBubbleHidden());
controller()->OnBubbleClosing();
}
TEST_F(PasskeySavedConfirmationControllerTest, DestroyImplicictly) {
CreateController();
EXPECT_CALL(*delegate(), OnBubbleHidden());
}
TEST_F(PasskeySavedConfirmationControllerTest, ContentWithoutPinCreation) {
CreateController();
EXPECT_EQ(controller()->GetTitle(),
l10n_util::GetStringUTF16(IDS_WEBAUTHN_GPM_PASSKEY_SAVED_TITLE));
}
TEST_F(PasskeySavedConfirmationControllerTest, ContentWithPinCreation) {
ON_CALL(*delegate(), GpmPinCreatedDuringRecentPasskeyCreation)
.WillByDefault(Return(true));
CreateController();
EXPECT_EQ(controller()->GetTitle(),
l10n_util::GetStringUTF16(
IDS_WEBAUTHN_GPM_PASSKEY_SAVED_PIN_CREATED_TITLE));
}
TEST_F(PasskeySavedConfirmationControllerTest,
OnGooglePasswordManagerLinkClicked) {
base::HistogramTester histogram_tester;
CreateController();
EXPECT_CALL(*delegate(),
NavigateToPasswordDetailsPageInPasswordManager(
kRpId, password_manager::ManagePasswordsReferrer::
kPasskeySavedConfirmationBubble));
controller()->OnGooglePasswordManagerLinkClicked();
DestroyController();
histogram_tester.ExpectUniqueSample(
kUIDismissalReasonMetric, password_manager::metrics_util::CLICKED_MANAGE,
1);
}
|