Chromium Code Reviews| Index: net/url_request/url_request_unittest.cc |
| diff --git a/net/url_request/url_request_unittest.cc b/net/url_request/url_request_unittest.cc |
| index e3a3be87753fd552f242db38558a6d87c7b6e522..51e2eae0eec15794c19424edac50d5ba28993649 100644 |
| --- a/net/url_request/url_request_unittest.cc |
| +++ b/net/url_request/url_request_unittest.cc |
| @@ -5406,6 +5406,44 @@ TEST_F(HTTPSRequestTest, SSLSessionCacheShardTest) { |
| } |
| } |
| +TEST_F(HTTPSRequestTest, ClientHelloTest) { |
| + // Check that our ClientHello doesn't get too large because that's known to |
| + // cause issues. |
| + |
| + SpawnedTestServer::SSLOptions ssl_options; |
| + SpawnedTestServer test_server( |
| + SpawnedTestServer::TYPE_HTTPS, |
| + ssl_options, |
| + base::FilePath(FILE_PATH_LITERAL("net/data/ssl"))); |
| + ASSERT_TRUE(test_server.Start()); |
| + |
| + HttpStreamFactory::EnableNpnSpdy4a2(); |
|
Ryan Sleevi
2013/07/23 20:50:02
Need a comment explaining why this is being called
agl
2013/07/24 18:09:18
Done. This will be reset by NetTestSuite; have not
|
| + |
| + TestDelegate d; |
| + URLRequest r( |
| + test_server.GetURL("client-hello-length"), &d, &default_context_); |
| + |
| + r.Start(); |
| + EXPECT_TRUE(r.is_pending()); |
| + |
| + base::MessageLoop::current()->Run(); |
| + |
| + // The response will be a single, base 10 number which is the number of bytes |
| + // in the ClientHello, including the handshake message type byte and 3 byte |
| + // length at the beginning. |
| + |
| + EXPECT_EQ(1, d.response_started_count()); |
| + unsigned client_hello_length; |
| + ASSERT_TRUE(base::StringToUint(d.data_received(), &client_hello_length)); |
| + const unsigned sni_overhead = 2 /* extension type */ + |
| + 2 /* extension length */ + |
| + 4 /* lengths in the server_name extension */ + |
| + strlen("www.wellsfargo.com"); |
|
Ryan Sleevi
2013/07/23 20:50:02
I don't quite get why you chose this, or incorpora
agl
2013/07/24 18:09:18
www.wellsfargo.com is probably the biggest site wi
|
| + static const unsigned session_id_overhead = 32; |
| + |
| + EXPECT_LT(client_hello_length + sni_overhead + session_id_overhead, 256u); |
| +} |
| + |
| class TestSSLConfigService : public SSLConfigService { |
| public: |
| TestSSLConfigService(bool ev_enabled, bool online_rev_checking) |