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

Side by Side Diff: chrome/browser/collected_cookies_uitest.cc

Issue 8836006: Re-enable collected cookies uitest on windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <string> 5 #include <string>
6 6
7 #include "chrome/app/chrome_command_ids.h" 7 #include "chrome/app/chrome_command_ids.h"
8 #include "chrome/browser/net/url_fixer_upper.h" 8 #include "chrome/browser/net/url_fixer_upper.h"
9 #include "chrome/common/url_constants.h" 9 #include "chrome/common/url_constants.h"
10 #include "chrome/test/automation/automation_proxy.h" 10 #include "chrome/test/automation/automation_proxy.h"
11 #include "chrome/test/automation/browser_proxy.h" 11 #include "chrome/test/automation/browser_proxy.h"
12 #include "chrome/test/automation/tab_proxy.h" 12 #include "chrome/test/automation/tab_proxy.h"
13 #include "chrome/test/ui/ui_test.h" 13 #include "chrome/test/ui/ui_test.h"
14 #include "net/test/test_server.h" 14 #include "net/test/test_server.h"
15 15
16 namespace { 16 namespace {
17 17
18 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data"); 18 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data");
19 19
20 } // namespace 20 } // namespace
21 21
22 typedef UITest CollectedCookiesTest; 22 typedef UITest CollectedCookiesTest;
23 23
24 // Crashing on Windows, see http://crbug.com/79331 24 TEST_F(CollectedCookiesTest, DoubleDisplay) {
25 #if defined(OS_WIN)
26 #define MAYBE_DoubleDisplay DISABLED_DoubleDisplay
27 #else
28 #define MAYBE_DoubleDisplay DoubleDisplay
29 #endif
30 TEST_F(CollectedCookiesTest, MAYBE_DoubleDisplay) {
31 net::TestServer test_server(net::TestServer::TYPE_HTTP, FilePath(kDocRoot)); 25 net::TestServer test_server(net::TestServer::TYPE_HTTP, FilePath(kDocRoot));
32 ASSERT_TRUE(test_server.Start()); 26 ASSERT_TRUE(test_server.Start());
33 27
34 scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0)); 28 scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));
35 ASSERT_TRUE(browser.get()); 29 ASSERT_TRUE(browser.get());
36 30
37 scoped_refptr<TabProxy> tab(browser->GetTab(0)); 31 scoped_refptr<TabProxy> tab(browser->GetTab(0));
38 ASSERT_TRUE(tab.get()); 32 ASSERT_TRUE(tab.get());
39 33
40 // Disable cookies. 34 // Disable cookies.
41 ASSERT_TRUE(browser->SetDefaultContentSetting(CONTENT_SETTINGS_TYPE_COOKIES, 35 ASSERT_TRUE(browser->SetDefaultContentSetting(CONTENT_SETTINGS_TYPE_COOKIES,
42 CONTENT_SETTING_BLOCK)); 36 CONTENT_SETTING_BLOCK));
43 37
44 // Load a page with cookies. 38 // Load a page with cookies.
45 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/cookie1.html"))); 39 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/cookie1.html")));
46 40
47 // Click on the info link twice. 41 // Click on the info link twice.
48 ASSERT_TRUE(tab->ShowCollectedCookiesDialog()); 42 ASSERT_TRUE(tab->ShowCollectedCookiesDialog());
49 ASSERT_TRUE(tab->ShowCollectedCookiesDialog()); 43 ASSERT_TRUE(tab->ShowCollectedCookiesDialog());
50 } 44 }
51 45
52 // Crashing on Windows, see http://crbug.com/79331 46 TEST_F(CollectedCookiesTest, NavigateAway) {
53 #if defined(OS_WIN)
54 #define MAYBE_NavigateAway DISABLED_NavigateAway
55 #else
56 #define MAYBE_NavigateAway NavigateAway
57 #endif
58 TEST_F(CollectedCookiesTest, MAYBE_NavigateAway) {
59 net::TestServer test_server(net::TestServer::TYPE_HTTP, FilePath(kDocRoot)); 47 net::TestServer test_server(net::TestServer::TYPE_HTTP, FilePath(kDocRoot));
60 ASSERT_TRUE(test_server.Start()); 48 ASSERT_TRUE(test_server.Start());
61 49
62 scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0)); 50 scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));
63 ASSERT_TRUE(browser.get()); 51 ASSERT_TRUE(browser.get());
64 52
65 scoped_refptr<TabProxy> tab(browser->GetTab(0)); 53 scoped_refptr<TabProxy> tab(browser->GetTab(0));
66 ASSERT_TRUE(tab.get()); 54 ASSERT_TRUE(tab.get());
67 55
68 // Disable cookies. 56 // Disable cookies.
69 ASSERT_TRUE(browser->SetDefaultContentSetting(CONTENT_SETTINGS_TYPE_COOKIES, 57 ASSERT_TRUE(browser->SetDefaultContentSetting(CONTENT_SETTINGS_TYPE_COOKIES,
70 CONTENT_SETTING_BLOCK)); 58 CONTENT_SETTING_BLOCK));
71 59
72 // Load a page with cookies. 60 // Load a page with cookies.
73 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/cookie1.html"))); 61 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/cookie1.html")));
74 62
75 // Click on the info link. 63 // Click on the info link.
76 ASSERT_TRUE(tab->ShowCollectedCookiesDialog()); 64 ASSERT_TRUE(tab->ShowCollectedCookiesDialog());
77 65
78 // Navigate to another page. 66 // Navigate to another page.
79 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/cookie2.html"))); 67 ASSERT_TRUE(tab->NavigateToURL(test_server.GetURL("files/cookie2.html")));
80 } 68 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698