Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(496)

Side by Side Diff: net/spdy/spdy_session_unittest.cc

Issue 3033012: Fixed memory leak in SpdyHttpStreamTest. Removed suppressions. (Closed)
Patch Set: merge with trunk Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/spdy/spdy_network_transaction_unittest.cc ('k') | net/spdy/spdy_stream_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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/spdy/spdy_io_buffer.h" 5 #include "net/spdy/spdy_io_buffer.h"
6
7 #include "googleurl/src/gurl.h"
8 #include "net/base/mock_host_resolver.h"
9 #include "net/base/ssl_config_service_defaults.h"
10 #include "net/base/test_completion_callback.h"
11 #include "net/http/http_network_session.h"
12 #include "net/http/http_response_info.h"
13 #include "net/proxy/proxy_service.h"
14 #include "net/socket/socket_test_util.h"
15 #include "net/spdy/spdy_http_stream.h"
16 #include "net/spdy/spdy_session.h" 6 #include "net/spdy/spdy_session.h"
17 #include "net/spdy/spdy_session_pool.h"
18 #include "net/spdy/spdy_stream.h" 7 #include "net/spdy/spdy_stream.h"
19 #include "net/spdy/spdy_test_util.h" 8 #include "net/spdy/spdy_test_util.h"
20 #include "testing/platform_test.h" 9 #include "testing/platform_test.h"
21 10
22 namespace net { 11 namespace net {
23 12
24 // TODO(cbentzel): Expose compression setter/getter in public SpdySession 13 // TODO(cbentzel): Expose compression setter/getter in public SpdySession
25 // interface rather than going through all these contortions. 14 // interface rather than going through all these contortions.
26 class SpdySessionTest : public PlatformTest { 15 class SpdySessionTest : public PlatformTest {
27 public: 16 public:
28 static void TurnOffCompression() { 17 static void TurnOffCompression() {
29 spdy::SpdyFramer::set_enable_compression_default(false); 18 spdy::SpdyFramer::set_enable_compression_default(false);
30 } 19 }
31 }; 20 };
32 21
33 namespace { 22 namespace {
34
35 // Helper to manage the lifetimes of the dependencies for a
36 // SpdyNetworkTransaction.
37 class SessionDependencies {
38 public:
39 // Default set of dependencies -- "null" proxy service.
40 SessionDependencies()
41 : host_resolver(new MockHostResolver),
42 proxy_service(ProxyService::CreateNull()),
43 ssl_config_service(new SSLConfigServiceDefaults),
44 spdy_session_pool(new SpdySessionPool()) {
45 }
46
47 scoped_refptr<MockHostResolverBase> host_resolver;
48 scoped_refptr<ProxyService> proxy_service;
49 scoped_refptr<SSLConfigService> ssl_config_service;
50 MockClientSocketFactory socket_factory;
51 scoped_refptr<SpdySessionPool> spdy_session_pool;
52 };
53
54 HttpNetworkSession* CreateSession(SessionDependencies* session_deps) {
55 return new HttpNetworkSession(session_deps->host_resolver,
56 session_deps->proxy_service,
57 &session_deps->socket_factory,
58 session_deps->ssl_config_service,
59 session_deps->spdy_session_pool,
60 NULL,
61 NULL,
62 NULL);
63 }
64
65 // Test the SpdyIOBuffer class. 23 // Test the SpdyIOBuffer class.
66 TEST_F(SpdySessionTest, SpdyIOBuffer) { 24 TEST_F(SpdySessionTest, SpdyIOBuffer) {
67 std::priority_queue<SpdyIOBuffer> queue_; 25 std::priority_queue<SpdyIOBuffer> queue_;
68 const size_t kQueueSize = 100; 26 const size_t kQueueSize = 100;
69 27
70 // Insert 100 items; pri 100 to 1. 28 // Insert 100 items; pri 100 to 1.
71 for (size_t index = 0; index < kQueueSize; ++index) { 29 for (size_t index = 0; index < kQueueSize; ++index) {
72 SpdyIOBuffer buffer(new IOBuffer(), 0, kQueueSize - index, NULL); 30 SpdyIOBuffer buffer(new IOBuffer(), 0, kQueueSize - index, NULL);
73 queue_.push(buffer); 31 queue_.push(buffer);
74 } 32 }
(...skipping 18 matching lines...) Expand all
93 51
94 int priority = 1; 52 int priority = 1;
95 while (queue_.size()) { 53 while (queue_.size()) {
96 SpdyIOBuffer buffer = queue_.top(); 54 SpdyIOBuffer buffer = queue_.top();
97 EXPECT_EQ(priority++, buffer.priority()); 55 EXPECT_EQ(priority++, buffer.priority());
98 queue_.pop(); 56 queue_.pop();
99 } 57 }
100 } 58 }
101 59
102 TEST_F(SpdySessionTest, GoAway) { 60 TEST_F(SpdySessionTest, GoAway) {
103 SessionDependencies session_deps; 61 SpdySessionDependencies session_deps;
104 session_deps.host_resolver->set_synchronous_mode(true); 62 session_deps.host_resolver->set_synchronous_mode(true);
105 63
106 MockConnect connect_data(false, OK); 64 MockConnect connect_data(false, OK);
107 scoped_ptr<spdy::SpdyFrame> goaway(ConstructSpdyGoAway()); 65 scoped_ptr<spdy::SpdyFrame> goaway(ConstructSpdyGoAway());
108 MockRead reads[] = { 66 MockRead reads[] = {
109 CreateMockRead(*goaway), 67 CreateMockRead(*goaway),
110 MockRead(false, 0, 0) // EOF 68 MockRead(false, 0, 0) // EOF
111 }; 69 };
112 StaticSocketDataProvider data(reads, arraysize(reads), NULL, 0); 70 StaticSocketDataProvider data(reads, arraysize(reads), NULL, 0);
113 data.set_connect_data(connect_data); 71 data.set_connect_data(connect_data);
114 session_deps.socket_factory.AddSocketDataProvider(&data); 72 session_deps.socket_factory.AddSocketDataProvider(&data);
115 73
116 SSLSocketDataProvider ssl(false, OK); 74 SSLSocketDataProvider ssl(false, OK);
117 session_deps.socket_factory.AddSSLSocketDataProvider(&ssl); 75 session_deps.socket_factory.AddSSLSocketDataProvider(&ssl);
118 76
119 scoped_refptr<HttpNetworkSession> http_session(CreateSession(&session_deps)); 77 scoped_refptr<HttpNetworkSession> http_session(
78 SpdySessionDependencies::SpdyCreateSession(&session_deps));
120 79
121 const std::string kTestHost("www.foo.com"); 80 const std::string kTestHost("www.foo.com");
122 const int kTestPort = 80; 81 const int kTestPort = 80;
123 HostPortPair test_host_port_pair; 82 HostPortPair test_host_port_pair;
124 test_host_port_pair.host = kTestHost; 83 test_host_port_pair.host = kTestHost;
125 test_host_port_pair.port = kTestPort; 84 test_host_port_pair.port = kTestPort;
126 85
127 scoped_refptr<SpdySessionPool> spdy_session_pool( 86 scoped_refptr<SpdySessionPool> spdy_session_pool(
128 http_session->spdy_session_pool()); 87 http_session->spdy_session_pool());
129 EXPECT_FALSE(spdy_session_pool->HasSession(test_host_port_pair)); 88 EXPECT_FALSE(spdy_session_pool->HasSession(test_host_port_pair));
(...skipping 23 matching lines...) Expand all
153 spdy_session_pool->Remove(session2); 112 spdy_session_pool->Remove(session2);
154 session2 = NULL; 113 session2 = NULL;
155 } 114 }
156 115
157 } // namespace 116 } // namespace
158 117
159 TEST_F(SpdySessionTest, GetActivePushStream) { 118 TEST_F(SpdySessionTest, GetActivePushStream) {
160 spdy::SpdyFramer framer; 119 spdy::SpdyFramer framer;
161 SpdySessionTest::TurnOffCompression(); 120 SpdySessionTest::TurnOffCompression();
162 121
163 SessionDependencies session_deps; 122 SpdySessionDependencies session_deps;
164 session_deps.host_resolver->set_synchronous_mode(true); 123 session_deps.host_resolver->set_synchronous_mode(true);
165 124
166 MockConnect connect_data(false, OK); 125 MockConnect connect_data(false, OK);
167 spdy::SpdyHeaderBlock headers; 126 spdy::SpdyHeaderBlock headers;
168 headers["path"] = "/foo.js"; 127 headers["path"] = "/foo.js";
169 headers["status"] = "200"; 128 headers["status"] = "200";
170 headers["version"] = "HTTP/1.1"; 129 headers["version"] = "HTTP/1.1";
171 scoped_ptr<spdy::SpdyFrame> push_syn(framer.CreateSynStream( 130 scoped_ptr<spdy::SpdyFrame> push_syn(framer.CreateSynStream(
172 2, 1, 0, spdy::CONTROL_FLAG_NONE, false, &headers)); 131 2, 1, 0, spdy::CONTROL_FLAG_NONE, false, &headers));
173 MockRead reads[] = { 132 MockRead reads[] = {
174 CreateMockRead(*push_syn), 133 CreateMockRead(*push_syn),
175 MockRead(true, ERR_IO_PENDING, 0) // EOF 134 MockRead(true, ERR_IO_PENDING, 0) // EOF
176 }; 135 };
177 StaticSocketDataProvider data(reads, arraysize(reads), NULL, 0); 136 StaticSocketDataProvider data(reads, arraysize(reads), NULL, 0);
178 data.set_connect_data(connect_data); 137 data.set_connect_data(connect_data);
179 session_deps.socket_factory.AddSocketDataProvider(&data); 138 session_deps.socket_factory.AddSocketDataProvider(&data);
180 139
181 SSLSocketDataProvider ssl(false, OK); 140 SSLSocketDataProvider ssl(false, OK);
182 session_deps.socket_factory.AddSSLSocketDataProvider(&ssl); 141 session_deps.socket_factory.AddSSLSocketDataProvider(&ssl);
183 142
184 scoped_refptr<HttpNetworkSession> http_session(CreateSession(&session_deps)); 143 scoped_refptr<HttpNetworkSession> http_session(
144 SpdySessionDependencies::SpdyCreateSession(&session_deps));
185 145
186 const std::string kTestHost("www.foo.com"); 146 const std::string kTestHost("www.foo.com");
187 const int kTestPort = 80; 147 const int kTestPort = 80;
188 HostPortPair test_host_port_pair; 148 HostPortPair test_host_port_pair;
189 test_host_port_pair.host = kTestHost; 149 test_host_port_pair.host = kTestHost;
190 test_host_port_pair.port = kTestPort; 150 test_host_port_pair.port = kTestPort;
191 151
192 scoped_refptr<SpdySessionPool> spdy_session_pool( 152 scoped_refptr<SpdySessionPool> spdy_session_pool(
193 http_session->spdy_session_pool()); 153 http_session->spdy_session_pool());
194 EXPECT_FALSE(spdy_session_pool->HasSession(test_host_port_pair)); 154 EXPECT_FALSE(spdy_session_pool->HasSession(test_host_port_pair));
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 session = NULL; 188 session = NULL;
229 spdy_session_pool->CloseAllSessions(); 189 spdy_session_pool->CloseAllSessions();
230 190
231 // RunAllPending needs to be called here because the 191 // RunAllPending needs to be called here because the
232 // ClientSocketPoolBase posts a task to clean up and destroy the 192 // ClientSocketPoolBase posts a task to clean up and destroy the
233 // underlying socket. 193 // underlying socket.
234 MessageLoop::current()->RunAllPending(); 194 MessageLoop::current()->RunAllPending();
235 } 195 }
236 196
237 } // namespace net 197 } // namespace net
OLDNEW
« no previous file with comments | « net/spdy/spdy_network_transaction_unittest.cc ('k') | net/spdy/spdy_stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698