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/quic/quic_crypto_client_stream.h" | 5 #include "net/quic/quic_crypto_client_stream.h" |
6 | 6 |
7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
8 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" | 8 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" |
9 #include "net/quic/crypto/quic_decrypter.h" | 9 #include "net/quic/crypto/quic_decrypter.h" |
10 #include "net/quic/crypto/quic_encrypter.h" | 10 #include "net/quic/crypto/quic_encrypter.h" |
11 #include "net/quic/quic_flags.h" | 11 #include "net/quic/quic_flags.h" |
12 #include "net/quic/quic_protocol.h" | 12 #include "net/quic/quic_protocol.h" |
13 #include "net/quic/quic_server_id.h" | 13 #include "net/quic/quic_server_id.h" |
14 #include "net/quic/quic_utils.h" | 14 #include "net/quic/quic_utils.h" |
15 #include "net/quic/test_tools/crypto_test_utils.h" | 15 #include "net/quic/test_tools/crypto_test_utils.h" |
16 #include "net/quic/test_tools/quic_test_utils.h" | 16 #include "net/quic/test_tools/quic_test_utils.h" |
17 #include "net/quic/test_tools/simple_quic_framer.h" | 17 #include "net/quic/test_tools/simple_quic_framer.h" |
18 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 | 20 |
| 21 using std::string; |
| 22 |
21 namespace net { | 23 namespace net { |
22 namespace test { | 24 namespace test { |
23 namespace { | 25 namespace { |
24 | 26 |
25 const char kServerHostname[] = "example.com"; | 27 const char kServerHostname[] = "example.com"; |
26 const uint16 kServerPort = 80; | 28 const uint16 kServerPort = 80; |
27 | 29 |
28 class QuicCryptoClientStreamTest : public ::testing::Test { | 30 class QuicCryptoClientStreamTest : public ::testing::Test { |
29 public: | 31 public: |
30 QuicCryptoClientStreamTest() | 32 QuicCryptoClientStreamTest() |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 | 93 |
92 TEST_F(QuicCryptoClientStreamTest, NegotiatedParameters) { | 94 TEST_F(QuicCryptoClientStreamTest, NegotiatedParameters) { |
93 CompleteCryptoHandshake(); | 95 CompleteCryptoHandshake(); |
94 | 96 |
95 const QuicConfig* config = session_->config(); | 97 const QuicConfig* config = session_->config(); |
96 EXPECT_EQ(kQBIC, config->CongestionFeedback()); | 98 EXPECT_EQ(kQBIC, config->CongestionFeedback()); |
97 EXPECT_EQ(kMaximumIdleTimeoutSecs, | 99 EXPECT_EQ(kMaximumIdleTimeoutSecs, |
98 config->IdleConnectionStateLifetime().ToSeconds()); | 100 config->IdleConnectionStateLifetime().ToSeconds()); |
99 EXPECT_EQ(kDefaultMaxStreamsPerConnection, | 101 EXPECT_EQ(kDefaultMaxStreamsPerConnection, |
100 config->MaxStreamsPerConnection()); | 102 config->MaxStreamsPerConnection()); |
101 EXPECT_EQ(0, config->KeepaliveTimeout().ToSeconds()); | |
102 | 103 |
103 const QuicCryptoNegotiatedParameters& crypto_params( | 104 const QuicCryptoNegotiatedParameters& crypto_params( |
104 stream_->crypto_negotiated_params()); | 105 stream_->crypto_negotiated_params()); |
105 EXPECT_EQ(crypto_config_.aead[0], crypto_params.aead); | 106 EXPECT_EQ(crypto_config_.aead[0], crypto_params.aead); |
106 EXPECT_EQ(crypto_config_.kexs[0], crypto_params.key_exchange); | 107 EXPECT_EQ(crypto_config_.kexs[0], crypto_params.key_exchange); |
107 } | 108 } |
108 | 109 |
109 TEST_F(QuicCryptoClientStreamTest, InvalidHostname) { | 110 TEST_F(QuicCryptoClientStreamTest, InvalidHostname) { |
110 QuicServerId server_id("invalid", 80, false, PRIVACY_MODE_DISABLED); | 111 QuicServerId server_id("invalid", 80, false, PRIVACY_MODE_DISABLED); |
111 stream_.reset(new QuicCryptoClientStream(server_id, session_.get(), nullptr, | 112 stream_.reset(new QuicCryptoClientStream(server_id, session_.get(), nullptr, |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 CryptoHandshakeMessage server_config_update; | 196 CryptoHandshakeMessage server_config_update; |
196 server_config_update.set_tag(kSCUP); | 197 server_config_update.set_tag(kSCUP); |
197 scoped_ptr<QuicData> data( | 198 scoped_ptr<QuicData> data( |
198 CryptoFramer::ConstructHandshakeMessage(server_config_update)); | 199 CryptoFramer::ConstructHandshakeMessage(server_config_update)); |
199 stream_->ProcessRawData(data->data(), data->length()); | 200 stream_->ProcessRawData(data->data(), data->length()); |
200 } | 201 } |
201 | 202 |
202 } // namespace | 203 } // namespace |
203 } // namespace test | 204 } // namespace test |
204 } // namespace net | 205 } // namespace net |
OLD | NEW |