protocol_handler_registry_browsertest.cc revision 5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <string>
6
7#include "base/memory/scoped_ptr.h"
8#include "base/strings/string16.h"
9#include "base/strings/utf_string_conversions.h"
10#include "chrome/app/chrome_command_ids.h"
11#include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h"
12#include "chrome/browser/tab_contents/render_view_context_menu.h"
13#include "chrome/browser/ui/browser.h"
14#include "chrome/browser/ui/tabs/tab_strip_model.h"
15#include "chrome/test/base/in_process_browser_test.h"
16#include "chrome/test/base/ui_test_utils.h"
17#include "content/public/browser/navigation_controller.h"
18#include "content/public/browser/navigation_entry.h"
19#include "content/public/browser/web_contents.h"
20#include "third_party/WebKit/public/web/WebContextMenuData.h"
21
22using content::WebContents;
23
24namespace {
25
26class TestRenderViewContextMenu : public RenderViewContextMenu {
27 public:
28  TestRenderViewContextMenu(content::RenderFrameHost* render_frame_host,
29                            content::ContextMenuParams params)
30      : RenderViewContextMenu(render_frame_host, params) { }
31
32  virtual void PlatformInit() OVERRIDE { }
33  virtual void PlatformCancel() OVERRIDE { }
34  virtual bool GetAcceleratorForCommandId(
35      int command_id,
36      ui::Accelerator* accelerator) OVERRIDE {
37    return false;
38  }
39
40  bool IsItemPresent(int command_id) {
41    return menu_model_.GetIndexOfCommandId(command_id) != -1;
42  }
43};
44
45}  // namespace
46
47class RegisterProtocolHandlerBrowserTest : public InProcessBrowserTest {
48 public:
49  RegisterProtocolHandlerBrowserTest() { }
50
51  TestRenderViewContextMenu* CreateContextMenu(GURL url) {
52    content::ContextMenuParams params;
53    params.media_type = blink::WebContextMenuData::MediaTypeNone;
54    params.link_url = url;
55    params.unfiltered_link_url = url;
56    WebContents* web_contents =
57        browser()->tab_strip_model()->GetActiveWebContents();
58    params.page_url = web_contents->GetController().GetActiveEntry()->GetURL();
59#if defined(OS_MACOSX)
60    params.writing_direction_default = 0;
61    params.writing_direction_left_to_right = 0;
62    params.writing_direction_right_to_left = 0;
63#endif  // OS_MACOSX
64    TestRenderViewContextMenu* menu = new TestRenderViewContextMenu(
65        browser()->tab_strip_model()->GetActiveWebContents()->GetMainFrame(),
66        params);
67    menu->Init();
68    return menu;
69  }
70
71  void AddProtocolHandler(const std::string& protocol,
72                          const GURL& url,
73                          const base::string16& title) {
74    ProtocolHandler handler = ProtocolHandler::CreateProtocolHandler(
75          protocol, url, title);
76    ProtocolHandlerRegistry* registry =
77        ProtocolHandlerRegistryFactory::GetForProfile(browser()->profile());
78    // Fake that this registration is happening on profile startup. Otherwise
79    // it'll try to register with the OS, which causes DCHECKs on Windows when
80    // running as admin on Windows 7.
81    registry->is_loading_ = true;
82    registry->OnAcceptRegisterProtocolHandler(handler);
83    registry->is_loading_ = false;
84    ASSERT_TRUE(registry->IsHandledProtocol(protocol));
85  }
86};
87
88IN_PROC_BROWSER_TEST_F(RegisterProtocolHandlerBrowserTest,
89    ContextMenuEntryAppearsForHandledUrls) {
90  scoped_ptr<TestRenderViewContextMenu> menu(
91      CreateContextMenu(GURL("http://www.google.com/")));
92  ASSERT_FALSE(menu->IsItemPresent(IDC_CONTENT_CONTEXT_OPENLINKWITH));
93
94  AddProtocolHandler(std::string("web+search"),
95                     GURL("http://www.google.com/%s"),
96                     base::UTF8ToUTF16(std::string("Test handler")));
97  GURL url("web+search:testing");
98  ProtocolHandlerRegistry* registry =
99      ProtocolHandlerRegistryFactory::GetForProfile(browser()->profile());
100  ASSERT_EQ(1u, registry->GetHandlersFor(url.scheme()).size());
101  menu.reset(CreateContextMenu(url));
102  ASSERT_TRUE(menu->IsItemPresent(IDC_CONTENT_CONTEXT_OPENLINKWITH));
103}
104
105IN_PROC_BROWSER_TEST_F(RegisterProtocolHandlerBrowserTest, CustomHandler) {
106  ASSERT_TRUE(test_server()->Start());
107  GURL handler_url = test_server()->GetURL("files/custom_handler_foo.html");
108  AddProtocolHandler("foo", handler_url,
109                     base::UTF8ToUTF16(std::string("Test foo Handler")));
110
111  ui_test_utils::NavigateToURL(browser(), GURL("foo:test"));
112
113  ASSERT_EQ(handler_url,
114            browser()->tab_strip_model()->GetActiveWebContents()->GetURL());
115}
116