aboutsummaryrefslogtreecommitdiff
path: root/tests/telephonytests/src/com/android/internal/telephony/satellite/SatelliteServiceUtilsTest.java
blob: 28874df23b35b2c497fcdcbb5b27970749f42403 (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
/*
 * Copyright (C) 2023 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.android.internal.telephony.satellite;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

import android.os.PersistableBundle;
import android.testing.AndroidTestingRunner;
import android.testing.TestableLooper;

import com.android.internal.telephony.TelephonyTest;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.MockitoAnnotations;

import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Set;

@RunWith(AndroidTestingRunner.class)
@TestableLooper.RunWithLooper
public class SatelliteServiceUtilsTest extends TelephonyTest {
    private static final String TAG = "SatelliteServiceUtilsTest";

    @Before
    public void setUp() throws Exception {
        super.setUp(getClass().getSimpleName());
        MockitoAnnotations.initMocks(this);
        logd(TAG + " Setup!");
    }

    @After
    public void tearDown() throws Exception {
        logd(TAG + " tearDown");
        super.tearDown();
    }

    @Test
    public void testParseSupportedSatelliteServicesFromPersistableBundle() {
        PersistableBundle supportedServicesBundle = new PersistableBundle();
        String plmn1 = "10101";
        String plmn2 = "10102";
        String plmn3 = "10103";
        int[] supportedServicesForPlmn1 = {1, 2, 3};
        int[] supportedServicesForPlmn2 = {3, 4, 100};
        int[] expectedServicesForPlmn1 = {1, 2, 3};
        int[] expectedServicesForPlmn2 = {3, 4};

        // Parse an empty bundle
        Map<String, Set<Integer>> supportedServiceMap =
                SatelliteServiceUtils.parseSupportedSatelliteServices(supportedServicesBundle);
        assertTrue(supportedServiceMap.isEmpty());

        // Add some more fields
        supportedServicesBundle.putIntArray(plmn1, supportedServicesForPlmn1);
        supportedServicesBundle.putIntArray(plmn2, supportedServicesForPlmn2);
        supportedServicesBundle.putIntArray(plmn3, new int[0]);

        supportedServiceMap =
                SatelliteServiceUtils.parseSupportedSatelliteServices(supportedServicesBundle);
        assertEquals(3, supportedServiceMap.size());

        assertTrue(supportedServiceMap.containsKey(plmn1));
        Set<Integer> supportedServices = supportedServiceMap.get(plmn1);
        assertTrue(Arrays.equals(expectedServicesForPlmn1,
                supportedServices.stream()
                        .mapToInt(Integer::intValue)
                        .toArray()));

        assertTrue(supportedServiceMap.containsKey(plmn2));
        supportedServices = supportedServiceMap.get(plmn2);
        assertTrue(Arrays.equals(expectedServicesForPlmn2,
                supportedServices.stream()
                        .mapToInt(Integer::intValue)
                        .toArray()));

        assertTrue(supportedServiceMap.containsKey(plmn3));
        supportedServices = supportedServiceMap.get(plmn3);
        assertTrue(supportedServices.isEmpty());
    }

    @Test
    public void testMergeStrLists() {
        List<String> l1 = Arrays.asList("1", "2", "2");
        List<String> l2 = Arrays.asList("1", "3", "3");
        List<String> expectedMergedList = Arrays.asList("1", "2", "3");
        List<String> mergedList = SatelliteServiceUtils.mergeStrLists(l1, l2);
        assertEquals(expectedMergedList, mergedList);
    }
}