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

Side by Side Diff: net/quic/quic_ack_notifier_test.cc

Issue 908623002: Revert of Landing Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/quic_ack_notifier_manager.cc ('k') | net/quic/quic_config.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_ack_notifier.h" 5 #include "net/quic/quic_ack_notifier.h"
6 6
7 #include "net/quic/test_tools/quic_test_utils.h" 7 #include "net/quic/test_tools/quic_test_utils.h"
8 #include "testing/gmock/include/gmock/gmock.h" 8 #include "testing/gmock/include/gmock/gmock.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 using testing::_; 11 using testing::_;
12 12
13 namespace net { 13 namespace net {
14 namespace test { 14 namespace test {
15 namespace { 15 namespace {
16 16
17 class QuicAckNotifierTest : public ::testing::Test { 17 class QuicAckNotifierTest : public ::testing::Test {
18 protected: 18 protected:
19 QuicAckNotifierTest() : zero_(QuicTime::Delta::Zero()) {} 19 QuicAckNotifierTest() : zero_(QuicTime::Delta::Zero()) {}
20 20
21 void SetUp() override { 21 void SetUp() override {
22 delegate_ = new MockAckNotifierDelegate; 22 delegate_ = new MockAckNotifierDelegate;
23 notifier_.reset(new QuicAckNotifier(delegate_)); 23 notifier_.reset(new QuicAckNotifier(delegate_));
24 24
25 notifier_->OnSerializedPacket(); 25 notifier_->AddSequenceNumber(26, 100);
26 notifier_->OnSerializedPacket(); 26 notifier_->AddSequenceNumber(99, 20);
27 notifier_->OnSerializedPacket(); 27 notifier_->AddSequenceNumber(1234, 3);
28 } 28 }
29 29
30 MockAckNotifierDelegate* delegate_; 30 MockAckNotifierDelegate* delegate_;
31 scoped_ptr<QuicAckNotifier> notifier_; 31 scoped_ptr<QuicAckNotifier> notifier_;
32 QuicTime::Delta zero_; 32 QuicTime::Delta zero_;
33 }; 33 };
34 34
35 // Should trigger callback when we receive acks for all the registered seqnums. 35 // Should trigger callback when we receive acks for all the registered seqnums.
36 TEST_F(QuicAckNotifierTest, TriggerCallback) { 36 TEST_F(QuicAckNotifierTest, TriggerCallback) {
37 EXPECT_CALL(*delegate_, OnAckNotification(0, 0, zero_)).Times(1); 37 EXPECT_CALL(*delegate_, OnAckNotification(0, 0, zero_)).Times(1);
38 EXPECT_FALSE(notifier_->OnAck(zero_)); 38 EXPECT_FALSE(notifier_->OnAck(26, zero_));
39 EXPECT_FALSE(notifier_->OnAck(zero_)); 39 EXPECT_FALSE(notifier_->OnAck(99, zero_));
40 EXPECT_TRUE(notifier_->OnAck(zero_)); 40 EXPECT_TRUE(notifier_->OnAck(1234, zero_));
41 } 41 }
42 42
43 // Should not trigger callback if we never provide all the seqnums. 43 // Should not trigger callback if we never provide all the seqnums.
44 TEST_F(QuicAckNotifierTest, DoesNotTrigger) { 44 TEST_F(QuicAckNotifierTest, DoesNotTrigger) {
45 // Should not trigger callback as not all packets have been seen. 45 // Should not trigger callback as not all packets have been seen.
46 EXPECT_CALL(*delegate_, OnAckNotification(_, _, _)).Times(0); 46 EXPECT_CALL(*delegate_, OnAckNotification(_, _, _)).Times(0);
47 EXPECT_FALSE(notifier_->OnAck(zero_)); 47 EXPECT_FALSE(notifier_->OnAck(26, zero_));
48 EXPECT_FALSE(notifier_->OnAck(zero_)); 48 EXPECT_FALSE(notifier_->OnAck(99, zero_));
49 }
50
51 // Should not trigger callback if we abandon all three packets.
52 TEST_F(QuicAckNotifierTest, AbandonDoesNotTrigger) {
53 // Should not trigger callback as not all packets have been seen.
54 EXPECT_CALL(*delegate_, OnAckNotification(_, _, _)).Times(0);
55 EXPECT_FALSE(notifier_->OnPacketAbandoned());
56 EXPECT_FALSE(notifier_->OnPacketAbandoned());
57 EXPECT_TRUE(notifier_->OnPacketAbandoned());
58 } 49 }
59 50
60 // Should trigger even after updating sequence numbers and receiving ACKs for 51 // Should trigger even after updating sequence numbers and receiving ACKs for
61 // new sequeunce numbers. 52 // new sequeunce numbers.
62 TEST_F(QuicAckNotifierTest, UpdateSeqNums) { 53 TEST_F(QuicAckNotifierTest, UpdateSeqNums) {
63 // Update a couple of the sequence numbers (i.e. retransmitted packets) 54 // Update a couple of the sequence numbers (i.e. retransmitted packets)
64 notifier_->OnPacketRetransmitted(20); 55 notifier_->OnPacketRetransmitted(20);
65 notifier_->OnPacketRetransmitted(3); 56 notifier_->OnPacketRetransmitted(3);
66 57
67 EXPECT_CALL(*delegate_, OnAckNotification(2, 20 + 3, _)).Times(1); 58 EXPECT_CALL(*delegate_, OnAckNotification(2, 20 + 3, _)).Times(1);
68 EXPECT_FALSE(notifier_->OnAck(zero_)); // original 59 EXPECT_FALSE(notifier_->OnAck(26, zero_)); // original
69 EXPECT_FALSE(notifier_->OnAck(zero_)); // updated 60 EXPECT_FALSE(notifier_->OnAck(3000, zero_)); // updated
70 EXPECT_TRUE(notifier_->OnAck(zero_)); // updated 61 EXPECT_TRUE(notifier_->OnAck(3001, zero_)); // updated
71 } 62 }
72 63
73 // Make sure the delegate is called with the delta time from the last ACK. 64 // Make sure the delegate is called with the delta time from the last ACK.
74 TEST_F(QuicAckNotifierTest, DeltaTime) { 65 TEST_F(QuicAckNotifierTest, DeltaTime) {
75 const QuicTime::Delta first_delta = QuicTime::Delta::FromSeconds(5); 66 const QuicTime::Delta first_delta = QuicTime::Delta::FromSeconds(5);
76 const QuicTime::Delta second_delta = QuicTime::Delta::FromSeconds(33); 67 const QuicTime::Delta second_delta = QuicTime::Delta::FromSeconds(33);
77 const QuicTime::Delta third_delta = QuicTime::Delta::FromSeconds(10); 68 const QuicTime::Delta third_delta = QuicTime::Delta::FromSeconds(10);
78 69
79 EXPECT_CALL(*delegate_, OnAckNotification(0, 0, third_delta)).Times(1); 70 EXPECT_CALL(*delegate_, OnAckNotification(0, 0, third_delta)).Times(1);
80 EXPECT_FALSE(notifier_->OnAck(first_delta)); 71 EXPECT_FALSE(notifier_->OnAck(26, first_delta));
81 EXPECT_FALSE(notifier_->OnAck(second_delta)); 72 EXPECT_FALSE(notifier_->OnAck(99, second_delta));
82 EXPECT_TRUE(notifier_->OnAck(third_delta)); 73 EXPECT_TRUE(notifier_->OnAck(1234, third_delta));
83 } 74 }
84 75
85 } // namespace 76 } // namespace
86 } // namespace test 77 } // namespace test
87 } // namespace net 78 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quic_ack_notifier_manager.cc ('k') | net/quic/quic_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698