forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquic_ack_notifier_test.cc
87 lines (71 loc) · 3.01 KB
/
quic_ack_notifier_test.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/quic/quic_ack_notifier.h"
#include "net/quic/test_tools/quic_test_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using testing::_;
namespace net {
namespace test {
namespace {
class QuicAckNotifierTest : public ::testing::Test {
protected:
QuicAckNotifierTest() : zero_(QuicTime::Delta::Zero()) {}
void SetUp() override {
delegate_ = new MockAckNotifierDelegate;
notifier_.reset(new QuicAckNotifier(delegate_));
notifier_->OnSerializedPacket();
notifier_->OnSerializedPacket();
notifier_->OnSerializedPacket();
}
MockAckNotifierDelegate* delegate_;
scoped_ptr<QuicAckNotifier> notifier_;
QuicTime::Delta zero_;
};
// Should trigger callback when we receive acks for all the registered seqnums.
TEST_F(QuicAckNotifierTest, TriggerCallback) {
EXPECT_CALL(*delegate_, OnAckNotification(0, 0, zero_)).Times(1);
EXPECT_FALSE(notifier_->OnAck(zero_));
EXPECT_FALSE(notifier_->OnAck(zero_));
EXPECT_TRUE(notifier_->OnAck(zero_));
}
// Should not trigger callback if we never provide all the seqnums.
TEST_F(QuicAckNotifierTest, DoesNotTrigger) {
// Should not trigger callback as not all packets have been seen.
EXPECT_CALL(*delegate_, OnAckNotification(_, _, _)).Times(0);
EXPECT_FALSE(notifier_->OnAck(zero_));
EXPECT_FALSE(notifier_->OnAck(zero_));
}
// Should not trigger callback if we abandon all three packets.
TEST_F(QuicAckNotifierTest, AbandonDoesNotTrigger) {
// Should not trigger callback as not all packets have been seen.
EXPECT_CALL(*delegate_, OnAckNotification(_, _, _)).Times(0);
EXPECT_FALSE(notifier_->OnPacketAbandoned());
EXPECT_FALSE(notifier_->OnPacketAbandoned());
EXPECT_TRUE(notifier_->OnPacketAbandoned());
}
// Should trigger even after updating sequence numbers and receiving ACKs for
// new sequeunce numbers.
TEST_F(QuicAckNotifierTest, UpdateSeqNums) {
// Update a couple of the sequence numbers (i.e. retransmitted packets)
notifier_->OnPacketRetransmitted(20);
notifier_->OnPacketRetransmitted(3);
EXPECT_CALL(*delegate_, OnAckNotification(2, 20 + 3, _)).Times(1);
EXPECT_FALSE(notifier_->OnAck(zero_)); // original
EXPECT_FALSE(notifier_->OnAck(zero_)); // updated
EXPECT_TRUE(notifier_->OnAck(zero_)); // updated
}
// Make sure the delegate is called with the delta time from the last ACK.
TEST_F(QuicAckNotifierTest, DeltaTime) {
const QuicTime::Delta first_delta = QuicTime::Delta::FromSeconds(5);
const QuicTime::Delta second_delta = QuicTime::Delta::FromSeconds(33);
const QuicTime::Delta third_delta = QuicTime::Delta::FromSeconds(10);
EXPECT_CALL(*delegate_, OnAckNotification(0, 0, third_delta)).Times(1);
EXPECT_FALSE(notifier_->OnAck(first_delta));
EXPECT_FALSE(notifier_->OnAck(second_delta));
EXPECT_TRUE(notifier_->OnAck(third_delta));
}
} // namespace
} // namespace test
} // namespace net