| 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_stream.h" | 5 #include "net/quic/quic_crypto_stream.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 sizeof(uint16); // padding | 95 sizeof(uint16); // padding |
| 96 EXPECT_EQ(1, bad[kFirstTagIndex]); | 96 EXPECT_EQ(1, bad[kFirstTagIndex]); |
| 97 bad[kFirstTagIndex] = 0x7F; // out of order tag | 97 bad[kFirstTagIndex] = 0x7F; // out of order tag |
| 98 | 98 |
| 99 EXPECT_CALL(*connection_, | 99 EXPECT_CALL(*connection_, |
| 100 SendConnectionClose(QUIC_CRYPTO_TAGS_OUT_OF_ORDER)); | 100 SendConnectionClose(QUIC_CRYPTO_TAGS_OUT_OF_ORDER)); |
| 101 EXPECT_EQ(0u, stream_.ProcessRawData(bad.data(), bad.length())); | 101 EXPECT_EQ(0u, stream_.ProcessRawData(bad.data(), bad.length())); |
| 102 } | 102 } |
| 103 | 103 |
| 104 TEST_F(QuicCryptoStreamTest, NoConnectionLevelFlowControl) { | 104 TEST_F(QuicCryptoStreamTest, NoConnectionLevelFlowControl) { |
| 105 if (connection_->version() < QUIC_VERSION_21) { | 105 EXPECT_TRUE(stream_.flow_controller()->IsEnabled()); |
| 106 EXPECT_FALSE(stream_.flow_controller()->IsEnabled()); | |
| 107 } else { | |
| 108 EXPECT_TRUE(stream_.flow_controller()->IsEnabled()); | |
| 109 } | |
| 110 EXPECT_FALSE(ReliableQuicStreamPeer::StreamContributesToConnectionFlowControl( | 106 EXPECT_FALSE(ReliableQuicStreamPeer::StreamContributesToConnectionFlowControl( |
| 111 &stream_)); | 107 &stream_)); |
| 112 } | 108 } |
| 113 | 109 |
| 114 } // namespace | 110 } // namespace |
| 115 } // namespace test | 111 } // namespace test |
| 116 } // namespace net | 112 } // namespace net |
| OLD | NEW |