blob: 1433c5c335df1a6fecbe5b27df3de4f040957fa8 [file] [log] [blame]
sprang@webrtc.org46d4d292014-12-23 15:19:35 +00001/*
kjellander1afca732016-02-07 20:46:45 -08002 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
sprang@webrtc.org46d4d292014-12-23 15:19:35 +00003 *
kjellander1afca732016-02-07 20:46:45 -08004 * 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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
sprang@webrtc.org46d4d292014-12-23 15:19:35 +00009 */
10
11#include <string>
12
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "media/engine/simulcast.h"
14#include "test/gtest.h"
sprang@webrtc.org46d4d292014-12-23 15:19:35 +000015
16namespace cricket {
17
18class ScreenshareLayerConfigTest : public testing::Test,
19 protected ScreenshareLayerConfig {
20 public:
21 ScreenshareLayerConfigTest() : ScreenshareLayerConfig(0, 0) {}
22
23 void ExpectParsingFails(const std::string& group) {
24 ScreenshareLayerConfig config(100, 1000);
25 EXPECT_FALSE(FromFieldTrialGroup(group, &config));
26 }
27};
28
29TEST_F(ScreenshareLayerConfigTest, UsesDefaultBitrateConfigForDefaultGroup) {
30 ExpectParsingFails("");
31}
32
33TEST_F(ScreenshareLayerConfigTest, UsesDefaultConfigForInvalidBitrates) {
34 ExpectParsingFails("-");
35 ExpectParsingFails("1-");
36 ExpectParsingFails("-1");
37 ExpectParsingFails("-12");
38 ExpectParsingFails("12-");
39 ExpectParsingFails("booh!");
40 ExpectParsingFails("1-b");
41 ExpectParsingFails("a-2");
42 ExpectParsingFails("49-1000");
43 ExpectParsingFails("50-6001");
44 ExpectParsingFails("100-99");
45 ExpectParsingFails("1002003004005006-99");
46 ExpectParsingFails("99-1002003004005006");
47}
48
49TEST_F(ScreenshareLayerConfigTest, ParsesValidBitrateConfig) {
50 ScreenshareLayerConfig config(100, 1000);
51 EXPECT_TRUE(ScreenshareLayerConfig::FromFieldTrialGroup("101-1001", &config));
52 EXPECT_EQ(101, config.tl0_bitrate_kbps);
53 EXPECT_EQ(1001, config.tl1_bitrate_kbps);
54}
55
56} // namespace cricket