mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

Bug: webrtc:10717 Change-Id: I68f7d8216e1a1611e692dd82ba96890cad98c7de Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/140284 Commit-Queue: Michael Horowitz <mhoro@webrtc.org> Reviewed-by: Stefan Holmer <stefan@webrtc.org> Reviewed-by: Åsa Persson <asapersson@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28191}
62 lines
2.3 KiB
C++
62 lines
2.3 KiB
C++
/*
|
|
* Copyright 2018 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "rtc_base/experiments/rtt_mult_experiment.h"
|
|
|
|
#include "test/field_trial.h"
|
|
#include "test/gtest.h"
|
|
|
|
namespace webrtc {
|
|
|
|
TEST(RttMultExperimentTest, RttMultDisabledByDefault) {
|
|
EXPECT_FALSE(RttMultExperiment::RttMultEnabled());
|
|
}
|
|
|
|
TEST(RttMultExperimentTest, RttMultEnabledByFieldTrial) {
|
|
webrtc::test::ScopedFieldTrials field_trials(
|
|
"WebRTC-RttMult/Enabled-0.60,100.0/");
|
|
EXPECT_TRUE(RttMultExperiment::RttMultEnabled());
|
|
}
|
|
|
|
TEST(RttMultExperimentTest, RttMultTestValue) {
|
|
webrtc::test::ScopedFieldTrials field_trials(
|
|
"WebRTC-RttMult/Enabled-0.60,100.0/");
|
|
EXPECT_EQ(0.6f, RttMultExperiment::GetRttMultValue()->rtt_mult_setting);
|
|
EXPECT_EQ(100.0f, RttMultExperiment::GetRttMultValue()->rtt_mult_add_cap_ms);
|
|
}
|
|
|
|
TEST(RttMultExperimentTest, RttMultTestMalformedEnabled) {
|
|
webrtc::test::ScopedFieldTrials field_trials(
|
|
"WebRTC-RttMult/Enable-0.60,100.0/");
|
|
EXPECT_FALSE(RttMultExperiment::RttMultEnabled());
|
|
EXPECT_FALSE(RttMultExperiment::GetRttMultValue());
|
|
}
|
|
|
|
TEST(RttMultExperimentTest, RttMultTestValueOutOfBoundsPositive) {
|
|
webrtc::test::ScopedFieldTrials field_trials(
|
|
"WebRTC-RttMult/Enabled-1.5,2100.0/");
|
|
EXPECT_EQ(1.0f, RttMultExperiment::GetRttMultValue()->rtt_mult_setting);
|
|
EXPECT_EQ(2000.0f, RttMultExperiment::GetRttMultValue()->rtt_mult_add_cap_ms);
|
|
}
|
|
|
|
TEST(RttMultExperimentTest, RttMultTestValueOutOfBoundsNegative) {
|
|
webrtc::test::ScopedFieldTrials field_trials(
|
|
"WebRTC-RttMult/Enabled--0.5,-100.0/");
|
|
EXPECT_EQ(0.0f, RttMultExperiment::GetRttMultValue()->rtt_mult_setting);
|
|
EXPECT_EQ(0.0f, RttMultExperiment::GetRttMultValue()->rtt_mult_add_cap_ms);
|
|
}
|
|
|
|
TEST(RttMultExperimentTest, RttMultTestMalformedValue) {
|
|
webrtc::test::ScopedFieldTrials field_trials(
|
|
"WebRTC-RttMult/Enabled-0.25,10a0.0/");
|
|
EXPECT_NE(100.0f, RttMultExperiment::GetRttMultValue()->rtt_mult_add_cap_ms);
|
|
}
|
|
|
|
} // namespace webrtc
|