| 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 <string> |
| 8 |
| 7 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 8 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" | 10 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" |
| 9 #include "net/quic/crypto/quic_decrypter.h" | 11 #include "net/quic/crypto/quic_decrypter.h" |
| 10 #include "net/quic/crypto/quic_encrypter.h" | 12 #include "net/quic/crypto/quic_encrypter.h" |
| 11 #include "net/quic/quic_flags.h" | 13 #include "net/quic/quic_flags.h" |
| 12 #include "net/quic/quic_protocol.h" | 14 #include "net/quic/quic_protocol.h" |
| 13 #include "net/quic/quic_server_id.h" | 15 #include "net/quic/quic_server_id.h" |
| 14 #include "net/quic/quic_utils.h" | 16 #include "net/quic/quic_utils.h" |
| 15 #include "net/quic/test_tools/crypto_test_utils.h" | 17 #include "net/quic/test_tools/crypto_test_utils.h" |
| 16 #include "net/quic/test_tools/quic_test_utils.h" | 18 #include "net/quic/test_tools/quic_test_utils.h" |
| 17 #include "net/quic/test_tools/simple_quic_framer.h" | 19 #include "net/quic/test_tools/simple_quic_framer.h" |
| 18 #include "testing/gmock/include/gmock/gmock.h" | 20 #include "testing/gmock/include/gmock/gmock.h" |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
| 20 | 22 |
| 23 using std::string; |
| 24 |
| 21 namespace net { | 25 namespace net { |
| 22 namespace test { | 26 namespace test { |
| 23 namespace { | 27 namespace { |
| 24 | 28 |
| 25 const char kServerHostname[] = "example.com"; | 29 const char kServerHostname[] = "example.com"; |
| 26 const uint16 kServerPort = 80; | 30 const uint16 kServerPort = 80; |
| 27 | 31 |
| 28 class QuicCryptoClientStreamTest : public ::testing::Test { | 32 class QuicCryptoClientStreamTest : public ::testing::Test { |
| 29 public: | 33 public: |
| 30 QuicCryptoClientStreamTest() | 34 QuicCryptoClientStreamTest() |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 CryptoHandshakeMessage server_config_update; | 199 CryptoHandshakeMessage server_config_update; |
| 196 server_config_update.set_tag(kSCUP); | 200 server_config_update.set_tag(kSCUP); |
| 197 scoped_ptr<QuicData> data( | 201 scoped_ptr<QuicData> data( |
| 198 CryptoFramer::ConstructHandshakeMessage(server_config_update)); | 202 CryptoFramer::ConstructHandshakeMessage(server_config_update)); |
| 199 stream_->ProcessRawData(data->data(), data->length()); | 203 stream_->ProcessRawData(data->data(), data->length()); |
| 200 } | 204 } |
| 201 | 205 |
| 202 } // namespace | 206 } // namespace |
| 203 } // namespace test | 207 } // namespace test |
| 204 } // namespace net | 208 } // namespace net |
| OLD | NEW |