Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(637)

Side by Side Diff: net/quic/quartc/quartc_stream_test.cc

Issue 2825083003: Landing Recent QUIC changes until Mon Apr 17 2017 (Closed)
Patch Set: Format Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/quic/quartc/quartc_session.cc ('k') | net/quic/test_tools/crypto_test_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2016 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/quartc/quartc_stream.h" 5 #include "net/quic/quartc/quartc_stream.h"
6 6
7 #include "base/threading/thread_task_runner_handle.h" 7 #include "base/threading/thread_task_runner_handle.h"
8 #include "net/quic/core/crypto/quic_random.h" 8 #include "net/quic/core/crypto/quic_random.h"
9 #include "net/quic/core/quic_session.h" 9 #include "net/quic/core/quic_session.h"
10 #include "net/quic/core/quic_simple_buffer_allocator.h" 10 #include "net/quic/core/quic_simple_buffer_allocator.h"
(...skipping 19 matching lines...) Expand all
30 std::string* write_buffer) 30 std::string* write_buffer)
31 : QuicSession(connection, nullptr /*visitor*/, config), 31 : QuicSession(connection, nullptr /*visitor*/, config),
32 write_buffer_(write_buffer) {} 32 write_buffer_(write_buffer) {}
33 33
34 // Writes outgoing data from QuicStream to a string. 34 // Writes outgoing data from QuicStream to a string.
35 QuicConsumedData WritevData( 35 QuicConsumedData WritevData(
36 QuicStream* stream, 36 QuicStream* stream,
37 QuicStreamId id, 37 QuicStreamId id,
38 QuicIOVector iovector, 38 QuicIOVector iovector,
39 QuicStreamOffset offset, 39 QuicStreamOffset offset,
40 bool fin, 40 StreamSendingState fin,
41 QuicReferenceCountedPointer< 41 QuicReferenceCountedPointer<
42 QuicAckListenerInterface> /*ack_notifier_delegate*/) override { 42 QuicAckListenerInterface> /*ack_notifier_delegate*/) override {
43 if (!writable_) { 43 if (!writable_) {
44 return QuicConsumedData(0, false); 44 return QuicConsumedData(0, false);
45 } 45 }
46 46
47 const char* data = reinterpret_cast<const char*>(iovector.iov->iov_base); 47 const char* data = reinterpret_cast<const char*>(iovector.iov->iov_base);
48 size_t len = iovector.total_length; 48 size_t len = iovector.total_length;
49 write_buffer_->append(data, len); 49 write_buffer_->append(data, len);
50 return QuicConsumedData(len, fin); 50 return QuicConsumedData(len, fin != NO_FIN);
51 } 51 }
52 52
53 QuartcStream* CreateIncomingDynamicStream(QuicStreamId id) override { 53 QuartcStream* CreateIncomingDynamicStream(QuicStreamId id) override {
54 return nullptr; 54 return nullptr;
55 } 55 }
56 56
57 QuartcStream* CreateOutgoingDynamicStream(SpdyPriority priority) override { 57 QuartcStream* CreateOutgoingDynamicStream(SpdyPriority priority) override {
58 return nullptr; 58 return nullptr;
59 } 59 }
60 60
61 QuicCryptoStream* GetCryptoStream() override { return nullptr; } 61 const QuicCryptoStream* GetCryptoStream() const override { return nullptr; }
62 QuicCryptoStream* GetMutableCryptoStream() override { return nullptr; }
62 63
63 // Called by QuicStream when they want to close stream. 64 // Called by QuicStream when they want to close stream.
64 void SendRstStream(QuicStreamId id, 65 void SendRstStream(QuicStreamId id,
65 QuicRstStreamErrorCode error, 66 QuicRstStreamErrorCode error,
66 QuicStreamOffset bytes_written) override {} 67 QuicStreamOffset bytes_written) override {}
67 68
68 // Sets whether data is written to buffer, or else if this is write blocked. 69 // Sets whether data is written to buffer, or else if this is write blocked.
69 void set_writable(bool writable) { writable_ = writable; } 70 void set_writable(bool writable) { writable_ = writable; }
70 71
71 // Tracks whether the stream is write blocked and its priority. 72 // Tracks whether the stream is write blocked and its priority.
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 TEST_F(QuartcStreamTest, CloseStream) { 257 TEST_F(QuartcStreamTest, CloseStream) {
257 CreateReliableQuicStream(); 258 CreateReliableQuicStream();
258 EXPECT_FALSE(mock_stream_delegate_->closed()); 259 EXPECT_FALSE(mock_stream_delegate_->closed());
259 stream_->OnClose(); 260 stream_->OnClose();
260 EXPECT_TRUE(mock_stream_delegate_->closed()); 261 EXPECT_TRUE(mock_stream_delegate_->closed());
261 } 262 }
262 263
263 } // namespace 264 } // namespace
264 } // namespace test 265 } // namespace test
265 } // namespace net 266 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quartc/quartc_session.cc ('k') | net/quic/test_tools/crypto_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698