| Index: net/tools/quic/quic_simple_server_session_test.cc
|
| diff --git a/net/tools/quic/quic_simple_server_session_test.cc b/net/tools/quic/quic_simple_server_session_test.cc
|
| index 5d1cac27f33fa9561f04ef3a48ad79b1aa7d800f..35db6162aa326a698f28592e9254e1bbb679a875 100644
|
| --- a/net/tools/quic/quic_simple_server_session_test.cc
|
| +++ b/net/tools/quic/quic_simple_server_session_test.cc
|
| @@ -235,6 +235,7 @@ TEST_P(QuicSimpleServerSessionTest, CloseStreamDueToReset) {
|
| // Receive a reset (and send a RST in response).
|
| QuicRstStreamFrame rst1(kClientDataStreamId1, QUIC_ERROR_PROCESSING_STREAM,
|
| 0);
|
| + EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1);
|
| EXPECT_CALL(*connection_,
|
| SendRstStream(kClientDataStreamId1, QUIC_RST_ACKNOWLEDGEMENT, 0));
|
| visitor_->OnRstStream(rst1);
|
| @@ -252,6 +253,7 @@ TEST_P(QuicSimpleServerSessionTest, NeverOpenStreamDueToReset) {
|
| // Send a reset (and expect the peer to send a RST in response).
|
| QuicRstStreamFrame rst1(kClientDataStreamId1, QUIC_ERROR_PROCESSING_STREAM,
|
| 0);
|
| + EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1);
|
| EXPECT_CALL(*connection_,
|
| SendRstStream(kClientDataStreamId1, QUIC_RST_ACKNOWLEDGEMENT, 0));
|
| visitor_->OnRstStream(rst1);
|
| @@ -278,6 +280,7 @@ TEST_P(QuicSimpleServerSessionTest, AcceptClosedStream) {
|
|
|
| // Send a reset (and expect the peer to send a RST in response).
|
| QuicRstStreamFrame rst(kClientDataStreamId1, QUIC_ERROR_PROCESSING_STREAM, 0);
|
| + EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1);
|
| EXPECT_CALL(*connection_,
|
| SendRstStream(kClientDataStreamId1, QUIC_RST_ACKNOWLEDGEMENT, 0));
|
| visitor_->OnRstStream(rst);
|
| @@ -569,6 +572,7 @@ TEST_P(QuicSimpleServerSessionServerPushTest,
|
| // Reset the last stream in the queue. It should be marked cancelled.
|
| QuicStreamId stream_got_reset = num_resources * 2;
|
| QuicRstStreamFrame rst(stream_got_reset, QUIC_STREAM_CANCELLED, 0);
|
| + EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1);
|
| EXPECT_CALL(*connection_,
|
| SendRstStream(stream_got_reset, QUIC_RST_ACKNOWLEDGEMENT, 0));
|
| visitor_->OnRstStream(rst);
|
| @@ -613,6 +617,7 @@ TEST_P(QuicSimpleServerSessionServerPushTest,
|
| .WillOnce(Return(QuicConsumedData(kStreamFlowControlWindowSize, false)));
|
|
|
| EXPECT_CALL(*connection_, SendBlocked(stream_to_open));
|
| + EXPECT_CALL(owner_, OnRstStreamReceived(_)).Times(1);
|
| QuicRstStreamFrame rst(stream_got_reset, QUIC_STREAM_CANCELLED, 0);
|
| visitor_->OnRstStream(rst);
|
| }
|
|
|