[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 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 |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "net/quic/quic_client_session.h" |
| 6 | |
| 7 | #include <vector> |
| 8 | |
[email protected] | 4d283b3 | 2013-10-17 12:57:27 | [diff] [blame] | 9 | #include "base/rand_util.h" |
[email protected] | 0d10b59 | 2013-02-14 16:09:26 | [diff] [blame] | 10 | #include "net/base/capturing_net_log.h" |
[email protected] | 8ee611b | 2012-11-20 01:48:12 | [diff] [blame] | 11 | #include "net/base/test_completion_callback.h" |
[email protected] | 0bbeb697 | 2013-05-23 04:10:21 | [diff] [blame] | 12 | #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 13 | #include "net/quic/crypto/crypto_protocol.h" |
[email protected] | 4df6984 | 2013-02-27 06:32:16 | [diff] [blame] | 14 | #include "net/quic/crypto/quic_decrypter.h" |
| 15 | #include "net/quic/crypto/quic_encrypter.h" |
[email protected] | cbd731e | 2013-10-24 00:20:39 | [diff] [blame] | 16 | #include "net/quic/quic_default_packet_writer.h" |
[email protected] | ed3fc15d | 2013-03-08 18:37:44 | [diff] [blame] | 17 | #include "net/quic/test_tools/crypto_test_utils.h" |
[email protected] | 89995165 | 2013-05-16 12:52:39 | [diff] [blame] | 18 | #include "net/quic/test_tools/quic_client_session_peer.h" |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 19 | #include "net/quic/test_tools/quic_test_utils.h" |
[email protected] | 4d283b3 | 2013-10-17 12:57:27 | [diff] [blame] | 20 | #include "net/socket/socket_test_util.h" |
[email protected] | 18ccfdb | 2013-08-15 00:13:44 | [diff] [blame] | 21 | #include "net/udp/datagram_client_socket.h" |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 22 | |
| 23 | using testing::_; |
| 24 | |
| 25 | namespace net { |
| 26 | namespace test { |
| 27 | namespace { |
| 28 | |
[email protected] | 41d6b17 | 2013-01-29 16:10:57 | [diff] [blame] | 29 | const char kServerHostname[] = "www.example.com"; |
| 30 | |
[email protected] | cbd731e | 2013-10-24 00:20:39 | [diff] [blame] | 31 | class TestPacketWriter : public QuicDefaultPacketWriter { |
| 32 | public: |
| 33 | TestPacketWriter() { |
| 34 | } |
| 35 | |
| 36 | // QuicPacketWriter |
| 37 | virtual WriteResult WritePacket( |
| 38 | const char* buffer, size_t buf_len, |
| 39 | const IPAddressNumber& self_address, |
[email protected] | c5e1aca | 2014-01-30 04:03:04 | [diff] [blame] | 40 | const IPEndPoint& peer_address) OVERRIDE { |
[email protected] | b007e63 | 2013-10-28 08:39:25 | [diff] [blame] | 41 | QuicFramer framer(QuicSupportedVersions(), QuicTime::Zero(), true); |
[email protected] | cbd731e | 2013-10-24 00:20:39 | [diff] [blame] | 42 | FramerVisitorCapturingFrames visitor; |
| 43 | framer.set_visitor(&visitor); |
| 44 | QuicEncryptedPacket packet(buffer, buf_len); |
| 45 | EXPECT_TRUE(framer.ProcessPacket(packet)); |
| 46 | header_ = *visitor.header(); |
| 47 | return WriteResult(WRITE_STATUS_OK, packet.length()); |
| 48 | } |
| 49 | |
| 50 | virtual bool IsWriteBlockedDataBuffered() const OVERRIDE { |
| 51 | // Chrome sockets' Write() methods buffer the data until the Write is |
| 52 | // permitted. |
| 53 | return true; |
| 54 | } |
| 55 | |
| 56 | // Returns the header from the last packet written. |
| 57 | const QuicPacketHeader& header() { return header_; } |
| 58 | |
| 59 | private: |
| 60 | QuicPacketHeader header_; |
| 61 | }; |
| 62 | |
[email protected] | 4d64079 | 2013-12-18 22:21:08 | [diff] [blame] | 63 | class QuicClientSessionTest : public ::testing::TestWithParam<QuicVersion> { |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 64 | protected: |
| 65 | QuicClientSessionTest() |
[email protected] | c05a6d22 | 2013-12-16 19:42:03 | [diff] [blame] | 66 | : writer_(new TestPacketWriter()), |
[email protected] | 5d45daa | 2014-01-02 21:07:46 | [diff] [blame] | 67 | connection_( |
| 68 | new PacketSavingConnection(false, SupportedVersions(GetParam()))), |
[email protected] | cbd731e | 2013-10-24 00:20:39 | [diff] [blame] | 69 | session_(connection_, GetSocket().Pass(), writer_.Pass(), NULL, NULL, |
| 70 | kServerHostname, DefaultQuicConfig(), &crypto_config_, |
[email protected] | 18ccfdb | 2013-08-15 00:13:44 | [diff] [blame] | 71 | &net_log_) { |
[email protected] | 47a7154 | 2013-05-17 07:58:54 | [diff] [blame] | 72 | session_.config()->SetDefaults(); |
[email protected] | ef95114d | 2013-04-17 17:57:01 | [diff] [blame] | 73 | crypto_config_.SetDefaults(); |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 74 | } |
| 75 | |
[email protected] | 4d283b3 | 2013-10-17 12:57:27 | [diff] [blame] | 76 | virtual void TearDown() OVERRIDE { |
| 77 | session_.CloseSessionOnError(ERR_ABORTED); |
| 78 | } |
| 79 | |
| 80 | scoped_ptr<DatagramClientSocket> GetSocket() { |
| 81 | socket_factory_.AddSocketDataProvider(&socket_data_); |
| 82 | return socket_factory_.CreateDatagramClientSocket( |
| 83 | DatagramSocket::DEFAULT_BIND, base::Bind(&base::RandInt), |
| 84 | &net_log_, NetLog::Source()); |
| 85 | } |
| 86 | |
[email protected] | ed3fc15d | 2013-03-08 18:37:44 | [diff] [blame] | 87 | void CompleteCryptoHandshake() { |
| 88 | ASSERT_EQ(ERR_IO_PENDING, |
[email protected] | 11c0587 | 2013-08-20 02:04:12 | [diff] [blame] | 89 | session_.CryptoConnect(false, callback_.callback())); |
[email protected] | e8ff2684 | 2013-03-22 21:02:05 | [diff] [blame] | 90 | CryptoTestUtils::HandshakeWithFakeServer( |
| 91 | connection_, session_.GetCryptoStream()); |
[email protected] | ed3fc15d | 2013-03-08 18:37:44 | [diff] [blame] | 92 | ASSERT_EQ(OK, callback_.WaitForResult()); |
[email protected] | ed3fc15d | 2013-03-08 18:37:44 | [diff] [blame] | 93 | } |
| 94 | |
[email protected] | cbd731e | 2013-10-24 00:20:39 | [diff] [blame] | 95 | scoped_ptr<QuicDefaultPacketWriter> writer_; |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 96 | PacketSavingConnection* connection_; |
[email protected] | ed3fc15d | 2013-03-08 18:37:44 | [diff] [blame] | 97 | CapturingNetLog net_log_; |
[email protected] | 4d283b3 | 2013-10-17 12:57:27 | [diff] [blame] | 98 | MockClientSocketFactory socket_factory_; |
| 99 | StaticSocketDataProvider socket_data_; |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 100 | QuicClientSession session_; |
[email protected] | ed3fc15d | 2013-03-08 18:37:44 | [diff] [blame] | 101 | MockClock clock_; |
| 102 | MockRandom random_; |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 103 | QuicConnectionVisitorInterface* visitor_; |
[email protected] | 8ee611b | 2012-11-20 01:48:12 | [diff] [blame] | 104 | TestCompletionCallback callback_; |
[email protected] | ef95114d | 2013-04-17 17:57:01 | [diff] [blame] | 105 | QuicCryptoClientConfig crypto_config_; |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 106 | }; |
| 107 | |
[email protected] | 4d64079 | 2013-12-18 22:21:08 | [diff] [blame] | 108 | INSTANTIATE_TEST_CASE_P(Tests, QuicClientSessionTest, |
| 109 | ::testing::ValuesIn(QuicSupportedVersions())); |
| 110 | |
| 111 | TEST_P(QuicClientSessionTest, CryptoConnect) { |
[email protected] | ed3fc15d | 2013-03-08 18:37:44 | [diff] [blame] | 112 | CompleteCryptoHandshake(); |
[email protected] | 8ee611b | 2012-11-20 01:48:12 | [diff] [blame] | 113 | } |
| 114 | |
[email protected] | 4d64079 | 2013-12-18 22:21:08 | [diff] [blame] | 115 | TEST_P(QuicClientSessionTest, MaxNumStreams) { |
[email protected] | ed3fc15d | 2013-03-08 18:37:44 | [diff] [blame] | 116 | CompleteCryptoHandshake(); |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 117 | |
| 118 | std::vector<QuicReliableClientStream*> streams; |
| 119 | for (size_t i = 0; i < kDefaultMaxStreamsPerConnection; i++) { |
[email protected] | 457d695 | 2013-12-13 09:24:58 | [diff] [blame] | 120 | QuicReliableClientStream* stream = session_.CreateOutgoingDataStream(); |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 121 | EXPECT_TRUE(stream); |
[email protected] | f702d57 | 2012-12-04 15:56:20 | [diff] [blame] | 122 | streams.push_back(stream); |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 123 | } |
[email protected] | 457d695 | 2013-12-13 09:24:58 | [diff] [blame] | 124 | EXPECT_FALSE(session_.CreateOutgoingDataStream()); |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 125 | |
| 126 | // Close a stream and ensure I can now open a new one. |
| 127 | session_.CloseStream(streams[0]->id()); |
[email protected] | 457d695 | 2013-12-13 09:24:58 | [diff] [blame] | 128 | EXPECT_TRUE(session_.CreateOutgoingDataStream()); |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 129 | } |
| 130 | |
[email protected] | 4d64079 | 2013-12-18 22:21:08 | [diff] [blame] | 131 | TEST_P(QuicClientSessionTest, MaxNumStreamsViaRequest) { |
[email protected] | 0b2294d3 | 2013-08-02 00:46:36 | [diff] [blame] | 132 | CompleteCryptoHandshake(); |
| 133 | |
| 134 | std::vector<QuicReliableClientStream*> streams; |
| 135 | for (size_t i = 0; i < kDefaultMaxStreamsPerConnection; i++) { |
[email protected] | 457d695 | 2013-12-13 09:24:58 | [diff] [blame] | 136 | QuicReliableClientStream* stream = session_.CreateOutgoingDataStream(); |
[email protected] | 0b2294d3 | 2013-08-02 00:46:36 | [diff] [blame] | 137 | EXPECT_TRUE(stream); |
| 138 | streams.push_back(stream); |
| 139 | } |
| 140 | |
| 141 | QuicReliableClientStream* stream; |
| 142 | QuicClientSession::StreamRequest stream_request; |
| 143 | TestCompletionCallback callback; |
| 144 | ASSERT_EQ(ERR_IO_PENDING, |
| 145 | stream_request.StartRequest(session_.GetWeakPtr(), &stream, |
| 146 | callback.callback())); |
| 147 | |
| 148 | // Close a stream and ensure I can now open a new one. |
| 149 | session_.CloseStream(streams[0]->id()); |
| 150 | ASSERT_TRUE(callback.have_result()); |
| 151 | EXPECT_EQ(OK, callback.WaitForResult()); |
| 152 | EXPECT_TRUE(stream != NULL); |
| 153 | } |
| 154 | |
[email protected] | 4d64079 | 2013-12-18 22:21:08 | [diff] [blame] | 155 | TEST_P(QuicClientSessionTest, GoAwayReceived) { |
[email protected] | 8ba8121 | 2013-05-03 13:11:48 | [diff] [blame] | 156 | CompleteCryptoHandshake(); |
[email protected] | 9db44391 | 2013-02-25 05:27:03 | [diff] [blame] | 157 | |
| 158 | // After receiving a GoAway, I should no longer be able to create outgoing |
| 159 | // streams. |
| 160 | session_.OnGoAway(QuicGoAwayFrame(QUIC_PEER_GOING_AWAY, 1u, "Going away.")); |
[email protected] | 457d695 | 2013-12-13 09:24:58 | [diff] [blame] | 161 | EXPECT_EQ(NULL, session_.CreateOutgoingDataStream()); |
[email protected] | 9db44391 | 2013-02-25 05:27:03 | [diff] [blame] | 162 | } |
| 163 | |
[email protected] | dd3fd0e | 2012-11-04 05:14:40 | [diff] [blame] | 164 | } // namespace |
| 165 | } // namespace test |
| 166 | } // namespace net |