diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-15 00:59:16 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-15 00:59:16 +0000 |
commit | f3ec774a2c177d3c6845553d3bf9735a7b8a5907 (patch) | |
tree | ed09ccf69300383bd4b2e8ac7c8b9d1bdeead07b /chrome/browser/tab_contents/view_source_uitest.cc | |
parent | bb515eda39129537a089a062c3db3152e63f24d9 (diff) | |
download | chromium_src-f3ec774a2c177d3c6845553d3bf9735a7b8a5907.zip chromium_src-f3ec774a2c177d3c6845553d3bf9735a7b8a5907.tar.gz chromium_src-f3ec774a2c177d3c6845553d3bf9735a7b8a5907.tar.bz2 |
Move a bunch of TabContents related files into a tab_contents subdir
Review URL: http://codereview.chromium.org/18250
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/view_source_uitest.cc')
-rw-r--r-- | chrome/browser/tab_contents/view_source_uitest.cc | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/chrome/browser/tab_contents/view_source_uitest.cc b/chrome/browser/tab_contents/view_source_uitest.cc new file mode 100644 index 0000000..73cc875 --- /dev/null +++ b/chrome/browser/tab_contents/view_source_uitest.cc @@ -0,0 +1,110 @@ +// Copyright (c) 2006-2008 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/app/chrome_dll_resource.h" +#include "chrome/test/automation/browser_proxy.h" +#include "chrome/test/automation/tab_proxy.h" +#include "chrome/test/ui/ui_test.h" +#include "net/url_request/url_request_unittest.h" + +namespace { + +const wchar_t kDocRoot[] = L"chrome/test/data"; + +class ViewSourceTest : public UITest { + protected: + ViewSourceTest() : UITest() { + test_html_ = L"files/viewsource/test.html"; + } + + bool IsPageMenuCommandEnabled(int command) { + scoped_ptr<BrowserProxy> window_proxy(automation()->GetBrowserWindow(0)); + if (!window_proxy.get()) + return false; + + bool timed_out; + return window_proxy->IsPageMenuCommandEnabledWithTimeout( + command, 5000, &timed_out) && !timed_out; + } + + protected: + std::wstring test_html_; +}; + +} // namespace + +// This test renders a page in view-source and then checks to see if a cookie +// set in the html was set successfully (it shouldn't because we rendered the +// page in view source) +TEST_F(ViewSourceTest, DoesBrowserRenderInViewSource) { + scoped_refptr<HTTPTestServer> server = + HTTPTestServer::CreateServer(kDocRoot); + ASSERT_TRUE(NULL != server.get()); + std::string cookie = "viewsource_cookie"; + std::string cookie_data = "foo"; + + // First we navigate to our view-source test page + GURL url = server->TestServerPageW(test_html_); + url = GURL("view-source:" + url.spec()); + scoped_ptr<TabProxy> tab(GetActiveTab()); + tab->NavigateToURL(url); + Sleep(kWaitForActionMsec); + + // Try to retrieve the cookie that the page sets + // It should not be there (because we are in view-source mode + std::string cookie_found; + tab->GetCookieByName(url, cookie, &cookie_found); + EXPECT_NE(cookie_data, cookie_found); +} + +// This test renders a page normally and then renders the same page in +// view-source mode. This is done since we had a problem at one point during +// implementation of the view-source: prefix being consumed (removed from the +// URL) if the URL was not changed (apart from adding the view-source prefix) +TEST_F(ViewSourceTest, DoesBrowserConsumeViewSourcePrefix) { + scoped_refptr<HTTPTestServer> server = + HTTPTestServer::CreateServer(kDocRoot); + ASSERT_TRUE(NULL != server.get()); + + // First we navigate to google.html + GURL url = server->TestServerPageW(test_html_); + NavigateToURL(url); + + // Then we navigate to the SAME url but with the view-source: prefix + GURL url_viewsource = GURL("view-source:" + url.spec()); + NavigateToURL(url_viewsource); + + // The URL should still be prefixed with view-source: + EXPECT_EQ(url_viewsource.spec(), GetActiveTabURL().spec()); +} + +// Make sure that when looking at the actual page, we can select +// "View Source" from the Page menu. +TEST_F(ViewSourceTest, ViewSourceInPageMenuEnabledOnANormalPage) { + scoped_refptr<HTTPTestServer> server = + HTTPTestServer::CreateServer(kDocRoot); + ASSERT_TRUE(NULL != server.get()); + + // First we navigate to google.html + GURL url = server->TestServerPageW(test_html_); + NavigateToURL(url); + + EXPECT_TRUE(IsPageMenuCommandEnabled(IDC_VIEW_SOURCE)); +} + +// Make sure that when looking at the page source, we can't select +// "View Source" from the Page menu. +TEST_F(ViewSourceTest, ViewSourceInPageMenuDisabledWhileViewingSource) { + scoped_refptr<HTTPTestServer> server = + HTTPTestServer::CreateServer(kDocRoot); + ASSERT_TRUE(NULL != server.get()); + + // First we navigate to google.html + GURL url = server->TestServerPageW(test_html_); + GURL url_viewsource = GURL("view-source:" + url.spec()); + NavigateToURL(url_viewsource); + + EXPECT_FALSE(IsPageMenuCommandEnabled(IDC_VIEW_SOURCE)); +} + |