Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(986)

Unified Diff: chrome/browser/extensions/notifications_apitest.cc

Issue 15025002: Remove ENABLE_MESSAGE_CENTER (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing static initializer Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/notifications_apitest.cc
diff --git a/chrome/browser/extensions/notifications_apitest.cc b/chrome/browser/extensions/notifications_apitest.cc
index a1a8b39fe9be1977b97dd314a064378c1c74bca9..106d276dc9453c92a1bf774c82f5a9c555a74967 100644
--- a/chrome/browser/extensions/notifications_apitest.cc
+++ b/chrome/browser/extensions/notifications_apitest.cc
@@ -8,9 +8,6 @@
#include "chrome/browser/notifications/desktop_notification_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
-
-#if defined(ENABLE_MESSAGE_CENTER)
-
#include "chrome/browser/extensions/extension_process_manager.h"
#include "chrome/browser/extensions/lazy_background_page_test_util.h"
#include "chrome/common/chrome_switches.h"
@@ -18,28 +15,10 @@
#include "ui/message_center/message_center_switches.h"
#include "ui/message_center/message_center_util.h"
-class RichWebkitNotificationTest : public ExtensionApiTest {
+class NotificationIdleTest : public ExtensionApiTest {
protected:
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
ExtensionApiTest::SetUpCommandLine(command_line);
- command_line->AppendSwitch(
- message_center::switches::kEnableRichNotifications);
- }
-};
-
-class DisabledRichWebkitNotificationTest : public ExtensionApiTest {
- protected:
- virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
- ExtensionApiTest::SetUpCommandLine(command_line);
- command_line->AppendSwitch(
- message_center::switches::kDisableRichNotifications);
- }
-};
-
-class NotificationIdleTest : public RichWebkitNotificationTest {
- protected:
- virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
- RichWebkitNotificationTest::SetUpCommandLine(command_line);
command_line->AppendSwitchASCII(switches::kEventPageIdleTime, "1");
command_line->AppendSwitchASCII(switches::kEventPageSuspendingTime, "1");
@@ -56,51 +35,44 @@ class NotificationIdleTest : public RichWebkitNotificationTest {
}
};
-#endif
-
// TODO(kbr): remove: http://crbug.com/222296
#if defined(OS_MACOSX)
#import "base/mac/mac_util.h"
#endif
IN_PROC_BROWSER_TEST_F(ExtensionApiTest, NotificationsNoPermission) {
-#if defined(OS_LINUX) && defined(TOOLKIT_VIEWS)
- // Notifications not supported on linux/views yet.
-#else
ASSERT_TRUE(RunExtensionTest("notifications/has_not_permission")) << message_;
-#endif
}
-#if defined(ENABLE_MESSAGE_CENTER)
-IN_PROC_BROWSER_TEST_F(RichWebkitNotificationTest, NoHTMLNotifications) {
+// This test verifies that on RichNotification-enabled platforms HTML
+// notificaitons are disabled.
+#if defined(RUN_MESSAGE_CENTER_TESTS)
+#define MAYBE_NoHTMLNotifications NoHTMLNotifications
+#else
+#define MAYBE_NoHTMLNotifications DISABLED_NoHTMLNotifications
+#endif
+IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_NoHTMLNotifications) {
+ ASSERT_TRUE(message_center::IsRichNotificationEnabled());
ASSERT_TRUE(RunExtensionTest("notifications/no_html")) << message_;
}
-#if !defined(OS_CHROMEOS)
-// HTML notifications fail on ChromeOS whether or not rich notifications
-// are enabled.
-IN_PROC_BROWSER_TEST_F(DisabledRichWebkitNotificationTest,
- HasHTMLNotifications) {
- ASSERT_FALSE(message_center::IsRichNotificationEnabled());
- ASSERT_TRUE(RunExtensionTest("notifications/has_permission_manifest"))
- << message_;
-}
+// This test verifies that on platforms other then RichNotification-enabled
+// HTML notificaitons are enabled.
+#if defined(RUN_MESSAGE_CENTER_TESTS)
+#define MAYBE_HasHTMLNotificationsAndManifestPermission \
+ DISABLED_HasHTMLNotificationsAndManifestPermission
+#else
+#define MAYBE_HasHTMLNotificationsAndManifestPermission \
+ HasHTMLNotificationsAndManifestPermission
#endif
-
-#elif !defined(OS_LINUX) || !defined(TOOLKIT_VIEWS)
-// Notifications not supported on linux/views yet.
IN_PROC_BROWSER_TEST_F(ExtensionApiTest,
- NotificationsHasPermissionManifest) {
+ MAYBE_HasHTMLNotificationsAndManifestPermission) {
+ ASSERT_FALSE(message_center::IsRichNotificationEnabled());
ASSERT_TRUE(RunExtensionTest("notifications/has_permission_manifest"))
<< message_;
}
-#endif
IN_PROC_BROWSER_TEST_F(ExtensionApiTest, NotificationsHasPermission) {
-#if defined(OS_LINUX) && defined(TOOLKIT_VIEWS)
- // Notifications not supported on linux/views yet.
-#else
-
#if defined(OS_MACOSX)
// TODO(kbr): re-enable: http://crbug.com/222296
if (base::mac::IsOSMountainLionOrLater())
@@ -112,11 +84,16 @@ IN_PROC_BROWSER_TEST_F(ExtensionApiTest, NotificationsHasPermission) {
"chrome-extension://peoadpeiejnhkmpaakpnompolbglelel"));
ASSERT_TRUE(RunExtensionTest("notifications/has_permission_prefs"))
<< message_;
-#endif
}
+
+ // MessaceCenter-specific test.
+#if defined(RUN_MESSAGE_CENTER_TESTS)
+#define MAYBE_NotificationsAllowUnload NotificationsAllowUnload
+#else
+#define MAYBE_NotificationsAllowUnload DISABLED_NotificationsAllowUnload
+#endif
-#if defined(ENABLE_MESSAGE_CENTER)
-IN_PROC_BROWSER_TEST_F(NotificationIdleTest, NotificationsAllowUnload) {
+IN_PROC_BROWSER_TEST_F(NotificationIdleTest, MAYBE_NotificationsAllowUnload) {
const extensions::Extension* extension =
LoadExtensionAndWait("notifications/api/unload");
ASSERT_TRUE(extension) << message_;
@@ -126,4 +103,3 @@ IN_PROC_BROWSER_TEST_F(NotificationIdleTest, NotificationsAllowUnload) {
extensions::ExtensionSystem::Get(profile())->process_manager();
EXPECT_FALSE(pm->GetBackgroundHostForExtension(last_loaded_extension_id_));
}
-#endif

Powered by Google App Engine
This is Rietveld 408576698