OLD | NEW |
---|---|
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/test/in_process_browser_test.h" | 5 #include "chrome/test/in_process_browser_test.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "chrome/browser/browser.h" | 10 #include "chrome/browser/browser.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
105 file_util::AppendToPath(&renderer_path, | 105 file_util::AppendToPath(&renderer_path, |
106 chrome::kBrowserProcessExecutableName); | 106 chrome::kBrowserProcessExecutableName); |
107 command_line->AppendSwitchWithValue(switches::kRendererPath, renderer_path); | 107 command_line->AppendSwitchWithValue(switches::kRendererPath, renderer_path); |
108 | 108 |
109 sandbox::SandboxInterfaceInfo sandbox_info = {0}; | 109 sandbox::SandboxInterfaceInfo sandbox_info = {0}; |
110 SandboxInitWrapper sandbox_wrapper; | 110 SandboxInitWrapper sandbox_wrapper; |
111 MainFunctionParams params(*command_line, sandbox_wrapper, NULL); | 111 MainFunctionParams params(*command_line, sandbox_wrapper, NULL); |
112 params.ui_task = | 112 params.ui_task = |
113 NewRunnableMethod(this, &InProcessBrowserTest::RunTestOnMainThreadLoop); | 113 NewRunnableMethod(this, &InProcessBrowserTest::RunTestOnMainThreadLoop); |
114 | 114 |
115 // TODO(sky): Don't make a real dns lookup here or simulate a failing | |
116 // lookup. But if it's really needed then remove the TODO. | |
117 scoped_refptr<net::RuleBasedHostMapper> host_mapper( | 115 scoped_refptr<net::RuleBasedHostMapper> host_mapper( |
118 new net::RuleBasedHostMapper()); | 116 new net::RuleBasedHostMapper()); |
117 // TODO(sky): Don't make a real dns lookup here or simulate a failing | |
118 // lookup. | |
119 host_mapper->AllowDirectLookup("*.google.com"); | 119 host_mapper->AllowDirectLookup("*.google.com"); |
120 net::ScopedHostMapper scoped_host_mapper; | 120 // See http://en.wikipedia.org/wiki/Web_Proxy_Autodiscovery_Protocol |
121 scoped_host_mapper.Init(host_mapper.get()); | 121 // We don't want to depend on it in test code. |
Finnur
2009/04/06 19:32:42
nit: depend? Is that the right word to use here?
| |
122 host_mapper->AddSimulatedFailure("wpad"); | |
123 net::ScopedHostMapper scoped_host_mapper(host_mapper.get()); | |
122 BrowserMain(params); | 124 BrowserMain(params); |
123 } | 125 } |
124 | 126 |
125 void InProcessBrowserTest::TearDown() { | 127 void InProcessBrowserTest::TearDown() { |
126 // Reinstall testing browser process. | 128 // Reinstall testing browser process. |
127 delete g_browser_process; | 129 delete g_browser_process; |
128 g_browser_process = new TestingBrowserProcess(); | 130 g_browser_process = new TestingBrowserProcess(); |
129 | 131 |
130 browser_shutdown::delete_resources_on_shutdown = true; | 132 browser_shutdown::delete_resources_on_shutdown = true; |
131 | 133 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
203 | 205 |
204 // Remove all registered notifications, otherwise by the time the | 206 // Remove all registered notifications, otherwise by the time the |
205 // destructor is run the NotificationService is dead. | 207 // destructor is run the NotificationService is dead. |
206 registrar_.RemoveAll(); | 208 registrar_.RemoveAll(); |
207 | 209 |
208 // Stop the HTTP server. | 210 // Stop the HTTP server. |
209 http_server_ = NULL; | 211 http_server_ = NULL; |
210 | 212 |
211 MessageLoopForUI::current()->Quit(); | 213 MessageLoopForUI::current()->Quit(); |
212 } | 214 } |
OLD | NEW |