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

Unified Diff: chrome/browser/net/load_timing_observer_uitest.cc

Issue 10026001: Convert LoadTimingObserver ui_test to be a browser_test. I'm renabling it in the process to see if … (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « chrome/browser/net/load_timing_observer_browsertest.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/load_timing_observer_uitest.cc
===================================================================
--- chrome/browser/net/load_timing_observer_uitest.cc (revision 131202)
+++ chrome/browser/net/load_timing_observer_uitest.cc (working copy)
@@ -1,44 +0,0 @@
-// Copyright (c) 2012 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/test/automation/tab_proxy.h"
-#include "chrome/test/ui/ui_test.h"
-#include "googleurl/src/gurl.h"
-#include "net/test/test_server.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-class LoadTimingObserverUITest : public UITest {
- public:
- LoadTimingObserverUITest()
- : http_server_(net::TestServer::TYPE_HTTP,
- net::TestServer::kLocalhost,
- FilePath()) {
- dom_automation_enabled_ = true;
- }
-
- protected:
- net::TestServer http_server_;
-};
-
-// http://crbug.com/102030
-// http://crbug.com/114390
-TEST_F(LoadTimingObserverUITest, DISABLED_CacheHitAfterRedirect) {
- ASSERT_TRUE(http_server_.Start());
- GURL cached_page = http_server_.GetURL("cachetime");
- std::string redirect = "server-redirect?" + cached_page.spec();
- NavigateToURL(cached_page);
- NavigateToURL(http_server_.GetURL(redirect));
- scoped_refptr<TabProxy> tab_proxy = GetActiveTab();
- int response_start = 0;
- int response_end = 0;
- ASSERT_TRUE(tab_proxy->ExecuteAndExtractInt(
- L"", L"window.domAutomationController.send("
- L"window.performance.timing.responseStart - "
- L"window.performance.timing.navigationStart)", &response_start));
- ASSERT_TRUE(tab_proxy->ExecuteAndExtractInt(
- L"", L"window.domAutomationController.send("
- L"window.performance.timing.responseEnd - "
- L"window.performance.timing.navigationStart)", &response_end));
- EXPECT_LE(response_start, response_end);
-}
« no previous file with comments | « chrome/browser/net/load_timing_observer_browsertest.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698