OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/file_path.h" | 5 #include "base/file_path.h" |
6 #include "chrome/common/chrome_switches.h" | 6 #include "chrome/common/chrome_switches.h" |
7 #include "chrome/test/automation/browser_proxy.h" | 7 #include "chrome/test/automation/browser_proxy.h" |
8 #include "chrome/test/automation/tab_proxy.h" | 8 #include "chrome/test/automation/tab_proxy.h" |
9 #include "chrome/test/ui/ui_test.h" | 9 #include "chrome/test/ui/ui_test.h" |
10 #include "net/base/net_util.h" | 10 #include "net/base/net_util.h" |
11 #include "net/url_request/url_request_unittest.h" | 11 #include "net/url_request/url_request_unittest.h" |
12 | 12 |
13 class NotificationsPermissionTest : public UITest { | 13 class NotificationsPermissionTest : public UITest { |
14 public: | 14 public: |
15 NotificationsPermissionTest() { | 15 NotificationsPermissionTest() { |
16 dom_automation_enabled_ = true; | 16 dom_automation_enabled_ = true; |
17 show_window_ = true; | 17 show_window_ = true; |
18 } | 18 } |
19 }; | 19 }; |
20 | 20 |
21 TEST_F(NotificationsPermissionTest, FLAKY_TestUserGestureInfobar) { | 21 TEST_F(NotificationsPermissionTest, TestUserGestureInfobar) { |
22 const wchar_t kDocRoot[] = L"chrome/test/data"; | 22 const wchar_t kDocRoot[] = L"chrome/test/data"; |
23 scoped_refptr<HTTPTestServer> server = | 23 scoped_refptr<HTTPTestServer> server = |
24 HTTPTestServer::CreateServer(kDocRoot, NULL); | 24 HTTPTestServer::CreateServer(kDocRoot, NULL); |
25 ASSERT_TRUE(server.get() != NULL); | 25 ASSERT_TRUE(server.get() != NULL); |
26 | 26 |
27 scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0)); | 27 scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0)); |
28 ASSERT_TRUE(browser.get()); | 28 ASSERT_TRUE(browser.get()); |
29 scoped_refptr<TabProxy> tab(browser->GetActiveTab()); | 29 scoped_refptr<TabProxy> tab(browser->GetActiveTab()); |
30 ASSERT_TRUE(tab.get()); | 30 ASSERT_TRUE(tab.get()); |
31 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, | 31 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, |
(...skipping 28 matching lines...) Expand all Loading... |
60 // in no infobar. | 60 // in no infobar. |
61 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, | 61 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, |
62 tab->NavigateToURL(server->TestServerPageW( | 62 tab->NavigateToURL(server->TestServerPageW( |
63 L"files/notifications/notifications_request_inline.html"))); | 63 L"files/notifications/notifications_request_inline.html"))); |
64 WaitUntilTabCount(1); | 64 WaitUntilTabCount(1); |
65 | 65 |
66 int info_bar_count; | 66 int info_bar_count; |
67 ASSERT_TRUE(tab->GetInfoBarCount(&info_bar_count)); | 67 ASSERT_TRUE(tab->GetInfoBarCount(&info_bar_count)); |
68 EXPECT_EQ(0, info_bar_count); | 68 EXPECT_EQ(0, info_bar_count); |
69 } | 69 } |
OLD | NEW |