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
|
// Copyright 2020 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/enterprise/reporting/extension_request/extension_request_notification.h"
#include <array>
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/notifications/notification_display_service_tester.h"
#include "chrome/browser/notifications/notification_handler.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/test/base/browser_with_test_window_test.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/testing_profile_manager.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using ::testing::HasSubstr;
namespace enterprise_reporting {
constexpr char kChromeWebstoreUrl[] =
"https://chrome.google.com/webstore/detail/";
constexpr char kFakeExtensionId[] = "fake-extension-id";
// The elements order of array below must match the order in enum
// ExtensionRequestNotification::NotifyType.
constexpr auto kNotificationIds = std::to_array<const char*>({
"extension_approved_notificaiton",
"extension_rejected_notificaiton",
"extension_installed_notificaiton",
});
constexpr auto kNotificationTitleKeywords = std::to_array<const char*>({
"approved",
"rejected",
"installed",
});
constexpr auto kNotificationBodyKeywords = std::to_array<const char*>({
"to install",
"to view",
"to view",
});
void OnNotificationClosed(bool expected_by_user, bool by_user) {
EXPECT_EQ(expected_by_user, by_user);
}
class ExtensionRequestNotificationTest
: public BrowserWithTestWindowTest,
public testing::WithParamInterface<
ExtensionRequestNotification::NotifyType> {
public:
ExtensionRequestNotificationTest() = default;
~ExtensionRequestNotificationTest() override = default;
void SetUp() override {
BrowserWithTestWindowTest::SetUp();
display_service_tester_ =
std::make_unique<NotificationDisplayServiceTester>(profile());
}
ExtensionRequestNotification::NotifyType GetNotifyType() {
return GetParam();
}
std::optional<message_center::Notification> GetNotification() {
return display_service_tester_->GetNotification(
kNotificationIds[GetNotifyType()]);
}
std::unique_ptr<NotificationDisplayServiceTester> display_service_tester_;
};
INSTANTIATE_TEST_SUITE_P(
ExtensionRequestNotificationTest,
ExtensionRequestNotificationTest,
::testing::Values(ExtensionRequestNotification::kApproved,
ExtensionRequestNotification::kRejected,
ExtensionRequestNotification::kForceInstalled));
TEST_P(ExtensionRequestNotificationTest, HasExtensionAndClickedByUser) {
ExtensionRequestNotification request_notification(
profile(), GetNotifyType(),
ExtensionRequestNotification::ExtensionIds({kFakeExtensionId}));
base::RunLoop show_run_loop;
display_service_tester_->SetNotificationAddedClosure(
show_run_loop.QuitClosure());
request_notification.Show(base::BindOnce(&OnNotificationClosed, true));
show_run_loop.Run();
std::optional<message_center::Notification> notification = GetNotification();
ASSERT_TRUE(notification.has_value());
EXPECT_THAT(base::UTF16ToUTF8(notification->title()),
HasSubstr(kNotificationTitleKeywords[GetNotifyType()]));
EXPECT_THAT(base::UTF16ToUTF8(notification->message()),
HasSubstr(kNotificationBodyKeywords[GetNotifyType()]));
base::RunLoop close_run_loop;
display_service_tester_->SetNotificationClosedClosure(
close_run_loop.QuitClosure());
display_service_tester_->SimulateClick(
NotificationHandler::Type::TRANSIENT, kNotificationIds[GetNotifyType()],
std::optional<int>(), std::optional<std::u16string>());
close_run_loop.Run();
EXPECT_FALSE(GetNotification().has_value());
std::string expected_url =
std::string(kChromeWebstoreUrl) + std::string(kFakeExtensionId);
EXPECT_EQ(GURL(expected_url),
browser()->tab_strip_model()->GetWebContentsAt(0)->GetVisibleURL());
}
TEST_P(ExtensionRequestNotificationTest, HasExtensionAndClosedByBrowser) {
ExtensionRequestNotification request_notification(
profile(), GetNotifyType(),
ExtensionRequestNotification::ExtensionIds({kFakeExtensionId}));
base::RunLoop show_run_loop;
display_service_tester_->SetNotificationAddedClosure(
show_run_loop.QuitClosure());
request_notification.Show(base::BindOnce(&OnNotificationClosed, false));
show_run_loop.Run();
std::optional<message_center::Notification> notification = GetNotification();
ASSERT_TRUE(notification.has_value());
base::RunLoop close_run_loop;
display_service_tester_->SetNotificationClosedClosure(
close_run_loop.QuitClosure());
request_notification.CloseNotification();
close_run_loop.Run();
EXPECT_FALSE(GetNotification().has_value());
}
} // namespace enterprise_reporting
|