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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
|
// Copyright 2014 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 <set>
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "chrome/browser/extensions/extension_browsertest.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/extension_storage_monitor.h"
#include "chrome/browser/ui/extensions/app_launch_params.h"
#include "chrome/browser/ui/extensions/application_launch.h"
#include "content/public/test/test_utils.h"
#include "extensions/browser/extension_prefs.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/test_extension_registry_observer.h"
#include "extensions/common/constants.h"
#include "extensions/test/extension_test_message_listener.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/message_center_observer.h"
namespace extensions {
namespace {
const int kInitialUsageThreshold = 500;
const char kWriteDataApp[] = "storage_monitor/write_data";
class NotificationObserver : public message_center::MessageCenterObserver {
public:
explicit NotificationObserver(const std::string& target_notification)
: message_center_(message_center::MessageCenter::Get()),
target_notification_id_(target_notification),
waiting_(false) {
message_center_->AddObserver(this);
}
~NotificationObserver() override { message_center_->RemoveObserver(this); }
bool HasReceivedNotification() const {
return received_notifications_.find(target_notification_id_) !=
received_notifications_.end();
}
// Runs the message loop and returns true if a notification is received.
// Immediately returns true if a notification has already been received.
bool WaitForNotification() {
if (HasReceivedNotification())
return true;
waiting_ = true;
content::RunMessageLoop();
waiting_ = false;
return HasReceivedNotification();
}
private:
// MessageCenterObserver implementation:
void OnNotificationAdded(const std::string& notification_id) override {
received_notifications_.insert(notification_id);
if (waiting_ && HasReceivedNotification())
base::MessageLoopForUI::current()->Quit();
}
message_center::MessageCenter* message_center_;
std::set<std::string> received_notifications_;
std::string target_notification_id_;
bool waiting_;
};
} // namespace
class ExtensionStorageMonitorTest : public ExtensionBrowserTest {
public:
ExtensionStorageMonitorTest() : storage_monitor_(NULL) {}
protected:
// ExtensionBrowserTest overrides:
void SetUpOnMainThread() override {
ExtensionBrowserTest::SetUpOnMainThread();
InitStorageMonitor();
}
ExtensionStorageMonitor* monitor() {
CHECK(storage_monitor_);
return storage_monitor_;
}
int64 GetInitialExtensionThreshold() {
CHECK(storage_monitor_);
return storage_monitor_->initial_extension_threshold_;
}
int64 GetInitialEphemeralThreshold() {
CHECK(storage_monitor_);
return storage_monitor_->initial_ephemeral_threshold_;
}
void DisableForInstalledExtensions() {
CHECK(storage_monitor_);
storage_monitor_->enable_for_all_extensions_ = false;
}
const Extension* InitWriteDataApp() {
base::FilePath path = test_data_dir_.AppendASCII(kWriteDataApp);
const Extension* extension = InstallExtension(path, 1);
EXPECT_TRUE(extension);
return extension;
}
const Extension* InitWriteDataEphemeralApp() {
// The threshold for installed extensions should be higher than ephemeral
// apps.
storage_monitor_->initial_extension_threshold_ =
storage_monitor_->initial_ephemeral_threshold_ * 4;
base::FilePath path = test_data_dir_.AppendASCII(kWriteDataApp);
const Extension* extension = InstallEphemeralAppWithSourceAndFlags(
path, 1, Manifest::INTERNAL, Extension::NO_FLAGS);
EXPECT_TRUE(extension);
return extension;
}
std::string GetNotificationId(const std::string& extension_id) {
return monitor()->GetNotificationId(extension_id);
}
bool IsStorageNotificationEnabled(const std::string& extension_id) {
return monitor()->IsStorageNotificationEnabled(extension_id);
}
int64 GetNextStorageThreshold(const std::string& extension_id) {
return monitor()->GetNextStorageThreshold(extension_id);
}
void WriteBytesExpectingNotification(const Extension* extension,
int num_bytes) {
int64 previous_threshold = GetNextStorageThreshold(extension->id());
WriteBytes(extension, num_bytes, true);
EXPECT_GT(GetNextStorageThreshold(extension->id()), previous_threshold);
}
void WriteBytesNotExpectingNotification(const Extension* extension,
int num_bytes) {
WriteBytes(extension, num_bytes, false);
}
void SimulateUninstallDialogAccept() {
// Ensure the uninstall dialog was shown and fake an accept.
ASSERT_TRUE(monitor()->uninstall_dialog_.get());
monitor()->ExtensionUninstallAccepted();
}
private:
void InitStorageMonitor() {
storage_monitor_ = ExtensionStorageMonitor::Get(profile());
ASSERT_TRUE(storage_monitor_);
// Override thresholds so that we don't have to write a huge amount of data
// to trigger notifications in these tests.
storage_monitor_->enable_for_all_extensions_ = true;
storage_monitor_->initial_extension_threshold_ = kInitialUsageThreshold;
storage_monitor_->initial_ephemeral_threshold_ = kInitialUsageThreshold;
// To ensure storage events are dispatched from QuotaManager immediately.
storage_monitor_->observer_rate_ = base::TimeDelta();
}
// Write a number of bytes to persistent storage.
void WriteBytes(const Extension* extension,
int num_bytes,
bool expected_notification) {
ExtensionTestMessageListener launched_listener("launched", true);
ExtensionTestMessageListener write_complete_listener(
"write_complete", false);
NotificationObserver notification_observer(
GetNotificationId(extension->id()));
OpenApplication(AppLaunchParams(profile(), extension, LAUNCH_CONTAINER_NONE,
NEW_WINDOW, extensions::SOURCE_TEST));
ASSERT_TRUE(launched_listener.WaitUntilSatisfied());
// Instruct the app to write |num_bytes| of data.
launched_listener.Reply(base::IntToString(num_bytes));
ASSERT_TRUE(write_complete_listener.WaitUntilSatisfied());
if (expected_notification) {
EXPECT_TRUE(notification_observer.WaitForNotification());
} else {
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(notification_observer.HasReceivedNotification());
}
}
ExtensionStorageMonitor* storage_monitor_;
};
// Control - No notifications should be shown if usage remains under the
// threshold.
IN_PROC_BROWSER_TEST_F(ExtensionStorageMonitorTest, UnderThreshold) {
const Extension* extension = InitWriteDataApp();
ASSERT_TRUE(extension);
WriteBytesNotExpectingNotification(extension, 1);
}
// Ensure a notification is shown when usage reaches the first threshold.
IN_PROC_BROWSER_TEST_F(ExtensionStorageMonitorTest, ExceedInitialThreshold) {
const Extension* extension = InitWriteDataApp();
ASSERT_TRUE(extension);
WriteBytesExpectingNotification(extension, GetInitialExtensionThreshold());
}
// Ensure a notification is shown when usage immediately exceeds double the
// first threshold.
IN_PROC_BROWSER_TEST_F(ExtensionStorageMonitorTest, DoubleInitialThreshold) {
const Extension* extension = InitWriteDataApp();
ASSERT_TRUE(extension);
WriteBytesExpectingNotification(extension,
GetInitialExtensionThreshold() * 2);
}
// Ensure that notifications are not fired if the next threshold has not been
// reached.
IN_PROC_BROWSER_TEST_F(ExtensionStorageMonitorTest, ThrottleNotifications) {
const Extension* extension = InitWriteDataApp();
ASSERT_TRUE(extension);
// Exceed the first threshold.
WriteBytesExpectingNotification(extension, GetInitialExtensionThreshold());
// Stay within the next threshold.
WriteBytesNotExpectingNotification(extension, 1);
}
// Verify that notifications are disabled when the user clicks the action button
// in the notification.
IN_PROC_BROWSER_TEST_F(ExtensionStorageMonitorTest, UserDisabledNotifications) {
const Extension* extension = InitWriteDataApp();
ASSERT_TRUE(extension);
WriteBytesExpectingNotification(extension, GetInitialExtensionThreshold());
EXPECT_TRUE(IsStorageNotificationEnabled(extension->id()));
// Fake clicking the notification button to disable notifications.
message_center::MessageCenter::Get()->ClickOnNotificationButton(
GetNotificationId(extension->id()),
ExtensionStorageMonitor::BUTTON_DISABLE_NOTIFICATION);
EXPECT_FALSE(IsStorageNotificationEnabled(extension->id()));
// Expect to receive no further notifications when usage continues to
// increase.
int64 next_threshold = GetNextStorageThreshold(extension->id());
int64 next_data_size = next_threshold - GetInitialExtensionThreshold();
ASSERT_GT(next_data_size, 0);
WriteBytesNotExpectingNotification(extension, next_data_size);
}
// Verify that thresholds for ephemeral apps are reset when they are
// promoted to regular installed apps.
IN_PROC_BROWSER_TEST_F(ExtensionStorageMonitorTest, EphemeralAppLowUsage) {
const Extension* extension = InitWriteDataEphemeralApp();
ASSERT_TRUE(extension);
WriteBytesExpectingNotification(extension, GetInitialEphemeralThreshold());
// Store the number of bytes until the next threshold is reached.
int64 next_threshold = GetNextStorageThreshold(extension->id());
int64 next_data_size = next_threshold - GetInitialEphemeralThreshold();
ASSERT_GT(next_data_size, 0);
EXPECT_GE(GetInitialExtensionThreshold(), next_threshold);
// Promote the ephemeral app.
ExtensionService* service =
ExtensionSystem::Get(profile())->extension_service();
service->PromoteEphemeralApp(extension, false);
// The next threshold should now be equal to the initial threshold for
// extensions (which is higher than the initial threshold for ephemeral apps).
EXPECT_EQ(GetInitialExtensionThreshold(),
GetNextStorageThreshold(extension->id()));
// Since the threshold was increased, a notification should not be
// triggered.
WriteBytesNotExpectingNotification(extension, next_data_size);
}
// Verify that thresholds for ephemeral apps are not reset when they are
// promoted to regular installed apps if their usage is higher than the initial
// threshold for installed extensions.
IN_PROC_BROWSER_TEST_F(ExtensionStorageMonitorTest, EphemeralAppWithHighUsage) {
const Extension* extension = InitWriteDataEphemeralApp();
ASSERT_TRUE(extension);
WriteBytesExpectingNotification(extension, GetInitialExtensionThreshold());
int64 saved_next_threshold = GetNextStorageThreshold(extension->id());
// Promote the ephemeral app.
ExtensionService* service =
ExtensionSystem::Get(profile())->extension_service();
service->PromoteEphemeralApp(extension, false);
// The next threshold should not have changed.
EXPECT_EQ(saved_next_threshold, GetNextStorageThreshold(extension->id()));
}
// Ensure that monitoring is disabled for installed extensions if
// |enable_for_all_extensions_| is false. This test can be removed if monitoring
// is eventually enabled for all extensions.
IN_PROC_BROWSER_TEST_F(ExtensionStorageMonitorTest,
DisableForInstalledExtensions) {
DisableForInstalledExtensions();
const Extension* extension = InitWriteDataApp();
ASSERT_TRUE(extension);
WriteBytesNotExpectingNotification(extension, GetInitialExtensionThreshold());
}
// Verify that notifications are disabled when the user clicks the action button
// in the notification.
IN_PROC_BROWSER_TEST_F(ExtensionStorageMonitorTest, UninstallExtension) {
const Extension* extension = InitWriteDataApp();
ASSERT_TRUE(extension);
WriteBytesExpectingNotification(extension, GetInitialExtensionThreshold());
// Fake clicking the notification button to uninstall.
message_center::MessageCenter::Get()->ClickOnNotificationButton(
GetNotificationId(extension->id()),
ExtensionStorageMonitor::BUTTON_UNINSTALL);
// Also fake accepting the uninstall.
TestExtensionRegistryObserver observer(ExtensionRegistry::Get(profile()),
extension->id());
SimulateUninstallDialogAccept();
observer.WaitForExtensionUninstalled();
}
} // namespace extensions
|