// Copyright (c) 2010 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/ui/ui_test.h" #include "app/sql/connection.h" #include "app/sql/statement.h" #include "chrome/test/automation/tab_proxy.h" #include "chrome/test/automation/browser_proxy.h" #include "net/url_request/url_request_unittest.h" namespace { class MultipartResponseUITest : public UITest { }; // http://crbug.com/50060 #if defined(OS_MACOSX) #define MAYBE_SingleVisit DISABLED_SingleVisit #else #define MAYBE_SingleVisit SingleVisit #endif #if defined(NDEBUG) // http://code.google.com/p/chromium/issues/detail?id=37746 // Running this test only for release builds as it fails in debug test // runs TEST_F(MultipartResponseUITest, MAYBE_SingleVisit) { // Make sure that visiting a multipart/x-mixed-replace site only // creates one entry in the visits table. const wchar_t kDocRoot[] = L"chrome/test/data"; scoped_refptr server = HTTPTestServer::CreateServer(kDocRoot); ASSERT_TRUE(NULL != server.get()); scoped_refptr browser_proxy(automation()->GetBrowserWindow(0)); ASSERT_TRUE(browser_proxy.get()); scoped_refptr tab_proxy(browser_proxy->GetActiveTab()); ASSERT_TRUE(tab_proxy.get()); NavigateToURL(server->TestServerPage("multipart")); std::wstring title; EXPECT_TRUE(tab_proxy->GetTabTitle(&title)); EXPECT_EQ(L"page 9", title); CloseBrowserAndServer(); // The browser has shutdown now. Check the contents of the history // table. We should have only one visit for the URL even though it // had 10 parts. sql::Connection db; FilePath history = user_data_dir().AppendASCII("Default").AppendASCII("History"); ASSERT_TRUE(file_util::PathExists(history)); ASSERT_TRUE(db.Open(history)); std::string query( "SELECT COUNT(1) FROM visits, urls WHERE visits.url = urls.id" " AND urls.url LIKE 'http://localhost:%/multipart'"); { sql::Statement statement(db.GetUniqueStatement(query.c_str())); EXPECT_TRUE(statement); EXPECT_TRUE(statement.Step()); EXPECT_EQ(1, statement.ColumnInt(0)); } db.Close(); } #endif } // namespace