Chromium Code Reviews

Side by Side Diff: chrome/test/unit/chrome_test_suite.h

Issue 149511: Refactorings surrounding HostResolver:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Merge in socks5_client_socket_unittest.cc Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « chrome/test/in_process_browser_test.cc ('k') | net/base/address_list_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef CHROME_TEST_UNIT_CHROME_TEST_SUITE_H_ 5 #ifndef CHROME_TEST_UNIT_CHROME_TEST_SUITE_H_
6 #define CHROME_TEST_UNIT_CHROME_TEST_SUITE_H_ 6 #define CHROME_TEST_UNIT_CHROME_TEST_SUITE_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include <string> 10 #include <string>
(...skipping 10 matching lines...)
21 #include "base/scoped_nsautorelease_pool.h" 21 #include "base/scoped_nsautorelease_pool.h"
22 #include "base/test_suite.h" 22 #include "base/test_suite.h"
23 #include "chrome/app/scoped_ole_initializer.h" 23 #include "chrome/app/scoped_ole_initializer.h"
24 #include "chrome/browser/browser_process.h" 24 #include "chrome/browser/browser_process.h"
25 #include "chrome/common/chrome_paths.h" 25 #include "chrome/common/chrome_paths.h"
26 #include "chrome/common/chrome_switches.h" 26 #include "chrome/common/chrome_switches.h"
27 #if defined(OS_MACOSX) 27 #if defined(OS_MACOSX)
28 #include "chrome/common/mac_app_names.h" 28 #include "chrome/common/mac_app_names.h"
29 #endif 29 #endif
30 #include "chrome/test/testing_browser_process.h" 30 #include "chrome/test/testing_browser_process.h"
31 #include "net/base/host_resolver_unittest.h" 31 #include "net/base/mock_host_resolver.h"
32 #include "net/base/net_util.h" 32 #include "net/base/net_util.h"
33 33
34 // In many cases it may be not obvious that a test makes a real DNS lookup. 34 // In many cases it may be not obvious that a test makes a real DNS lookup.
35 // We generally don't want to rely on external DNS servers for our tests, 35 // We generally don't want to rely on external DNS servers for our tests,
36 // so this mapper catches external queries. 36 // so this host resolver procedure catches external queries.
37 class WarningHostMapper : public net::HostMapper { 37 class WarningHostResolverProc : public net::HostResolverProc {
38 public: 38 public:
39 virtual std::string Map(const std::string& host) { 39 WarningHostResolverProc() : HostResolverProc(NULL) {}
40
41 virtual int Resolve(const std::string& host, net::AddressList* addrlist) {
40 const char* kLocalHostNames[] = {"localhost", "127.0.0.1"}; 42 const char* kLocalHostNames[] = {"localhost", "127.0.0.1"};
41 bool local = false; 43 bool local = false;
42 44
43 if (host == net::GetHostName()) { 45 if (host == net::GetHostName()) {
44 local = true; 46 local = true;
45 } else { 47 } else {
46 for (size_t i = 0; i < arraysize(kLocalHostNames); i++) 48 for (size_t i = 0; i < arraysize(kLocalHostNames); i++)
47 if (host == kLocalHostNames[i]) { 49 if (host == kLocalHostNames[i]) {
48 local = true; 50 local = true;
49 break; 51 break;
50 } 52 }
51 } 53 }
52 54
53 // Make the test fail so it's harder to ignore. 55 // Make the test fail so it's harder to ignore.
54 // If you really need to make real DNS query, use net::RuleBasedHostMapper 56 // If you really need to make real DNS query, use
55 // and its AllowDirectLookup method. 57 // net::RuleBasedHostResolverProc and its AllowDirectLookup method.
56 EXPECT_TRUE(local) << "Making external DNS lookup of " << host; 58 EXPECT_TRUE(local) << "Making external DNS lookup of " << host;
57 59
58 return MapUsingPrevious(host); 60 return ResolveUsingPrevious(host, addrlist);
59 } 61 }
60 }; 62 };
61 63
62 class ChromeTestSuite : public TestSuite { 64 class ChromeTestSuite : public TestSuite {
63 public: 65 public:
64 ChromeTestSuite(int argc, char** argv) : TestSuite(argc, argv) { 66 ChromeTestSuite(int argc, char** argv) : TestSuite(argc, argv) {
65 } 67 }
66 68
67 protected: 69 protected:
68 70
69 virtual void Initialize() { 71 virtual void Initialize() {
70 base::ScopedNSAutoreleasePool autorelease_pool; 72 base::ScopedNSAutoreleasePool autorelease_pool;
71 73
72 TestSuite::Initialize(); 74 TestSuite::Initialize();
73 75
74 host_mapper_ = new WarningHostMapper(); 76 host_resolver_proc_ = new WarningHostResolverProc();
75 scoped_host_mapper_.Init(host_mapper_.get()); 77 scoped_host_resolver_proc_.Init(host_resolver_proc_.get());
76 78
77 chrome::RegisterPathProvider(); 79 chrome::RegisterPathProvider();
78 app::RegisterPathProvider(); 80 app::RegisterPathProvider();
79 g_browser_process = new TestingBrowserProcess; 81 g_browser_process = new TestingBrowserProcess;
80 82
81 // Notice a user data override, and otherwise default to using a custom 83 // Notice a user data override, and otherwise default to using a custom
82 // user data directory that lives alongside the current app. 84 // user data directory that lives alongside the current app.
83 // NOTE: The user data directory will be erased before each UI test that 85 // NOTE: The user data directory will be erased before each UI test that
84 // uses it, in order to ensure consistency. 86 // uses it, in order to ensure consistency.
85 FilePath user_data_dir = FilePath::FromWStringHack( 87 FilePath user_data_dir = FilePath::FromWStringHack(
(...skipping 47 matching lines...)
133 if (PathService::Get(chrome::DIR_USER_DATA, &user_data_dir) && 135 if (PathService::Get(chrome::DIR_USER_DATA, &user_data_dir) &&
134 !user_data_dir.empty()) { 136 !user_data_dir.empty()) {
135 file_util::Delete(user_data_dir, true); 137 file_util::Delete(user_data_dir, true);
136 file_util::Delete(user_data_dir.DirName(), false); 138 file_util::Delete(user_data_dir.DirName(), false);
137 } 139 }
138 TestSuite::Shutdown(); 140 TestSuite::Shutdown();
139 } 141 }
140 142
141 StatsTable* stats_table_; 143 StatsTable* stats_table_;
142 ScopedOleInitializer ole_initializer_; 144 ScopedOleInitializer ole_initializer_;
143 scoped_refptr<WarningHostMapper> host_mapper_; 145 scoped_refptr<WarningHostResolverProc> host_resolver_proc_;
144 net::ScopedHostMapper scoped_host_mapper_; 146 net::ScopedDefaultHostResolverProc scoped_host_resolver_proc_;
145 }; 147 };
146 148
147 #endif // CHROME_TEST_UNIT_CHROME_TEST_SUITE_H_ 149 #endif // CHROME_TEST_UNIT_CHROME_TEST_SUITE_H_
OLDNEW
« no previous file with comments | « chrome/test/in_process_browser_test.cc ('k') | net/base/address_list_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine