1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/spdy/spdy_test_util_common.h"
9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/strings/string_number_conversions.h"
12 #include "base/strings/string_split.h"
13 #include "net/cert/mock_cert_verifier.h"
14 #include "net/http/http_cache.h"
15 #include "net/http/http_network_session.h"
16 #include "net/http/http_network_transaction.h"
17 #include "net/http/http_server_properties_impl.h"
18 #include "net/socket/socket_test_util.h"
19 #include "net/socket/ssl_client_socket.h"
20 #include "net/socket/transport_client_socket_pool.h"
21 #include "net/spdy/buffered_spdy_framer.h"
22 #include "net/spdy/spdy_framer.h"
23 #include "net/spdy/spdy_http_utils.h"
24 #include "net/spdy/spdy_session.h"
25 #include "net/spdy/spdy_session_pool.h"
26 #include "net/spdy/spdy_stream.h"
27 #include "net/url_request/url_request_job_factory_impl.h"
33 bool next_proto_is_spdy(NextProto next_proto
) {
34 return next_proto
>= kProtoSPDYMinimumVersion
&&
35 next_proto
<= kProtoSPDYMaximumVersion
;
38 // Parses a URL into the scheme, host, and path components required for a
40 void ParseUrl(base::StringPiece url
, std::string
* scheme
, std::string
* host
,
42 GURL
gurl(url
.as_string());
43 path
->assign(gurl
.PathForRequest());
44 scheme
->assign(gurl
.scheme());
45 host
->assign(gurl
.host());
46 if (gurl
.has_port()) {
48 host
->append(gurl
.port());
54 NextProtoVector
SpdyNextProtos() {
55 NextProtoVector next_protos
;
56 next_protos
.push_back(kProtoHTTP11
);
57 next_protos
.push_back(kProtoSPDY31
);
58 next_protos
.push_back(kProtoSPDY4_14
);
59 next_protos
.push_back(kProtoSPDY4
);
60 next_protos
.push_back(kProtoQUIC1SPDY3
);
64 // Chop a frame into an array of MockWrites.
65 // |data| is the frame to chop.
66 // |length| is the length of the frame to chop.
67 // |num_chunks| is the number of chunks to create.
68 MockWrite
* ChopWriteFrame(const char* data
, int length
, int num_chunks
) {
69 MockWrite
* chunks
= new MockWrite
[num_chunks
];
70 int chunk_size
= length
/ num_chunks
;
71 for (int index
= 0; index
< num_chunks
; index
++) {
72 const char* ptr
= data
+ (index
* chunk_size
);
73 if (index
== num_chunks
- 1)
74 chunk_size
+= length
% chunk_size
; // The last chunk takes the remainder.
75 chunks
[index
] = MockWrite(ASYNC
, ptr
, chunk_size
);
80 // Chop a SpdyFrame into an array of MockWrites.
81 // |frame| is the frame to chop.
82 // |num_chunks| is the number of chunks to create.
83 MockWrite
* ChopWriteFrame(const SpdyFrame
& frame
, int num_chunks
) {
84 return ChopWriteFrame(frame
.data(), frame
.size(), num_chunks
);
87 // Chop a frame into an array of MockReads.
88 // |data| is the frame to chop.
89 // |length| is the length of the frame to chop.
90 // |num_chunks| is the number of chunks to create.
91 MockRead
* ChopReadFrame(const char* data
, int length
, int num_chunks
) {
92 MockRead
* chunks
= new MockRead
[num_chunks
];
93 int chunk_size
= length
/ num_chunks
;
94 for (int index
= 0; index
< num_chunks
; index
++) {
95 const char* ptr
= data
+ (index
* chunk_size
);
96 if (index
== num_chunks
- 1)
97 chunk_size
+= length
% chunk_size
; // The last chunk takes the remainder.
98 chunks
[index
] = MockRead(ASYNC
, ptr
, chunk_size
);
103 // Chop a SpdyFrame into an array of MockReads.
104 // |frame| is the frame to chop.
105 // |num_chunks| is the number of chunks to create.
106 MockRead
* ChopReadFrame(const SpdyFrame
& frame
, int num_chunks
) {
107 return ChopReadFrame(frame
.data(), frame
.size(), num_chunks
);
110 // Adds headers and values to a map.
111 // |extra_headers| is an array of { name, value } pairs, arranged as strings
112 // where the even entries are the header names, and the odd entries are the
114 // |headers| gets filled in from |extra_headers|.
115 void AppendToHeaderBlock(const char* const extra_headers
[],
116 int extra_header_count
,
117 SpdyHeaderBlock
* headers
) {
118 std::string this_header
;
119 std::string this_value
;
121 if (!extra_header_count
)
124 // Sanity check: Non-NULL header list.
125 DCHECK(NULL
!= extra_headers
) << "NULL header value pair list";
126 // Sanity check: Non-NULL header map.
127 DCHECK(NULL
!= headers
) << "NULL header map";
128 // Copy in the headers.
129 for (int i
= 0; i
< extra_header_count
; i
++) {
130 // Sanity check: Non-empty header.
131 DCHECK_NE('\0', *extra_headers
[i
* 2]) << "Empty header value pair";
132 this_header
= extra_headers
[i
* 2];
133 std::string::size_type header_len
= this_header
.length();
136 this_value
= extra_headers
[1 + (i
* 2)];
137 std::string new_value
;
138 if (headers
->find(this_header
) != headers
->end()) {
139 // More than one entry in the header.
140 // Don't add the header again, just the append to the value,
141 // separated by a NULL character.
144 new_value
= (*headers
)[this_header
];
145 // Put in a NULL separator.
146 new_value
.append(1, '\0');
147 // Append the new value.
148 new_value
+= this_value
;
150 // Not a duplicate, just write the value.
151 new_value
= this_value
;
153 (*headers
)[this_header
] = new_value
;
157 // Create a MockWrite from the given SpdyFrame.
158 MockWrite
CreateMockWrite(const SpdyFrame
& req
) {
159 return MockWrite(ASYNC
, req
.data(), req
.size());
162 // Create a MockWrite from the given SpdyFrame and sequence number.
163 MockWrite
CreateMockWrite(const SpdyFrame
& req
, int seq
) {
164 return CreateMockWrite(req
, seq
, ASYNC
);
167 // Create a MockWrite from the given SpdyFrame and sequence number.
168 MockWrite
CreateMockWrite(const SpdyFrame
& req
, int seq
, IoMode mode
) {
169 return MockWrite(mode
, req
.data(), req
.size(), seq
);
172 // Create a MockRead from the given SpdyFrame.
173 MockRead
CreateMockRead(const SpdyFrame
& resp
) {
174 return MockRead(ASYNC
, resp
.data(), resp
.size());
177 // Create a MockRead from the given SpdyFrame and sequence number.
178 MockRead
CreateMockRead(const SpdyFrame
& resp
, int seq
) {
179 return CreateMockRead(resp
, seq
, ASYNC
);
182 // Create a MockRead from the given SpdyFrame and sequence number.
183 MockRead
CreateMockRead(const SpdyFrame
& resp
, int seq
, IoMode mode
) {
184 return MockRead(mode
, resp
.data(), resp
.size(), seq
);
187 // Combines the given SpdyFrames into the given char array and returns
189 int CombineFrames(const SpdyFrame
** frames
, int num_frames
,
190 char* buff
, int buff_len
) {
192 for (int i
= 0; i
< num_frames
; ++i
) {
193 total_len
+= frames
[i
]->size();
195 DCHECK_LE(total_len
, buff_len
);
197 for (int i
= 0; i
< num_frames
; ++i
) {
198 int len
= frames
[i
]->size();
199 memcpy(ptr
, frames
[i
]->data(), len
);
207 class PriorityGetter
: public BufferedSpdyFramerVisitorInterface
{
209 PriorityGetter() : priority_(0) {}
210 ~PriorityGetter() override
{}
212 SpdyPriority
priority() const {
216 void OnError(SpdyFramer::SpdyError error_code
) override
{}
217 void OnStreamError(SpdyStreamId stream_id
,
218 const std::string
& description
) override
{}
219 void OnSynStream(SpdyStreamId stream_id
,
220 SpdyStreamId associated_stream_id
,
221 SpdyPriority priority
,
224 const SpdyHeaderBlock
& headers
) override
{
225 priority_
= priority
;
227 void OnSynReply(SpdyStreamId stream_id
,
229 const SpdyHeaderBlock
& headers
) override
{}
230 void OnHeaders(SpdyStreamId stream_id
,
232 SpdyPriority priority
,
234 const SpdyHeaderBlock
& headers
) override
{
236 priority_
= priority
;
239 void OnDataFrameHeader(SpdyStreamId stream_id
,
241 bool fin
) override
{}
242 void OnStreamFrameData(SpdyStreamId stream_id
,
245 bool fin
) override
{}
246 void OnStreamPadding(SpdyStreamId stream_id
, size_t len
) override
{}
247 void OnSettings(bool clear_persisted
) override
{}
248 void OnSetting(SpdySettingsIds id
, uint8 flags
, uint32 value
) override
{}
249 void OnPing(SpdyPingId unique_id
, bool is_ack
) override
{}
250 void OnRstStream(SpdyStreamId stream_id
,
251 SpdyRstStreamStatus status
) override
{}
252 void OnGoAway(SpdyStreamId last_accepted_stream_id
,
253 SpdyGoAwayStatus status
) override
{}
254 void OnWindowUpdate(SpdyStreamId stream_id
,
255 uint32 delta_window_size
) override
{}
256 void OnPushPromise(SpdyStreamId stream_id
,
257 SpdyStreamId promised_stream_id
,
258 const SpdyHeaderBlock
& headers
) override
{}
259 bool OnUnknownFrame(SpdyStreamId stream_id
, int frame_type
) override
{
264 SpdyPriority priority_
;
269 bool GetSpdyPriority(SpdyMajorVersion version
,
270 const SpdyFrame
& frame
,
271 SpdyPriority
* priority
) {
272 BufferedSpdyFramer
framer(version
, false);
273 PriorityGetter priority_getter
;
274 framer
.set_visitor(&priority_getter
);
275 size_t frame_size
= frame
.size();
276 if (framer
.ProcessInput(frame
.data(), frame_size
) != frame_size
) {
279 *priority
= priority_getter
.priority();
283 base::WeakPtr
<SpdyStream
> CreateStreamSynchronously(
285 const base::WeakPtr
<SpdySession
>& session
,
287 RequestPriority priority
,
288 const BoundNetLog
& net_log
) {
289 SpdyStreamRequest stream_request
;
290 int rv
= stream_request
.StartRequest(type
, session
, url
, priority
, net_log
,
291 CompletionCallback());
293 (rv
== OK
) ? stream_request
.ReleaseStream() : base::WeakPtr
<SpdyStream
>();
296 StreamReleaserCallback::StreamReleaserCallback() {}
298 StreamReleaserCallback::~StreamReleaserCallback() {}
300 CompletionCallback
StreamReleaserCallback::MakeCallback(
301 SpdyStreamRequest
* request
) {
302 return base::Bind(&StreamReleaserCallback::OnComplete
,
303 base::Unretained(this),
307 void StreamReleaserCallback::OnComplete(
308 SpdyStreamRequest
* request
, int result
) {
310 request
->ReleaseStream()->Cancel();
314 MockECSignatureCreator::MockECSignatureCreator(crypto::ECPrivateKey
* key
)
318 bool MockECSignatureCreator::Sign(const uint8
* data
,
320 std::vector
<uint8
>* signature
) {
321 std::vector
<uint8
> private_key_value
;
322 key_
->ExportValue(&private_key_value
);
323 std::string head
= "fakesignature";
324 std::string tail
= "/fakesignature";
327 signature
->insert(signature
->end(), head
.begin(), head
.end());
328 signature
->insert(signature
->end(), private_key_value
.begin(),
329 private_key_value
.end());
330 signature
->insert(signature
->end(), '-');
331 signature
->insert(signature
->end(), data
, data
+ data_len
);
332 signature
->insert(signature
->end(), tail
.begin(), tail
.end());
336 bool MockECSignatureCreator::DecodeSignature(
337 const std::vector
<uint8
>& signature
,
338 std::vector
<uint8
>* out_raw_sig
) {
339 *out_raw_sig
= signature
;
343 MockECSignatureCreatorFactory::MockECSignatureCreatorFactory() {
344 crypto::ECSignatureCreator::SetFactoryForTesting(this);
347 MockECSignatureCreatorFactory::~MockECSignatureCreatorFactory() {
348 crypto::ECSignatureCreator::SetFactoryForTesting(NULL
);
351 crypto::ECSignatureCreator
* MockECSignatureCreatorFactory::Create(
352 crypto::ECPrivateKey
* key
) {
353 return new MockECSignatureCreator(key
);
356 SpdySessionDependencies::SpdySessionDependencies(NextProto protocol
)
357 : host_resolver(new MockCachingHostResolver
),
358 cert_verifier(new MockCertVerifier
),
359 transport_security_state(new TransportSecurityState
),
360 proxy_service(ProxyService::CreateDirect()),
361 ssl_config_service(new SSLConfigServiceDefaults
),
362 socket_factory(new MockClientSocketFactory
),
363 deterministic_socket_factory(new DeterministicMockClientSocketFactory
),
364 http_auth_handler_factory(
365 HttpAuthHandlerFactory::CreateDefault(host_resolver
.get())),
366 enable_ip_pooling(true),
367 enable_compression(false),
369 enable_user_alternate_protocol_ports(false),
371 stream_initial_recv_window_size(
372 SpdySession::GetInitialWindowSize(protocol
)),
373 time_func(&base::TimeTicks::Now
),
374 force_spdy_over_ssl(false),
375 force_spdy_always(false),
376 use_alternate_protocols(false),
378 DCHECK(next_proto_is_spdy(protocol
)) << "Invalid protocol: " << protocol
;
380 // Note: The CancelledTransaction test does cleanup by running all
381 // tasks in the message loop (RunAllPending). Unfortunately, that
382 // doesn't clean up tasks on the host resolver thread; and
383 // TCPConnectJob is currently not cancellable. Using synchronous
384 // lookups allows the test to shutdown cleanly. Until we have
385 // cancellable TCPConnectJobs, use synchronous lookups.
386 host_resolver
->set_synchronous_mode(true);
389 SpdySessionDependencies::SpdySessionDependencies(NextProto protocol
,
390 ProxyService
* proxy_service
)
391 : host_resolver(new MockHostResolver
),
392 cert_verifier(new MockCertVerifier
),
393 transport_security_state(new TransportSecurityState
),
394 proxy_service(proxy_service
),
395 ssl_config_service(new SSLConfigServiceDefaults
),
396 socket_factory(new MockClientSocketFactory
),
397 deterministic_socket_factory(new DeterministicMockClientSocketFactory
),
398 http_auth_handler_factory(
399 HttpAuthHandlerFactory::CreateDefault(host_resolver
.get())),
400 enable_ip_pooling(true),
401 enable_compression(false),
403 enable_user_alternate_protocol_ports(false),
405 stream_initial_recv_window_size(
406 SpdySession::GetInitialWindowSize(protocol
)),
407 time_func(&base::TimeTicks::Now
),
408 force_spdy_over_ssl(false),
409 force_spdy_always(false),
410 use_alternate_protocols(false),
412 DCHECK(next_proto_is_spdy(protocol
)) << "Invalid protocol: " << protocol
;
415 SpdySessionDependencies::~SpdySessionDependencies() {}
418 HttpNetworkSession
* SpdySessionDependencies::SpdyCreateSession(
419 SpdySessionDependencies
* session_deps
) {
420 net::HttpNetworkSession::Params params
= CreateSessionParams(session_deps
);
421 params
.client_socket_factory
= session_deps
->socket_factory
.get();
422 HttpNetworkSession
* http_session
= new HttpNetworkSession(params
);
423 SpdySessionPoolPeer
pool_peer(http_session
->spdy_session_pool());
424 pool_peer
.SetEnableSendingInitialData(false);
429 HttpNetworkSession
* SpdySessionDependencies::SpdyCreateSessionDeterministic(
430 SpdySessionDependencies
* session_deps
) {
431 net::HttpNetworkSession::Params params
= CreateSessionParams(session_deps
);
432 params
.client_socket_factory
=
433 session_deps
->deterministic_socket_factory
.get();
434 HttpNetworkSession
* http_session
= new HttpNetworkSession(params
);
435 SpdySessionPoolPeer
pool_peer(http_session
->spdy_session_pool());
436 pool_peer
.SetEnableSendingInitialData(false);
441 net::HttpNetworkSession::Params
SpdySessionDependencies::CreateSessionParams(
442 SpdySessionDependencies
* session_deps
) {
443 DCHECK(next_proto_is_spdy(session_deps
->protocol
)) <<
444 "Invalid protocol: " << session_deps
->protocol
;
446 net::HttpNetworkSession::Params params
;
447 params
.host_resolver
= session_deps
->host_resolver
.get();
448 params
.cert_verifier
= session_deps
->cert_verifier
.get();
449 params
.transport_security_state
=
450 session_deps
->transport_security_state
.get();
451 params
.proxy_service
= session_deps
->proxy_service
.get();
452 params
.ssl_config_service
= session_deps
->ssl_config_service
.get();
453 params
.http_auth_handler_factory
=
454 session_deps
->http_auth_handler_factory
.get();
455 params
.http_server_properties
=
456 session_deps
->http_server_properties
.GetWeakPtr();
457 params
.enable_spdy_compression
= session_deps
->enable_compression
;
458 params
.enable_spdy_ping_based_connection_checking
= session_deps
->enable_ping
;
459 params
.enable_user_alternate_protocol_ports
=
460 session_deps
->enable_user_alternate_protocol_ports
;
461 params
.spdy_default_protocol
= session_deps
->protocol
;
462 params
.spdy_stream_initial_recv_window_size
=
463 session_deps
->stream_initial_recv_window_size
;
464 params
.time_func
= session_deps
->time_func
;
465 params
.next_protos
= session_deps
->next_protos
;
466 params
.trusted_spdy_proxy
= session_deps
->trusted_spdy_proxy
;
467 params
.force_spdy_over_ssl
= session_deps
->force_spdy_over_ssl
;
468 params
.force_spdy_always
= session_deps
->force_spdy_always
;
469 params
.use_alternate_protocols
= session_deps
->use_alternate_protocols
;
470 params
.net_log
= session_deps
->net_log
;
474 SpdyURLRequestContext::SpdyURLRequestContext(NextProto protocol
,
475 bool force_spdy_over_ssl
,
476 bool force_spdy_always
)
478 DCHECK(next_proto_is_spdy(protocol
)) << "Invalid protocol: " << protocol
;
480 storage_
.set_host_resolver(scoped_ptr
<HostResolver
>(new MockHostResolver
));
481 storage_
.set_cert_verifier(new MockCertVerifier
);
482 storage_
.set_transport_security_state(new TransportSecurityState
);
483 storage_
.set_proxy_service(ProxyService::CreateDirect());
484 storage_
.set_ssl_config_service(new SSLConfigServiceDefaults
);
485 storage_
.set_http_auth_handler_factory(HttpAuthHandlerFactory::CreateDefault(
487 storage_
.set_http_server_properties(
488 scoped_ptr
<HttpServerProperties
>(new HttpServerPropertiesImpl()));
489 storage_
.set_job_factory(new URLRequestJobFactoryImpl());
490 net::HttpNetworkSession::Params params
;
491 params
.client_socket_factory
= &socket_factory_
;
492 params
.host_resolver
= host_resolver();
493 params
.cert_verifier
= cert_verifier();
494 params
.transport_security_state
= transport_security_state();
495 params
.proxy_service
= proxy_service();
496 params
.ssl_config_service
= ssl_config_service();
497 params
.http_auth_handler_factory
= http_auth_handler_factory();
498 params
.network_delegate
= network_delegate();
499 params
.enable_spdy_compression
= false;
500 params
.enable_spdy_ping_based_connection_checking
= false;
501 params
.spdy_default_protocol
= protocol
;
502 params
.force_spdy_over_ssl
= force_spdy_over_ssl
;
503 params
.force_spdy_always
= force_spdy_always
;
504 params
.http_server_properties
= http_server_properties();
505 scoped_refptr
<HttpNetworkSession
> network_session(
506 new HttpNetworkSession(params
));
507 SpdySessionPoolPeer
pool_peer(network_session
->spdy_session_pool());
508 pool_peer
.SetEnableSendingInitialData(false);
509 storage_
.set_http_transaction_factory(new HttpCache(
510 network_session
.get(), HttpCache::DefaultBackend::InMemory(0)));
513 SpdyURLRequestContext::~SpdyURLRequestContext() {
514 AssertNoURLRequests();
517 bool HasSpdySession(SpdySessionPool
* pool
, const SpdySessionKey
& key
) {
518 return pool
->FindAvailableSession(key
, BoundNetLog()) != NULL
;
523 base::WeakPtr
<SpdySession
> CreateSpdySessionHelper(
524 const scoped_refptr
<HttpNetworkSession
>& http_session
,
525 const SpdySessionKey
& key
,
526 const BoundNetLog
& net_log
,
527 Error expected_status
,
529 EXPECT_FALSE(HasSpdySession(http_session
->spdy_session_pool(), key
));
531 scoped_refptr
<TransportSocketParams
> transport_params(
532 new TransportSocketParams(
533 key
.host_port_pair(), false, false, OnHostResolutionCallback(),
534 TransportSocketParams::COMBINE_CONNECT_AND_WRITE_DEFAULT
));
536 scoped_ptr
<ClientSocketHandle
> connection(new ClientSocketHandle
);
537 TestCompletionCallback callback
;
539 int rv
= ERR_UNEXPECTED
;
541 SSLConfig ssl_config
;
542 scoped_refptr
<SSLSocketParams
> ssl_params(
543 new SSLSocketParams(transport_params
,
546 key
.host_port_pair(),
552 rv
= connection
->Init(key
.host_port_pair().ToString(),
556 http_session
->GetSSLSocketPool(
557 HttpNetworkSession::NORMAL_SOCKET_POOL
),
560 rv
= connection
->Init(key
.host_port_pair().ToString(),
564 http_session
->GetTransportSocketPool(
565 HttpNetworkSession::NORMAL_SOCKET_POOL
),
569 if (rv
== ERR_IO_PENDING
)
570 rv
= callback
.WaitForResult();
574 base::WeakPtr
<SpdySession
> spdy_session
=
575 http_session
->spdy_session_pool()->CreateAvailableSessionFromSocket(
576 key
, connection
.Pass(), net_log
, OK
, is_secure
);
577 // Failure is reported asynchronously.
578 EXPECT_TRUE(spdy_session
!= NULL
);
579 EXPECT_TRUE(HasSpdySession(http_session
->spdy_session_pool(), key
));
585 base::WeakPtr
<SpdySession
> CreateInsecureSpdySession(
586 const scoped_refptr
<HttpNetworkSession
>& http_session
,
587 const SpdySessionKey
& key
,
588 const BoundNetLog
& net_log
) {
589 return CreateSpdySessionHelper(http_session
, key
, net_log
,
590 OK
, false /* is_secure */);
593 base::WeakPtr
<SpdySession
> TryCreateInsecureSpdySessionExpectingFailure(
594 const scoped_refptr
<HttpNetworkSession
>& http_session
,
595 const SpdySessionKey
& key
,
596 Error expected_error
,
597 const BoundNetLog
& net_log
) {
598 DCHECK_LT(expected_error
, ERR_IO_PENDING
);
599 return CreateSpdySessionHelper(http_session
, key
, net_log
,
600 expected_error
, false /* is_secure */);
603 base::WeakPtr
<SpdySession
> CreateSecureSpdySession(
604 const scoped_refptr
<HttpNetworkSession
>& http_session
,
605 const SpdySessionKey
& key
,
606 const BoundNetLog
& net_log
) {
607 return CreateSpdySessionHelper(http_session
, key
, net_log
,
608 OK
, true /* is_secure */);
613 // A ClientSocket used for CreateFakeSpdySession() below.
614 class FakeSpdySessionClientSocket
: public MockClientSocket
{
616 FakeSpdySessionClientSocket(int read_result
)
617 : MockClientSocket(BoundNetLog()),
618 read_result_(read_result
) {}
620 ~FakeSpdySessionClientSocket() override
{}
622 int Read(IOBuffer
* buf
,
624 const CompletionCallback
& callback
) override
{
628 int Write(IOBuffer
* buf
,
630 const CompletionCallback
& callback
) override
{
631 return ERR_IO_PENDING
;
634 // Return kProtoUnknown to use the pool's default protocol.
635 NextProto
GetNegotiatedProtocol() const override
{ return kProtoUnknown
; }
637 // The functions below are not expected to be called.
639 int Connect(const CompletionCallback
& callback
) override
{
641 return ERR_UNEXPECTED
;
644 bool WasEverUsed() const override
{
649 bool UsingTCPFastOpen() const override
{
654 bool WasNpnNegotiated() const override
{
659 bool GetSSLInfo(SSLInfo
* ssl_info
) override
{
668 base::WeakPtr
<SpdySession
> CreateFakeSpdySessionHelper(
669 SpdySessionPool
* pool
,
670 const SpdySessionKey
& key
,
671 Error expected_status
) {
672 EXPECT_NE(expected_status
, ERR_IO_PENDING
);
673 EXPECT_FALSE(HasSpdySession(pool
, key
));
674 scoped_ptr
<ClientSocketHandle
> handle(new ClientSocketHandle());
675 handle
->SetSocket(scoped_ptr
<StreamSocket
>(new FakeSpdySessionClientSocket(
676 expected_status
== OK
? ERR_IO_PENDING
: expected_status
)));
677 base::WeakPtr
<SpdySession
> spdy_session
=
678 pool
->CreateAvailableSessionFromSocket(
679 key
, handle
.Pass(), BoundNetLog(), OK
, true /* is_secure */);
680 // Failure is reported asynchronously.
681 EXPECT_TRUE(spdy_session
!= NULL
);
682 EXPECT_TRUE(HasSpdySession(pool
, key
));
688 base::WeakPtr
<SpdySession
> CreateFakeSpdySession(SpdySessionPool
* pool
,
689 const SpdySessionKey
& key
) {
690 return CreateFakeSpdySessionHelper(pool
, key
, OK
);
693 base::WeakPtr
<SpdySession
> TryCreateFakeSpdySessionExpectingFailure(
694 SpdySessionPool
* pool
,
695 const SpdySessionKey
& key
,
696 Error expected_error
) {
697 DCHECK_LT(expected_error
, ERR_IO_PENDING
);
698 return CreateFakeSpdySessionHelper(pool
, key
, expected_error
);
701 SpdySessionPoolPeer::SpdySessionPoolPeer(SpdySessionPool
* pool
) : pool_(pool
) {
704 void SpdySessionPoolPeer::RemoveAliases(const SpdySessionKey
& key
) {
705 pool_
->RemoveAliases(key
);
708 void SpdySessionPoolPeer::DisableDomainAuthenticationVerification() {
709 pool_
->verify_domain_authentication_
= false;
712 void SpdySessionPoolPeer::SetEnableSendingInitialData(bool enabled
) {
713 pool_
->enable_sending_initial_data_
= enabled
;
716 SpdyTestUtil::SpdyTestUtil(NextProto protocol
)
717 : protocol_(protocol
),
718 spdy_version_(NextProtoToSpdyMajorVersion(protocol
)) {
719 DCHECK(next_proto_is_spdy(protocol
)) << "Invalid protocol: " << protocol
;
722 void SpdyTestUtil::AddUrlToHeaderBlock(base::StringPiece url
,
723 SpdyHeaderBlock
* headers
) const {
724 std::string scheme
, host
, path
;
725 ParseUrl(url
, &scheme
, &host
, &path
);
726 (*headers
)[GetSchemeKey()] = scheme
;
727 (*headers
)[GetHostKey()] = host
;
728 (*headers
)[GetPathKey()] = path
;
731 scoped_ptr
<SpdyHeaderBlock
> SpdyTestUtil::ConstructGetHeaderBlock(
732 base::StringPiece url
) const {
733 return ConstructHeaderBlock("GET", url
, NULL
);
736 scoped_ptr
<SpdyHeaderBlock
> SpdyTestUtil::ConstructGetHeaderBlockForProxy(
737 base::StringPiece url
) const {
738 scoped_ptr
<SpdyHeaderBlock
> headers(ConstructGetHeaderBlock(url
));
739 return headers
.Pass();
742 scoped_ptr
<SpdyHeaderBlock
> SpdyTestUtil::ConstructHeadHeaderBlock(
743 base::StringPiece url
,
744 int64 content_length
) const {
745 return ConstructHeaderBlock("HEAD", url
, &content_length
);
748 scoped_ptr
<SpdyHeaderBlock
> SpdyTestUtil::ConstructPostHeaderBlock(
749 base::StringPiece url
,
750 int64 content_length
) const {
751 return ConstructHeaderBlock("POST", url
, &content_length
);
754 scoped_ptr
<SpdyHeaderBlock
> SpdyTestUtil::ConstructPutHeaderBlock(
755 base::StringPiece url
,
756 int64 content_length
) const {
757 return ConstructHeaderBlock("PUT", url
, &content_length
);
760 SpdyFrame
* SpdyTestUtil::ConstructSpdyFrame(
761 const SpdyHeaderInfo
& header_info
,
762 scoped_ptr
<SpdyHeaderBlock
> headers
) const {
763 BufferedSpdyFramer
framer(spdy_version_
, header_info
.compressed
);
764 SpdyFrame
* frame
= NULL
;
765 switch (header_info
.kind
) {
767 frame
= framer
.CreateDataFrame(header_info
.id
, header_info
.data
,
768 header_info
.data_length
,
769 header_info
.data_flags
);
773 frame
= framer
.CreateSynStream(header_info
.id
, header_info
.assoc_id
,
774 header_info
.priority
,
775 header_info
.control_flags
,
780 frame
= framer
.CreateSynReply(header_info
.id
, header_info
.control_flags
,
784 frame
= framer
.CreateRstStream(header_info
.id
, header_info
.status
);
787 frame
= framer
.CreateHeaders(header_info
.id
, header_info
.control_flags
,
788 header_info
.priority
,
798 SpdyFrame
* SpdyTestUtil::ConstructSpdyFrame(const SpdyHeaderInfo
& header_info
,
799 const char* const extra_headers
[],
800 int extra_header_count
,
801 const char* const tail_headers
[],
802 int tail_header_count
) const {
803 scoped_ptr
<SpdyHeaderBlock
> headers(new SpdyHeaderBlock());
804 AppendToHeaderBlock(extra_headers
, extra_header_count
, headers
.get());
805 if (tail_headers
&& tail_header_count
)
806 AppendToHeaderBlock(tail_headers
, tail_header_count
, headers
.get());
807 return ConstructSpdyFrame(header_info
, headers
.Pass());
810 SpdyFrame
* SpdyTestUtil::ConstructSpdyControlFrame(
811 scoped_ptr
<SpdyHeaderBlock
> headers
,
813 SpdyStreamId stream_id
,
814 RequestPriority request_priority
,
816 SpdyControlFlags flags
,
817 SpdyStreamId associated_stream_id
) const {
818 EXPECT_GE(type
, DATA
);
819 EXPECT_LE(type
, PRIORITY
);
820 const SpdyHeaderInfo header_info
= {
823 associated_stream_id
,
824 ConvertRequestPriorityToSpdyPriority(request_priority
, spdy_version_
),
825 0, // credential slot
828 RST_STREAM_INVALID
, // status
833 return ConstructSpdyFrame(header_info
, headers
.Pass());
836 SpdyFrame
* SpdyTestUtil::ConstructSpdyControlFrame(
837 const char* const extra_headers
[],
838 int extra_header_count
,
840 SpdyStreamId stream_id
,
841 RequestPriority request_priority
,
843 SpdyControlFlags flags
,
844 const char* const* tail_headers
,
845 int tail_header_size
,
846 SpdyStreamId associated_stream_id
) const {
847 scoped_ptr
<SpdyHeaderBlock
> headers(new SpdyHeaderBlock());
848 AppendToHeaderBlock(extra_headers
, extra_header_count
, headers
.get());
849 if (tail_headers
&& tail_header_size
)
850 AppendToHeaderBlock(tail_headers
, tail_header_size
/ 2, headers
.get());
851 return ConstructSpdyControlFrame(
852 headers
.Pass(), compressed
, stream_id
,
853 request_priority
, type
, flags
, associated_stream_id
);
856 std::string
SpdyTestUtil::ConstructSpdyReplyString(
857 const SpdyHeaderBlock
& headers
) const {
858 std::string reply_string
;
859 for (SpdyHeaderBlock::const_iterator it
= headers
.begin();
860 it
!= headers
.end(); ++it
) {
861 std::string key
= it
->first
;
862 // Remove leading colon from "special" headers (for SPDY3 and
864 if (spdy_version() >= SPDY3
&& key
[0] == ':')
866 std::vector
<std::string
> values
;
867 base::SplitString(it
->second
, '\0', &values
);
868 for (std::vector
<std::string
>::const_iterator it2
= values
.begin();
869 it2
!= values
.end(); ++it2
) {
870 reply_string
+= key
+ ": " + *it2
+ "\n";
876 // TODO(jgraettinger): Eliminate uses of this method in tests (prefer
878 SpdyFrame
* SpdyTestUtil::ConstructSpdySettings(
879 const SettingsMap
& settings
) const {
880 SpdySettingsIR settings_ir
;
881 for (SettingsMap::const_iterator it
= settings
.begin();
882 it
!= settings
.end();
884 settings_ir
.AddSetting(
886 (it
->second
.first
& SETTINGS_FLAG_PLEASE_PERSIST
) != 0,
887 (it
->second
.first
& SETTINGS_FLAG_PERSISTED
) != 0,
890 return CreateFramer(false)->SerializeFrame(settings_ir
);
893 SpdyFrame
* SpdyTestUtil::ConstructSpdySettingsAck() const {
894 char kEmptyWrite
[] = "";
896 if (spdy_version() > SPDY3
) {
897 SpdySettingsIR settings_ir
;
898 settings_ir
.set_is_ack(true);
899 return CreateFramer(false)->SerializeFrame(settings_ir
);
901 // No settings ACK write occurs. Create an empty placeholder write.
902 return new SpdyFrame(kEmptyWrite
, 0, false);
905 SpdyFrame
* SpdyTestUtil::ConstructSpdyPing(uint32 ping_id
, bool is_ack
) const {
906 SpdyPingIR
ping_ir(ping_id
);
907 ping_ir
.set_is_ack(is_ack
);
908 return CreateFramer(false)->SerializeFrame(ping_ir
);
911 SpdyFrame
* SpdyTestUtil::ConstructSpdyGoAway() const {
912 return ConstructSpdyGoAway(0);
915 SpdyFrame
* SpdyTestUtil::ConstructSpdyGoAway(
916 SpdyStreamId last_good_stream_id
) const {
917 SpdyGoAwayIR
go_ir(last_good_stream_id
, GOAWAY_OK
, "go away");
918 return CreateFramer(false)->SerializeFrame(go_ir
);
921 SpdyFrame
* SpdyTestUtil::ConstructSpdyGoAway(SpdyStreamId last_good_stream_id
,
922 SpdyGoAwayStatus status
,
923 const std::string
& desc
) const {
924 SpdyGoAwayIR
go_ir(last_good_stream_id
, status
, desc
);
925 return CreateFramer(false)->SerializeFrame(go_ir
);
928 SpdyFrame
* SpdyTestUtil::ConstructSpdyWindowUpdate(
929 const SpdyStreamId stream_id
, uint32 delta_window_size
) const {
930 SpdyWindowUpdateIR
update_ir(stream_id
, delta_window_size
);
931 return CreateFramer(false)->SerializeFrame(update_ir
);
934 // TODO(jgraettinger): Eliminate uses of this method in tests (prefer
936 SpdyFrame
* SpdyTestUtil::ConstructSpdyRstStream(
937 SpdyStreamId stream_id
,
938 SpdyRstStreamStatus status
) const {
939 SpdyRstStreamIR
rst_ir(stream_id
, status
, "");
940 return CreateFramer(false)->SerializeRstStream(rst_ir
);
943 SpdyFrame
* SpdyTestUtil::ConstructSpdyGet(
944 const char* const url
,
946 SpdyStreamId stream_id
,
947 RequestPriority request_priority
) const {
948 scoped_ptr
<SpdyHeaderBlock
> block(ConstructGetHeaderBlock(url
));
949 return ConstructSpdySyn(
950 stream_id
, *block
, request_priority
, compressed
, true);
953 SpdyFrame
* SpdyTestUtil::ConstructSpdyGet(const char* const extra_headers
[],
954 int extra_header_count
,
957 RequestPriority request_priority
,
959 SpdyHeaderBlock block
;
960 block
[GetMethodKey()] = "GET";
961 block
[GetPathKey()] = "/";
962 block
[GetHostKey()] = "www.google.com";
963 block
[GetSchemeKey()] = "http";
964 MaybeAddVersionHeader(&block
);
965 AppendToHeaderBlock(extra_headers
, extra_header_count
, &block
);
966 return ConstructSpdySyn(stream_id
, block
, request_priority
, compressed
, true);
969 SpdyFrame
* SpdyTestUtil::ConstructSpdyConnect(
970 const char* const extra_headers
[],
971 int extra_header_count
,
973 RequestPriority priority
,
974 const HostPortPair
& host_port_pair
) const {
975 SpdyHeaderBlock block
;
976 block
[GetMethodKey()] = "CONNECT";
977 block
[GetPathKey()] = host_port_pair
.ToString();
978 block
[GetHostKey()] = (host_port_pair
.port() == 443)
979 ? host_port_pair
.host()
980 : host_port_pair
.ToString();
981 MaybeAddVersionHeader(&block
);
982 AppendToHeaderBlock(extra_headers
, extra_header_count
, &block
);
983 return ConstructSpdySyn(stream_id
, block
, priority
, false, false);
986 SpdyFrame
* SpdyTestUtil::ConstructSpdyPush(const char* const extra_headers
[],
987 int extra_header_count
,
989 int associated_stream_id
,
991 if (spdy_version() < SPDY4
) {
992 SpdySynStreamIR
syn_stream(stream_id
);
993 syn_stream
.set_associated_to_stream_id(associated_stream_id
);
994 syn_stream
.SetHeader("hello", "bye");
995 syn_stream
.SetHeader(GetStatusKey(), "200 OK");
996 syn_stream
.SetHeader(GetVersionKey(), "HTTP/1.1");
997 AddUrlToHeaderBlock(url
, syn_stream
.mutable_name_value_block());
998 AppendToHeaderBlock(extra_headers
,
1000 syn_stream
.mutable_name_value_block());
1001 return CreateFramer(false)->SerializeFrame(syn_stream
);
1003 SpdyPushPromiseIR
push_promise(associated_stream_id
, stream_id
);
1004 AddUrlToHeaderBlock(url
, push_promise
.mutable_name_value_block());
1005 scoped_ptr
<SpdyFrame
> push_promise_frame(
1006 CreateFramer(false)->SerializeFrame(push_promise
));
1008 SpdyHeadersIR
headers(stream_id
);
1009 headers
.SetHeader("hello", "bye");
1010 headers
.SetHeader(GetStatusKey(), "200 OK");
1011 AppendToHeaderBlock(
1012 extra_headers
, extra_header_count
, headers
.mutable_name_value_block());
1013 scoped_ptr
<SpdyFrame
> headers_frame(
1014 CreateFramer(false)->SerializeFrame(headers
));
1016 int joint_data_size
= push_promise_frame
->size() + headers_frame
->size();
1017 scoped_ptr
<char[]> data(new char[joint_data_size
]);
1018 const SpdyFrame
* frames
[2] = {
1019 push_promise_frame
.get(), headers_frame
.get(),
1022 CombineFrames(frames
, arraysize(frames
), data
.get(), joint_data_size
);
1023 DCHECK_EQ(combined_size
, joint_data_size
);
1024 return new SpdyFrame(data
.release(), joint_data_size
, true);
1028 SpdyFrame
* SpdyTestUtil::ConstructSpdyPush(const char* const extra_headers
[],
1029 int extra_header_count
,
1031 int associated_stream_id
,
1034 const char* location
) {
1035 if (spdy_version() < SPDY4
) {
1036 SpdySynStreamIR
syn_stream(stream_id
);
1037 syn_stream
.set_associated_to_stream_id(associated_stream_id
);
1038 syn_stream
.SetHeader("hello", "bye");
1039 syn_stream
.SetHeader(GetStatusKey(), status
);
1040 syn_stream
.SetHeader(GetVersionKey(), "HTTP/1.1");
1041 syn_stream
.SetHeader("location", location
);
1042 AddUrlToHeaderBlock(url
, syn_stream
.mutable_name_value_block());
1043 AppendToHeaderBlock(extra_headers
,
1045 syn_stream
.mutable_name_value_block());
1046 return CreateFramer(false)->SerializeFrame(syn_stream
);
1048 SpdyPushPromiseIR
push_promise(associated_stream_id
, stream_id
);
1049 AddUrlToHeaderBlock(url
, push_promise
.mutable_name_value_block());
1050 scoped_ptr
<SpdyFrame
> push_promise_frame(
1051 CreateFramer(false)->SerializeFrame(push_promise
));
1053 SpdyHeadersIR
headers(stream_id
);
1054 headers
.SetHeader("hello", "bye");
1055 headers
.SetHeader(GetStatusKey(), status
);
1056 headers
.SetHeader("location", location
);
1057 AppendToHeaderBlock(
1058 extra_headers
, extra_header_count
, headers
.mutable_name_value_block());
1059 scoped_ptr
<SpdyFrame
> headers_frame(
1060 CreateFramer(false)->SerializeFrame(headers
));
1062 int joint_data_size
= push_promise_frame
->size() + headers_frame
->size();
1063 scoped_ptr
<char[]> data(new char[joint_data_size
]);
1064 const SpdyFrame
* frames
[2] = {
1065 push_promise_frame
.get(), headers_frame
.get(),
1068 CombineFrames(frames
, arraysize(frames
), data
.get(), joint_data_size
);
1069 DCHECK_EQ(combined_size
, joint_data_size
);
1070 return new SpdyFrame(data
.release(), joint_data_size
, true);
1074 SpdyFrame
* SpdyTestUtil::ConstructInitialSpdyPushFrame(
1075 scoped_ptr
<SpdyHeaderBlock
> headers
,
1077 int associated_stream_id
) {
1078 if (spdy_version() < SPDY4
) {
1079 SpdySynStreamIR
syn_stream(stream_id
);
1080 syn_stream
.set_associated_to_stream_id(associated_stream_id
);
1081 SetPriority(LOWEST
, &syn_stream
);
1082 syn_stream
.set_name_value_block(*headers
);
1083 return CreateFramer(false)->SerializeFrame(syn_stream
);
1085 SpdyPushPromiseIR
push_promise(associated_stream_id
, stream_id
);
1086 push_promise
.set_name_value_block(*headers
);
1087 return CreateFramer(false)->SerializeFrame(push_promise
);
1091 SpdyFrame
* SpdyTestUtil::ConstructSpdyPushHeaders(
1093 const char* const extra_headers
[],
1094 int extra_header_count
) {
1095 SpdyHeadersIR
headers(stream_id
);
1096 headers
.SetHeader(GetStatusKey(), "200 OK");
1097 MaybeAddVersionHeader(&headers
);
1098 AppendToHeaderBlock(extra_headers
, extra_header_count
,
1099 headers
.mutable_name_value_block());
1100 return CreateFramer(false)->SerializeFrame(headers
);
1103 SpdyFrame
* SpdyTestUtil::ConstructSpdySyn(int stream_id
,
1104 const SpdyHeaderBlock
& block
,
1105 RequestPriority priority
,
1108 if (protocol_
< kProtoSPDY4MinimumVersion
) {
1109 SpdySynStreamIR
syn_stream(stream_id
);
1110 syn_stream
.set_name_value_block(block
);
1111 syn_stream
.set_priority(
1112 ConvertRequestPriorityToSpdyPriority(priority
, spdy_version()));
1113 syn_stream
.set_fin(fin
);
1114 return CreateFramer(compressed
)->SerializeFrame(syn_stream
);
1116 SpdyHeadersIR
headers(stream_id
);
1117 headers
.set_name_value_block(block
);
1118 headers
.set_has_priority(true);
1119 headers
.set_priority(
1120 ConvertRequestPriorityToSpdyPriority(priority
, spdy_version()));
1121 headers
.set_fin(fin
);
1122 return CreateFramer(compressed
)->SerializeFrame(headers
);
1126 SpdyFrame
* SpdyTestUtil::ConstructSpdyReply(int stream_id
,
1127 const SpdyHeaderBlock
& headers
) {
1128 if (protocol_
< kProtoSPDY4MinimumVersion
) {
1129 SpdySynReplyIR
syn_reply(stream_id
);
1130 syn_reply
.set_name_value_block(headers
);
1131 return CreateFramer(false)->SerializeFrame(syn_reply
);
1133 SpdyHeadersIR
reply(stream_id
);
1134 reply
.set_name_value_block(headers
);
1135 return CreateFramer(false)->SerializeFrame(reply
);
1139 SpdyFrame
* SpdyTestUtil::ConstructSpdySynReplyError(
1140 const char* const status
,
1141 const char* const* const extra_headers
,
1142 int extra_header_count
,
1144 SpdyHeaderBlock block
;
1145 block
["hello"] = "bye";
1146 block
[GetStatusKey()] = status
;
1147 MaybeAddVersionHeader(&block
);
1148 AppendToHeaderBlock(extra_headers
, extra_header_count
, &block
);
1150 return ConstructSpdyReply(stream_id
, block
);
1153 SpdyFrame
* SpdyTestUtil::ConstructSpdyGetSynReplyRedirect(int stream_id
) {
1154 static const char* const kExtraHeaders
[] = {
1155 "location", "http://www.foo.com/index.php",
1157 return ConstructSpdySynReplyError("301 Moved Permanently", kExtraHeaders
,
1158 arraysize(kExtraHeaders
)/2, stream_id
);
1161 SpdyFrame
* SpdyTestUtil::ConstructSpdySynReplyError(int stream_id
) {
1162 return ConstructSpdySynReplyError("500 Internal Server Error", NULL
, 0, 1);
1165 SpdyFrame
* SpdyTestUtil::ConstructSpdyGetSynReply(
1166 const char* const extra_headers
[],
1167 int extra_header_count
,
1169 SpdyHeaderBlock block
;
1170 block
["hello"] = "bye";
1171 block
[GetStatusKey()] = "200";
1172 MaybeAddVersionHeader(&block
);
1173 AppendToHeaderBlock(extra_headers
, extra_header_count
, &block
);
1175 return ConstructSpdyReply(stream_id
, block
);
1178 SpdyFrame
* SpdyTestUtil::ConstructSpdyPost(const char* url
,
1179 SpdyStreamId stream_id
,
1180 int64 content_length
,
1181 RequestPriority priority
,
1182 const char* const extra_headers
[],
1183 int extra_header_count
) {
1184 scoped_ptr
<SpdyHeaderBlock
> block(
1185 ConstructPostHeaderBlock(url
, content_length
));
1186 AppendToHeaderBlock(extra_headers
, extra_header_count
, block
.get());
1187 return ConstructSpdySyn(stream_id
, *block
, priority
, false, false);
1190 SpdyFrame
* SpdyTestUtil::ConstructChunkedSpdyPost(
1191 const char* const extra_headers
[],
1192 int extra_header_count
) {
1193 SpdyHeaderBlock block
;
1194 block
[GetMethodKey()] = "POST";
1195 block
[GetPathKey()] = "/";
1196 block
[GetHostKey()] = "www.google.com";
1197 block
[GetSchemeKey()] = "http";
1198 MaybeAddVersionHeader(&block
);
1199 AppendToHeaderBlock(extra_headers
, extra_header_count
, &block
);
1200 return ConstructSpdySyn(1, block
, LOWEST
, false, false);
1203 SpdyFrame
* SpdyTestUtil::ConstructSpdyPostSynReply(
1204 const char* const extra_headers
[],
1205 int extra_header_count
) {
1206 // TODO(jgraettinger): Remove this method.
1207 return ConstructSpdyGetSynReply(NULL
, 0, 1);
1210 SpdyFrame
* SpdyTestUtil::ConstructSpdyBodyFrame(int stream_id
, bool fin
) {
1211 SpdyFramer
framer(spdy_version_
);
1212 SpdyDataIR
data_ir(stream_id
,
1213 base::StringPiece(kUploadData
, kUploadDataSize
));
1214 data_ir
.set_fin(fin
);
1215 return framer
.SerializeData(data_ir
);
1218 SpdyFrame
* SpdyTestUtil::ConstructSpdyBodyFrame(int stream_id
,
1222 SpdyFramer
framer(spdy_version_
);
1223 SpdyDataIR
data_ir(stream_id
, base::StringPiece(data
, len
));
1224 data_ir
.set_fin(fin
);
1225 return framer
.SerializeData(data_ir
);
1228 SpdyFrame
* SpdyTestUtil::ConstructSpdyBodyFrame(int stream_id
,
1232 int padding_length
) {
1233 SpdyFramer
framer(spdy_version_
);
1234 SpdyDataIR
data_ir(stream_id
, base::StringPiece(data
, len
));
1235 data_ir
.set_fin(fin
);
1236 data_ir
.set_padding_len(padding_length
);
1237 return framer
.SerializeData(data_ir
);
1240 SpdyFrame
* SpdyTestUtil::ConstructWrappedSpdyFrame(
1241 const scoped_ptr
<SpdyFrame
>& frame
,
1243 return ConstructSpdyBodyFrame(stream_id
, frame
->data(),
1244 frame
->size(), false);
1247 const SpdyHeaderInfo
SpdyTestUtil::MakeSpdyHeader(SpdyFrameType type
) {
1248 const SpdyHeaderInfo kHeader
= {
1251 0, // Associated stream ID
1252 ConvertRequestPriorityToSpdyPriority(LOWEST
, spdy_version_
),
1253 kSpdyCredentialSlotUnused
,
1254 CONTROL_FLAG_FIN
, // Control Flags
1255 false, // Compressed
1264 scoped_ptr
<SpdyFramer
> SpdyTestUtil::CreateFramer(bool compressed
) const {
1265 scoped_ptr
<SpdyFramer
> framer(new SpdyFramer(spdy_version_
));
1266 framer
->set_enable_compression(compressed
);
1267 return framer
.Pass();
1270 const char* SpdyTestUtil::GetMethodKey() const {
1274 const char* SpdyTestUtil::GetStatusKey() const {
1278 const char* SpdyTestUtil::GetHostKey() const {
1279 if (protocol_
< kProtoSPDY4MinimumVersion
)
1282 return ":authority";
1285 const char* SpdyTestUtil::GetSchemeKey() const {
1289 const char* SpdyTestUtil::GetVersionKey() const {
1293 const char* SpdyTestUtil::GetPathKey() const {
1297 scoped_ptr
<SpdyHeaderBlock
> SpdyTestUtil::ConstructHeaderBlock(
1298 base::StringPiece method
,
1299 base::StringPiece url
,
1300 int64
* content_length
) const {
1301 std::string scheme
, host
, path
;
1302 ParseUrl(url
.data(), &scheme
, &host
, &path
);
1303 scoped_ptr
<SpdyHeaderBlock
> headers(new SpdyHeaderBlock());
1304 (*headers
)[GetMethodKey()] = method
.as_string();
1305 (*headers
)[GetPathKey()] = path
.c_str();
1306 (*headers
)[GetHostKey()] = host
.c_str();
1307 (*headers
)[GetSchemeKey()] = scheme
.c_str();
1308 if (include_version_header()) {
1309 (*headers
)[GetVersionKey()] = "HTTP/1.1";
1311 if (content_length
) {
1312 std::string length_str
= base::Int64ToString(*content_length
);
1313 (*headers
)["content-length"] = length_str
;
1315 return headers
.Pass();
1318 void SpdyTestUtil::MaybeAddVersionHeader(
1319 SpdyFrameWithNameValueBlockIR
* frame_ir
) const {
1320 if (include_version_header()) {
1321 frame_ir
->SetHeader(GetVersionKey(), "HTTP/1.1");
1325 void SpdyTestUtil::MaybeAddVersionHeader(SpdyHeaderBlock
* block
) const {
1326 if (include_version_header()) {
1327 (*block
)[GetVersionKey()] = "HTTP/1.1";
1331 void SpdyTestUtil::SetPriority(RequestPriority priority
,
1332 SpdySynStreamIR
* ir
) const {
1333 ir
->set_priority(ConvertRequestPriorityToSpdyPriority(
1334 priority
, spdy_version()));