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.
5 #include "chrome/browser/external_protocol/external_protocol_handler.h"
7 #include "base/message_loop/message_loop.h"
8 #include "content/public/test/test_browser_thread.h"
9 #include "testing/gtest/include/gtest/gtest.h"
11 using content::BrowserThread
;
13 class FakeExternalProtocolHandlerWorker
14 : public ShellIntegration::DefaultProtocolClientWorker
{
16 FakeExternalProtocolHandlerWorker(
17 ShellIntegration::DefaultWebClientObserver
* observer
,
18 const std::string
& protocol
,
19 ShellIntegration::DefaultWebClientState os_state
)
20 : ShellIntegration::DefaultProtocolClientWorker(observer
, protocol
),
21 os_state_(os_state
) {}
24 virtual ~FakeExternalProtocolHandlerWorker() {}
26 virtual ShellIntegration::DefaultWebClientState
CheckIsDefault() OVERRIDE
{
30 virtual bool SetAsDefault(bool interactive_permitted
) OVERRIDE
{
34 ShellIntegration::DefaultWebClientState os_state_
;
37 class FakeExternalProtocolHandlerDelegate
38 : public ExternalProtocolHandler::Delegate
{
40 FakeExternalProtocolHandlerDelegate()
41 : block_state_(ExternalProtocolHandler::BLOCK
),
42 os_state_(ShellIntegration::UNKNOWN_DEFAULT
),
45 has_blocked_ (false) {}
47 virtual ShellIntegration::DefaultProtocolClientWorker
* CreateShellWorker(
48 ShellIntegration::DefaultWebClientObserver
* observer
,
49 const std::string
& protocol
) OVERRIDE
{
50 return new FakeExternalProtocolHandlerWorker(observer
, protocol
, os_state_
);
53 virtual ExternalProtocolHandler::BlockState
GetBlockState(
54 const std::string
& scheme
) OVERRIDE
{ return block_state_
; }
56 virtual void BlockRequest() OVERRIDE
{
57 ASSERT_TRUE(block_state_
== ExternalProtocolHandler::BLOCK
||
58 os_state_
== ShellIntegration::IS_DEFAULT
);
62 virtual void RunExternalProtocolDialog(const GURL
& url
,
63 int render_process_host_id
,
64 int routing_id
) OVERRIDE
{
65 ASSERT_EQ(block_state_
, ExternalProtocolHandler::UNKNOWN
);
66 ASSERT_NE(os_state_
, ShellIntegration::IS_DEFAULT
);
70 virtual void LaunchUrlWithoutSecurityCheck(const GURL
& url
) OVERRIDE
{
71 ASSERT_EQ(block_state_
, ExternalProtocolHandler::DONT_BLOCK
);
72 ASSERT_NE(os_state_
, ShellIntegration::IS_DEFAULT
);
76 virtual void FinishedProcessingCheck() OVERRIDE
{
77 base::MessageLoop::current()->Quit();
80 void set_os_state(ShellIntegration::DefaultWebClientState value
) {
84 void set_block_state(ExternalProtocolHandler::BlockState value
) {
88 bool has_launched() { return has_launched_
; }
89 bool has_prompted() { return has_prompted_
; }
90 bool has_blocked() { return has_blocked_
; }
93 ExternalProtocolHandler::BlockState block_state_
;
94 ShellIntegration::DefaultWebClientState os_state_
;
100 class ExternalProtocolHandlerTest
: public testing::Test
{
102 ExternalProtocolHandlerTest()
103 : ui_thread_(BrowserThread::UI
, base::MessageLoop::current()),
104 file_thread_(BrowserThread::FILE) {}
106 virtual void SetUp() {
107 file_thread_
.Start();
110 virtual void TearDown() {
111 // Ensure that g_accept_requests gets set back to true after test execution.
112 ExternalProtocolHandler::PermitLaunchUrl();
115 void DoTest(ExternalProtocolHandler::BlockState block_state
,
116 ShellIntegration::DefaultWebClientState os_state
,
117 bool should_prompt
, bool should_launch
, bool should_block
) {
118 GURL
url("mailto:test@test.com");
119 ASSERT_FALSE(delegate_
.has_prompted());
120 ASSERT_FALSE(delegate_
.has_launched());
121 ASSERT_FALSE(delegate_
.has_blocked());
123 delegate_
.set_block_state(block_state
);
124 delegate_
.set_os_state(os_state
);
125 ExternalProtocolHandler::LaunchUrlWithDelegate(url
, 0, 0, &delegate_
);
126 if (block_state
!= ExternalProtocolHandler::BLOCK
)
127 base::MessageLoop::current()->Run();
129 ASSERT_EQ(should_prompt
, delegate_
.has_prompted());
130 ASSERT_EQ(should_launch
, delegate_
.has_launched());
131 ASSERT_EQ(should_block
, delegate_
.has_blocked());
134 base::MessageLoopForUI ui_message_loop_
;
135 content::TestBrowserThread ui_thread_
;
136 content::TestBrowserThread file_thread_
;
138 FakeExternalProtocolHandlerDelegate delegate_
;
141 TEST_F(ExternalProtocolHandlerTest
, TestLaunchSchemeBlockedChromeDefault
) {
142 DoTest(ExternalProtocolHandler::BLOCK
,
143 ShellIntegration::IS_DEFAULT
,
147 TEST_F(ExternalProtocolHandlerTest
, TestLaunchSchemeBlockedChromeNotDefault
) {
148 DoTest(ExternalProtocolHandler::BLOCK
,
149 ShellIntegration::NOT_DEFAULT
,
153 TEST_F(ExternalProtocolHandlerTest
, TestLaunchSchemeBlockedChromeUnknown
) {
154 DoTest(ExternalProtocolHandler::BLOCK
,
155 ShellIntegration::UNKNOWN_DEFAULT
,
159 TEST_F(ExternalProtocolHandlerTest
, TestLaunchSchemeUnBlockedChromeDefault
) {
160 DoTest(ExternalProtocolHandler::DONT_BLOCK
,
161 ShellIntegration::IS_DEFAULT
,
165 TEST_F(ExternalProtocolHandlerTest
, TestLaunchSchemeUnBlockedChromeNotDefault
) {
166 DoTest(ExternalProtocolHandler::DONT_BLOCK
,
167 ShellIntegration::NOT_DEFAULT
,
171 TEST_F(ExternalProtocolHandlerTest
, TestLaunchSchemeUnBlockedChromeUnknown
) {
172 DoTest(ExternalProtocolHandler::DONT_BLOCK
,
173 ShellIntegration::UNKNOWN_DEFAULT
,
177 TEST_F(ExternalProtocolHandlerTest
, TestLaunchSchemeUnknownChromeDefault
) {
178 DoTest(ExternalProtocolHandler::UNKNOWN
,
179 ShellIntegration::IS_DEFAULT
,
183 TEST_F(ExternalProtocolHandlerTest
, TestLaunchSchemeUnknownChromeNotDefault
) {
184 DoTest(ExternalProtocolHandler::UNKNOWN
,
185 ShellIntegration::NOT_DEFAULT
,
189 TEST_F(ExternalProtocolHandlerTest
, TestLaunchSchemeUnknownChromeUnknown
) {
190 DoTest(ExternalProtocolHandler::UNKNOWN
,
191 ShellIntegration::UNKNOWN_DEFAULT
,