aboutsummaryrefslogtreecommitdiff
path: root/partner_support/tests/robotests/javatests/com/google/android/tv/partner/support/TunerSetupUtilsTest.java
blob: d9b48cfd5695744f3d887990facaf739ef61d56f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.android.tv.partner.support;

import static com.google.common.truth.Truth.assertThat;

import com.android.tv.testing.constants.ConfigConstants;
import com.google.thirdparty.robolectric.GoogleRobolectricTestRunner;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.annotation.Config;

/** Tests for {@link TunerSetupUtils} */
@RunWith(GoogleRobolectricTestRunner.class)
@Config(sdk = ConfigConstants.SDK)
public class TunerSetupUtilsTest {

    @Test
    public void getMatchCount_allMatch() {
        List<String> channelNumbers1 = Arrays.asList("1.1", "1.2", "2.3");
        List<List<String>> parsedChannelNumbers2 =
                TunerSetupUtils.parseChannelNumbers(Arrays.asList("1.1", "1.2", "2.3"));
        assertThat(TunerSetupUtils.getMatchCount(channelNumbers1, parsedChannelNumbers2))
                .isEqualTo(3);
    }

    @Test
    public void getMatchCount_someMatch() {
        List<String> channelNumbers1 = Arrays.asList("1.1", "1.2", "2.3");
        List<List<String>> parsedChannelNumbers2 =
                TunerSetupUtils.parseChannelNumbers(Arrays.asList("1.0", "1.1", "2"));
        assertThat(TunerSetupUtils.getMatchCount(channelNumbers1, parsedChannelNumbers2))
                .isEqualTo(2);
    }

    @Test
    public void getMatchCount_noMatch() {
        List<String> channelNumbers1 = Arrays.asList("1.1", "1.2", "2.3");
        List<List<String>> parsedChannelNumbers2 =
                TunerSetupUtils.parseChannelNumbers(Arrays.asList("1.0", "1.3", "3"));
        assertThat(TunerSetupUtils.getMatchCount(channelNumbers1, parsedChannelNumbers2))
                .isEqualTo(0);
    }

    @Test
    public void parseChannelNumber_majorNumberOnly() {
        assertThat(TunerSetupUtils.parseChannelNumber("11")).containsExactly("11");
    }

    @Test
    public void parseChannelNumber_majorAndMinorNumbers() {
        assertThat(TunerSetupUtils.parseChannelNumber("2-11")).containsExactly("2", "11");
    }

    @Test
    public void parseChannelNumber_containsExtraSpaces() {
        assertThat(TunerSetupUtils.parseChannelNumber(" 2 - 11 ")).containsExactly("2", "11");
    }

    @Test
    public void parseChannelNumber_tooLong() {
        assertThat(TunerSetupUtils.parseChannelNumber("2-11-1")).isEmpty();
    }

    @Test
    public void parseChannelNumber_empty() {
        assertThat(TunerSetupUtils.parseChannelNumber("  ")).isEmpty();
    }

    @Test
    public void matchChannelNumber_match_majorAndMinorNumbers() {
        assertThat(
                        TunerSetupUtils.matchChannelNumber(
                                Arrays.asList("22", "1"), Arrays.asList("22", "1")))
                .isTrue();
    }

    @Test
    public void matchChannelNumber_match_majorNumber() {
        assertThat(
                        TunerSetupUtils.matchChannelNumber(
                                Collections.singletonList("22"), Collections.singletonList("22")))
                .isTrue();
    }

    @Test
    public void matchChannelNumber_match_differentSize() {
        assertThat(
                        TunerSetupUtils.matchChannelNumber(
                                Arrays.asList("22", "1"), Collections.singletonList("22")))
                .isTrue();
    }

    @Test
    public void matchChannelNumber_notMatch() {
        assertThat(
                        TunerSetupUtils.matchChannelNumber(
                                Arrays.asList("22", "1"), Collections.singletonList("11")))
                .isFalse();
    }
}