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

Side by Side Diff: webrtc/modules/pacing/paced_sender_unittest.cc

Issue 2340763004: Add AlrDetector (Closed)
Patch Set: Fix ASAN/TSAN failures Created 4 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 int packets_sent() const { return packets_sent_; } 93 int packets_sent() const { return packets_sent_; }
94 94
95 int padding_sent() const { return padding_sent_; } 95 int padding_sent() const { return padding_sent_; }
96 96
97 private: 97 private:
98 int packets_sent_; 98 int packets_sent_;
99 int padding_sent_; 99 int padding_sent_;
100 }; 100 };
101 101
102 class PacingObserver : public PacedSender::PacingObserver {
103 public:
104 PacingObserver() : total_bytes_sent_(0), total_elapsed_time_(0) {}
105
106 void OnBytesSent(size_t bytes_sent, int64_t elapsed_time_ms) override {
107 total_bytes_sent_ += bytes_sent;
108 total_elapsed_time_ += elapsed_time_ms;
109 }
110
111 size_t bytes_sent() { return total_bytes_sent_; }
112
113 int64_t elapsed_time_ms() { return total_elapsed_time_; }
114
115 private:
116 size_t total_bytes_sent_;
117 int64_t total_elapsed_time_;
118 };
119
102 class PacedSenderTest : public ::testing::Test { 120 class PacedSenderTest : public ::testing::Test {
103 protected: 121 protected:
104 PacedSenderTest() : clock_(123456) { 122 PacedSenderTest() : clock_(123456) {
105 srand(0); 123 srand(0);
106 // Need to initialize PacedSender after we initialize clock. 124 // Need to initialize PacedSender after we initialize clock.
107 send_bucket_.reset(new PacedSender(&clock_, &callback_)); 125 send_bucket_.reset(new PacedSender(&clock_, &callback_));
108 send_bucket_->CreateProbeCluster(kFirstClusterBps, kFirstClusterCount); 126 send_bucket_->CreateProbeCluster(kFirstClusterBps, kFirstClusterCount);
109 send_bucket_->CreateProbeCluster(kSecondClusterBps, kSecondClusterCount); 127 send_bucket_->CreateProbeCluster(kSecondClusterBps, kSecondClusterCount);
110 // Default to bitrate probing disabled for testing purposes. Probing tests 128 // Default to bitrate probing disabled for testing purposes. Probing tests
111 // have to enable probing, either by creating a new PacedSender instance or 129 // have to enable probing, either by creating a new PacedSender instance or
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 } 923 }
906 int packets_sent = packet_sender.packets_sent(); 924 int packets_sent = packet_sender.packets_sent();
907 int padding_sent = packet_sender.padding_sent(); 925 int padding_sent = packet_sender.padding_sent();
908 EXPECT_EQ(padding_sent, 0); 926 EXPECT_EQ(padding_sent, 0);
909 // Validate first cluster bitrate. 927 // Validate first cluster bitrate.
910 EXPECT_NEAR(((packets_sent - 1) * kPacketSize * 8000) / 928 EXPECT_NEAR(((packets_sent - 1) * kPacketSize * 8000) /
911 (clock_.TimeInMilliseconds() - start), 929 (clock_.TimeInMilliseconds() - start),
912 kFirstClusterBps, kBitrateProbingError); 930 kFirstClusterBps, kBitrateProbingError);
913 } 931 }
914 932
933 TEST_F(PacedSenderTest, ValidatePacingObserver) {
934 const size_t kPacketSize = 1200;
935 const int kInitialBitrateBps = 300000;
936 uint32_t ssrc = 12346;
937 uint16_t sequence_number = 1234;
938
939 PacedSenderProbing packet_sender;
940 PacingObserver pacing_observer;
941 send_bucket_.reset(
942 new PacedSender(&clock_, &packet_sender, &pacing_observer));
943 send_bucket_->CreateProbeCluster(kFirstClusterBps, kFirstClusterCount);
944 send_bucket_->SetEstimatedBitrate(kInitialBitrateBps);
945
946 for (int i = 0; i < kFirstClusterCount; ++i) {
947 send_bucket_->InsertPacket(PacedSender::kNormalPriority, ssrc,
948 sequence_number++, clock_.TimeInMilliseconds(),
949 kPacketSize, false);
950 }
951
952 int64_t start = clock_.TimeInMilliseconds();
953 while (packet_sender.packets_sent() < kFirstClusterCount) {
954 int time_until_process = send_bucket_->TimeUntilNextProcess();
955 if (time_until_process <= 0) {
956 send_bucket_->Process();
957 } else {
958 clock_.AdvanceTimeMilliseconds(time_until_process);
959 }
960 }
961
962 EXPECT_EQ(pacing_observer.bytes_sent(), kPacketSize * kFirstClusterCount);
963 EXPECT_GE(pacing_observer.elapsed_time_ms(),
964 (clock_.TimeInMilliseconds() - start));
965 }
966
915 TEST_F(PacedSenderTest, PriorityInversion) { 967 TEST_F(PacedSenderTest, PriorityInversion) {
916 uint32_t ssrc = 12346; 968 uint32_t ssrc = 12346;
917 uint16_t sequence_number = 1234; 969 uint16_t sequence_number = 1234;
918 const size_t kPacketSize = 1200; 970 const size_t kPacketSize = 1200;
919 971
920 send_bucket_->InsertPacket( 972 send_bucket_->InsertPacket(
921 PacedSender::kHighPriority, ssrc, sequence_number + 3, 973 PacedSender::kHighPriority, ssrc, sequence_number + 3,
922 clock_.TimeInMilliseconds() + 33, kPacketSize, true); 974 clock_.TimeInMilliseconds() + 33, kPacketSize, true);
923 975
924 send_bucket_->InsertPacket( 976 send_bucket_->InsertPacket(
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 1119
1068 // No more probing packets. 1120 // No more probing packets.
1069 EXPECT_CALL(callback_, TimeToSendPadding(_, PacketInfo::kNotAProbe)) 1121 EXPECT_CALL(callback_, TimeToSendPadding(_, PacketInfo::kNotAProbe))
1070 .Times(1) 1122 .Times(1)
1071 .WillRepeatedly(Return(500)); 1123 .WillRepeatedly(Return(500));
1072 send_bucket_->Process(); 1124 send_bucket_->Process();
1073 } 1125 }
1074 1126
1075 } // namespace test 1127 } // namespace test
1076 } // namespace webrtc 1128 } // namespace webrtc
OLDNEW
« webrtc/modules/pacing/paced_sender.h ('K') | « webrtc/modules/pacing/paced_sender.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698