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

Side by Side Diff: chrome/browser/history/redirect_uitest.cc

Issue 6187002: Remove sleep_timeout_ms and fix all the callers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/errorpage_uitest.cc ('k') | chrome/browser/images_uitest.cc » ('j') | 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) 2010 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 // Navigates the browser to server and client redirect pages and makes sure 5 // Navigates the browser to server and client redirect pages and makes sure
6 // that the correct redirects are reflected in the history database. Errors 6 // that the correct redirects are reflected in the history database. Errors
7 // here might indicate that WebKit changed the calls our glue layer gets in 7 // here might indicate that WebKit changed the calls our glue layer gets in
8 // the case of redirects. It may also mean problems with the history system. 8 // the case of redirects. It may also mean problems with the history system.
9 9
10 #include "base/file_util.h" 10 #include "base/file_util.h"
11 #include "base/scoped_ptr.h" 11 #include "base/scoped_ptr.h"
12 #include "base/scoped_temp_dir.h" 12 #include "base/scoped_temp_dir.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/string16.h" 14 #include "base/string16.h"
15 #include "base/test/test_timeouts.h"
15 #include "base/threading/platform_thread.h" 16 #include "base/threading/platform_thread.h"
16 #include "base/utf_string_conversions.h" 17 #include "base/utf_string_conversions.h"
17 #include "chrome/browser/ui/view_ids.h" 18 #include "chrome/browser/ui/view_ids.h"
18 #include "chrome/test/automation/browser_proxy.h" 19 #include "chrome/test/automation/browser_proxy.h"
19 #include "chrome/test/automation/tab_proxy.h" 20 #include "chrome/test/automation/tab_proxy.h"
20 #include "chrome/test/automation/window_proxy.h" 21 #include "chrome/test/automation/window_proxy.h"
21 #include "chrome/test/ui/ui_test.h" 22 #include "chrome/test/ui/ui_test.h"
22 #include "net/base/net_util.h" 23 #include "net/base/net_util.h"
23 #include "net/test/test_server.h" 24 #include "net/test/test_server.h"
24 #include "views/event.h" 25 #include "views/event.h"
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 "server-redirect?" + next_to_last.spec()); 204 "server-redirect?" + next_to_last.spec());
204 GURL first_url = test_server_.GetURL( 205 GURL first_url = test_server_.GetURL(
205 "client-redirect?" + second_url.spec()); 206 "client-redirect?" + second_url.spec());
206 std::vector<GURL> redirects; 207 std::vector<GURL> redirects;
207 208
208 // We need the sleep for the client redirects, because it appears as two 209 // We need the sleep for the client redirects, because it appears as two
209 // page visits in the browser. 210 // page visits in the browser.
210 NavigateToURL(first_url); 211 NavigateToURL(first_url);
211 212
212 for (int i = 0; i < 10; ++i) { 213 for (int i = 0; i < 10; ++i) {
213 base::PlatformThread::Sleep(sleep_timeout_ms()); 214 base::PlatformThread::Sleep(TestTimeouts::action_timeout_ms());
214 scoped_refptr<TabProxy> tab_proxy(GetActiveTab()); 215 scoped_refptr<TabProxy> tab_proxy(GetActiveTab());
215 ASSERT_TRUE(tab_proxy.get()); 216 ASSERT_TRUE(tab_proxy.get());
216 ASSERT_TRUE(tab_proxy->GetRedirectsFrom(first_url, &redirects)); 217 ASSERT_TRUE(tab_proxy->GetRedirectsFrom(first_url, &redirects));
217 if (!redirects.empty()) 218 if (!redirects.empty())
218 break; 219 break;
219 } 220 }
220 221
221 ASSERT_EQ(3U, redirects.size()); 222 ASSERT_EQ(3U, redirects.size());
222 EXPECT_EQ(second_url.spec(), redirects[0].spec()); 223 EXPECT_EQ(second_url.spec(), redirects[0].spec());
223 EXPECT_EQ(next_to_last.spec(), redirects[1].spec()); 224 EXPECT_EQ(next_to_last.spec(), redirects[1].spec());
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 // We don't sleep here - the first navigation won't have been committed yet 310 // We don't sleep here - the first navigation won't have been committed yet
310 // because we told the server to wait a minute. This means the browser has 311 // because we told the server to wait a minute. This means the browser has
311 // started it's provisional load for the client redirect destination page but 312 // started it's provisional load for the client redirect destination page but
312 // hasn't completed. Our time is now! 313 // hasn't completed. Our time is now!
313 NavigateToURL(final_url); 314 NavigateToURL(final_url);
314 315
315 std::wstring tab_title; 316 std::wstring tab_title;
316 std::wstring final_url_title = UTF8ToWide("Title Of Awesomeness"); 317 std::wstring final_url_title = UTF8ToWide("Title Of Awesomeness");
317 // Wait till the final page has been loaded. 318 // Wait till the final page has been loaded.
318 for (int i = 0; i < 10; ++i) { 319 for (int i = 0; i < 10; ++i) {
319 base::PlatformThread::Sleep(sleep_timeout_ms()); 320 base::PlatformThread::Sleep(TestTimeouts::action_timeout_ms());
320 scoped_refptr<TabProxy> tab_proxy(GetActiveTab()); 321 scoped_refptr<TabProxy> tab_proxy(GetActiveTab());
321 ASSERT_TRUE(tab_proxy.get()); 322 ASSERT_TRUE(tab_proxy.get());
322 ASSERT_TRUE(tab_proxy->GetTabTitle(&tab_title)); 323 ASSERT_TRUE(tab_proxy->GetTabTitle(&tab_title));
323 if (tab_title == final_url_title) { 324 if (tab_title == final_url_title) {
324 ASSERT_TRUE(tab_proxy->GetRedirectsFrom(first_url, &redirects)); 325 ASSERT_TRUE(tab_proxy->GetRedirectsFrom(first_url, &redirects));
325 break; 326 break;
326 } 327 }
327 } 328 }
328 329
329 // Check to make sure the navigation did in fact take place and we are 330 // Check to make sure the navigation did in fact take place and we are
330 // at the expected page. 331 // at the expected page.
331 EXPECT_EQ(final_url_title, tab_title); 332 EXPECT_EQ(final_url_title, tab_title);
332 333
333 bool final_navigation_not_redirect = true; 334 bool final_navigation_not_redirect = true;
334 // Check to make sure our request for files/title2.html doesn't get flagged 335 // Check to make sure our request for files/title2.html doesn't get flagged
335 // as a client redirect from the first (/client-redirect?) page. 336 // as a client redirect from the first (/client-redirect?) page.
336 for (std::vector<GURL>::iterator it = redirects.begin(); 337 for (std::vector<GURL>::iterator it = redirects.begin();
337 it != redirects.end(); ++it) { 338 it != redirects.end(); ++it) {
338 if (final_url.spec() == it->spec()) { 339 if (final_url.spec() == it->spec()) {
339 final_navigation_not_redirect = false; 340 final_navigation_not_redirect = false;
340 break; 341 break;
341 } 342 }
342 } 343 }
343 EXPECT_TRUE(final_navigation_not_redirect); 344 EXPECT_TRUE(final_navigation_not_redirect);
344 } 345 }
345 346
346 } // namespace 347 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/errorpage_uitest.cc ('k') | chrome/browser/images_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698