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 "net/base/host_resolver.h" | 5 #include "net/base/host_resolver.h" |
6 #include "net/base/socket_test_util.h" | |
7 #include "net/http/http_network_layer.h" | 6 #include "net/http/http_network_layer.h" |
8 #include "net/http/http_transaction_unittest.h" | 7 #include "net/http/http_transaction_unittest.h" |
9 #include "net/proxy/proxy_service.h" | 8 #include "net/proxy/proxy_service.h" |
| 9 #include "net/socket/socket_test_util.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
11 #include "testing/platform_test.h" | 11 #include "testing/platform_test.h" |
12 | 12 |
13 class HttpNetworkLayerTest : public PlatformTest { | 13 class HttpNetworkLayerTest : public PlatformTest { |
14 }; | 14 }; |
15 | 15 |
16 TEST_F(HttpNetworkLayerTest, CreateAndDestroy) { | 16 TEST_F(HttpNetworkLayerTest, CreateAndDestroy) { |
17 net::HostResolver host_resolver; | 17 net::HostResolver host_resolver; |
18 scoped_ptr<net::ProxyService> proxy_service(net::ProxyService::CreateNull()); | 18 scoped_ptr<net::ProxyService> proxy_service(net::ProxyService::CreateNull()); |
19 net::HttpNetworkLayer factory(NULL, &host_resolver, proxy_service.get()); | 19 net::HttpNetworkLayer factory(NULL, &host_resolver, proxy_service.get()); |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 int rv = trans->Start(&request_info, &callback); | 73 int rv = trans->Start(&request_info, &callback); |
74 if (rv == net::ERR_IO_PENDING) | 74 if (rv == net::ERR_IO_PENDING) |
75 rv = callback.WaitForResult(); | 75 rv = callback.WaitForResult(); |
76 ASSERT_EQ(net::OK, rv); | 76 ASSERT_EQ(net::OK, rv); |
77 | 77 |
78 std::string contents; | 78 std::string contents; |
79 rv = ReadTransaction(trans.get(), &contents); | 79 rv = ReadTransaction(trans.get(), &contents); |
80 EXPECT_EQ(net::OK, rv); | 80 EXPECT_EQ(net::OK, rv); |
81 EXPECT_EQ("hello world", contents); | 81 EXPECT_EQ("hello world", contents); |
82 } | 82 } |
OLD | NEW |