blob: 7951e4043fa2e07227e1b9f8a71e42720526b6ff [file] [log] [blame]
// Copyright 2013 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 "chrome/browser/background/background_mode_manager.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/extensions/extension_browsertest.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/test/base/ui_test_utils.h"
class TestBackgroundModeManager : public BackgroundModeManager {
public:
TestBackgroundModeManager(CommandLine* command_line,
ProfileInfoCache* profile_cache)
: BackgroundModeManager(command_line, profile_cache),
showed_background_app_installed_notification_for_test_(false) {}
virtual ~TestBackgroundModeManager() {}
virtual void DisplayAppInstalledNotification(
const extensions::Extension* extension) OVERRIDE {
showed_background_app_installed_notification_for_test_ = true;
}
bool showed_background_app_installed_notification_for_test() {
return showed_background_app_installed_notification_for_test_;
}
void set_showed_background_app_installed_notification_for_test(
bool showed) {
showed_background_app_installed_notification_for_test_ = showed;
}
private:
// Tracks if we have shown a "Background App Installed" notification to the
// user. Used for unit tests only.
bool showed_background_app_installed_notification_for_test_;
FRIEND_TEST_ALL_PREFIXES(BackgroundAppBrowserTest,
ReloadBackgroundApp);
DISALLOW_COPY_AND_ASSIGN(TestBackgroundModeManager);
};
class BackgroundAppBrowserTest: public ExtensionBrowserTest {};
// Tests that if we reload a background app, we don't get a popup bubble
// telling us that a new background app has been installed.
IN_PROC_BROWSER_TEST_F(BackgroundAppBrowserTest, ReloadBackgroundApp) {
// Pass this in to the browser test.
scoped_ptr<BackgroundModeManager> test_background_mode_manager(
new TestBackgroundModeManager(
CommandLine::ForCurrentProcess(),
&(g_browser_process->profile_manager()->GetProfileInfoCache())));
g_browser_process->set_background_mode_manager_for_test(
test_background_mode_manager.Pass());
TestBackgroundModeManager* manager =
reinterpret_cast<TestBackgroundModeManager*>(
g_browser_process->background_mode_manager());
// Load our background extension
ASSERT_FALSE(
manager->showed_background_app_installed_notification_for_test());
const extensions::Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("background_app"));
ASSERT_FALSE(extension == NULL);
// Set the test flag to not shown.
manager->set_showed_background_app_installed_notification_for_test(false);
// Reload our background extension
ReloadExtension(extension->id());
// Ensure that we did not see a "Background extension loaded" dialog.
EXPECT_FALSE(
manager->showed_background_app_installed_notification_for_test());
}