webrtc/rtc_base/experiments/min_video_bitrate_experiment_unittest.cc
Florent Castelli 8037fc6ffa Migrate absl::optional to std::optional
Bug: webrtc:342905193
No-Try: True
Change-Id: Icc968be43b8830038ea9a1f5f604307220457807
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/361021
Auto-Submit: Florent Castelli <orphis@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Florent Castelli <orphis@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#42911}
2024-09-02 12:16:47 +00:00

143 lines
5.6 KiB
C++

/*
* Copyright 2019 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/min_video_bitrate_experiment.h"
#include <optional>
#include "api/units/data_rate.h"
#include "api/video/video_codec_type.h"
#include "test/explicit_key_value_config.h"
#include "test/gtest.h"
namespace webrtc {
namespace {
using test::ExplicitKeyValueConfig;
TEST(GetExperimentalMinVideoBitrateTest,
NulloptForAllCodecsIfFieldTrialUndefined) {
ExplicitKeyValueConfig field_trials("");
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecGeneric),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP8),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP9),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecH264),
std::nullopt);
}
TEST(GetExperimentalMinVideoBitrateTest,
NulloptForAllCodecsIfFieldTrialDisabled) {
ExplicitKeyValueConfig field_trials(
"WebRTC-Video-MinVideoBitrate/Disabled,br:123kbps/");
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecGeneric),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP8),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP9),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecH264),
std::nullopt);
}
TEST(GetExperimentalMinVideoBitrateTest, BrForAllCodecsIfDefined) {
ExplicitKeyValueConfig field_trials(
"WebRTC-Video-MinVideoBitrate/Enabled,br:123kbps/");
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecGeneric),
DataRate::KilobitsPerSec(123));
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP8),
DataRate::KilobitsPerSec(123));
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP9),
DataRate::KilobitsPerSec(123));
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecH264),
DataRate::KilobitsPerSec(123));
}
TEST(GetExperimentalMinVideoBitrateTest, BrTrumpsSpecificCodecConfigs) {
ExplicitKeyValueConfig field_trials(
"WebRTC-Video-MinVideoBitrate/"
"Enabled,br:123kbps,vp8_br:100kbps,vp9_br:200kbps,h264_br:300kbps/");
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecGeneric),
DataRate::KilobitsPerSec(123));
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP8),
DataRate::KilobitsPerSec(123));
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP9),
DataRate::KilobitsPerSec(123));
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecH264),
DataRate::KilobitsPerSec(123));
}
TEST(GetExperimentalMinVideoBitrateTest,
SpecificCodecConfigsIgnoredIfExpDisabled) {
ExplicitKeyValueConfig field_trials(
"WebRTC-Video-MinVideoBitrate/"
"Disabled,vp8_br:100kbps,vp9_br:200kbps,h264_br:300kbps/");
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecGeneric),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP8),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP9),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecH264),
std::nullopt);
}
TEST(GetExperimentalMinVideoBitrateTest, SpecificCodecConfigsUsedIfExpEnabled) {
ExplicitKeyValueConfig field_trials(
"WebRTC-Video-MinVideoBitrate/"
"Enabled,vp8_br:100kbps,vp9_br:200kbps,h264_br:300kbps/");
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecGeneric),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP8),
DataRate::KilobitsPerSec(100));
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP9),
DataRate::KilobitsPerSec(200));
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecH264),
DataRate::KilobitsPerSec(300));
}
TEST(GetExperimentalMinVideoBitrateTest,
Vp8BitrateValueTakenFromFallbackIfAvailable) {
ExplicitKeyValueConfig field_trials(
"WebRTC-Video-MinVideoBitrate/"
"Enabled,vp8_br:100kbps,vp9_br:200kbps,h264_br:300kbps/"
"WebRTC-VP8-Forced-Fallback-Encoder-v2/"
"Enabled-444444,555555,666666/");
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP8),
DataRate::BitsPerSec(666666));
}
TEST(GetExperimentalMinVideoBitrateTest,
NonVp8BitrateValuesTakenFromMinVideoBitrate) {
ExplicitKeyValueConfig field_trials(
"WebRTC-Video-MinVideoBitrate/"
"Enabled,vp8_br:100kbps,vp9_br:200kbps,h264_br:300kbps/"
"WebRTC-VP8-Forced-Fallback-Encoder-v2/"
"Enabled-444444,555555,666666/");
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecGeneric),
std::nullopt);
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecVP9),
DataRate::KilobitsPerSec(200));
EXPECT_EQ(GetExperimentalMinVideoBitrate(field_trials, kVideoCodecH264),
DataRate::KilobitsPerSec(300));
}
} // namespace
} // namespace webrtc