2019-03-21 11:46:17 +01:00
|
|
|
/*
|
|
|
|
|
* 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/keyframe_interval_settings.h"
|
2019-07-05 19:08:33 +02:00
|
|
|
|
2019-03-21 11:46:17 +01:00
|
|
|
#include "test/field_trial.h"
|
|
|
|
|
#include "test/gtest.h"
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
TEST(KeyframeIntervalSettingsTest, ParsesMinKeyframeSendIntervalMs) {
|
|
|
|
|
EXPECT_FALSE(KeyframeIntervalSettings::ParseFromFieldTrials()
|
|
|
|
|
.MinKeyframeSendIntervalMs());
|
|
|
|
|
|
|
|
|
|
test::ScopedFieldTrials field_trials(
|
|
|
|
|
"WebRTC-KeyframeInterval/min_keyframe_send_interval_ms:100/");
|
|
|
|
|
EXPECT_EQ(KeyframeIntervalSettings::ParseFromFieldTrials()
|
|
|
|
|
.MinKeyframeSendIntervalMs(),
|
|
|
|
|
100);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-24 15:18:57 +01:00
|
|
|
TEST(KeyframeIntervalSettingsTest, DoesNotParseIncorrectValues) {
|
|
|
|
|
EXPECT_FALSE(KeyframeIntervalSettings::ParseFromFieldTrials()
|
|
|
|
|
.MinKeyframeSendIntervalMs());
|
2019-03-21 11:46:17 +01:00
|
|
|
|
|
|
|
|
test::ScopedFieldTrials field_trials(
|
2021-03-24 15:18:57 +01:00
|
|
|
"WebRTC-KeyframeInterval/min_keyframe_send_interval_ms:a/");
|
|
|
|
|
EXPECT_FALSE(KeyframeIntervalSettings::ParseFromFieldTrials()
|
|
|
|
|
.MinKeyframeSendIntervalMs());
|
2019-03-21 11:46:17 +01:00
|
|
|
EXPECT_FALSE(KeyframeIntervalSettings::ParseFromFieldTrials()
|
|
|
|
|
.MinKeyframeSendIntervalMs());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
} // namespace webrtc
|