| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 "net/test/net_test_suite.h" | 5 #include "net/test/net_test_suite.h" |
| 6 | 6 |
| 7 #include "base/message_loop/message_loop.h" | 7 #include "base/message_loop/message_loop.h" |
| 8 #include "net/base/network_change_notifier.h" | 8 #include "net/base/network_change_notifier.h" |
| 9 #include "net/http/http_stream_factory.h" | 9 #include "net/http/http_stream_factory.h" |
| 10 #include "net/spdy/spdy_session.h" | 10 #include "net/spdy/spdy_session.h" |
| 11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 | 12 |
| 13 #if defined(USE_NSS) || defined(OS_IOS) | 13 #if defined(USE_NSS) || defined(OS_IOS) |
| 14 #include "net/ocsp/nss_ocsp.h" | 14 #include "net/ocsp/nss_ocsp.h" |
| 15 #endif | 15 #endif |
| 16 | 16 |
| 17 class StaticReset : public ::testing::EmptyTestEventListener { | 17 class StaticReset : public ::testing::EmptyTestEventListener { |
| 18 virtual void OnTestStart(const ::testing::TestInfo& test_info) OVERRIDE { | 18 virtual void OnTestStart(const ::testing::TestInfo& test_info) OVERRIDE { |
| 19 net::HttpStreamFactory::ResetStaticSettingsToInit(); | 19 net::HttpStreamFactory::ResetStaticSettingsToInit(); |
| 20 } | 20 } |
| 21 }; | 21 }; |
| 22 | 22 |
| 23 NetTestSuite::NetTestSuite(int argc, char** argv) | 23 NetTestSuite::NetTestSuite(int argc, char** argv) : TestSuite(argc, argv) { |
| 24 : TestSuite(argc, argv) { | |
| 25 } | 24 } |
| 26 | 25 |
| 27 NetTestSuite::NetTestSuite(int argc, char** argv, | 26 NetTestSuite::NetTestSuite(int argc, char** argv, bool create_at_exit_manager) |
| 28 bool create_at_exit_manager) | |
| 29 : TestSuite(argc, argv, create_at_exit_manager) { | 27 : TestSuite(argc, argv, create_at_exit_manager) { |
| 30 } | 28 } |
| 31 | 29 |
| 32 NetTestSuite::~NetTestSuite() {} | 30 NetTestSuite::~NetTestSuite() { |
| 31 } |
| 33 | 32 |
| 34 void NetTestSuite::Initialize() { | 33 void NetTestSuite::Initialize() { |
| 35 TestSuite::Initialize(); | 34 TestSuite::Initialize(); |
| 36 ::testing::UnitTest::GetInstance()->listeners().Append(new StaticReset()); | 35 ::testing::UnitTest::GetInstance()->listeners().Append(new StaticReset()); |
| 37 InitializeTestThread(); | 36 InitializeTestThread(); |
| 38 } | 37 } |
| 39 | 38 |
| 40 void NetTestSuite::Shutdown() { | 39 void NetTestSuite::Shutdown() { |
| 41 #if defined(USE_NSS) || defined(OS_IOS) | 40 #if defined(USE_NSS) || defined(OS_IOS) |
| 42 net::ShutdownNSSHttpIO(); | 41 net::ShutdownNSSHttpIO(); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 58 void NetTestSuite::InitializeTestThreadNoNetworkChangeNotifier() { | 57 void NetTestSuite::InitializeTestThreadNoNetworkChangeNotifier() { |
| 59 host_resolver_proc_ = new net::RuleBasedHostResolverProc(NULL); | 58 host_resolver_proc_ = new net::RuleBasedHostResolverProc(NULL); |
| 60 scoped_host_resolver_proc_.Init(host_resolver_proc_.get()); | 59 scoped_host_resolver_proc_.Init(host_resolver_proc_.get()); |
| 61 // In case any attempts are made to resolve host names, force them all to | 60 // In case any attempts are made to resolve host names, force them all to |
| 62 // be mapped to localhost. This prevents DNS queries from being sent in | 61 // be mapped to localhost. This prevents DNS queries from being sent in |
| 63 // the process of running these unit tests. | 62 // the process of running these unit tests. |
| 64 host_resolver_proc_->AddRule("*", "127.0.0.1"); | 63 host_resolver_proc_->AddRule("*", "127.0.0.1"); |
| 65 | 64 |
| 66 message_loop_.reset(new base::MessageLoopForIO()); | 65 message_loop_.reset(new base::MessageLoopForIO()); |
| 67 } | 66 } |
| OLD | NEW |