blob: ac97937405f57b3b85365eed8abeb61dd0c15ed3 [file] [log] [blame]
/*
* Copyright (C) 2016 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;
import android.telephony.SubscriptionManager;
import android.test.suitebuilder.annotation.SmallTest;
import static org.junit.Assert.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import android.telephony.SubscriptionInfo;
public class SubscriptionInfoTest {
private SubscriptionInfo mSubscriptionInfoUT;
@After
public void tearDown() throws Exception {
mSubscriptionInfoUT = null;
}
@Before
public void setUp() throws Exception {
mSubscriptionInfoUT = new SubscriptionInfo(1, "890126042XXXXXXXXXXX", 0, "T-mobile",
"T-mobile", 0, 255, "12345", 0, null, 310, 260, "156");
}
@Test
@SmallTest
public void testSubProperties() {
assertEquals(260, mSubscriptionInfoUT.getMnc());
assertEquals(310, mSubscriptionInfoUT.getMcc());
assertEquals("12345", mSubscriptionInfoUT.getNumber());
assertEquals(0, mSubscriptionInfoUT.getDataRoaming());
assertEquals("T-mobile", mSubscriptionInfoUT.getDisplayName());
assertEquals("T-mobile", mSubscriptionInfoUT.getCarrierName());
assertEquals("156", mSubscriptionInfoUT.getCountryIso());
assertEquals(255, mSubscriptionInfoUT.getIconTint());
assertEquals(0, mSubscriptionInfoUT.getNameSource());
assertEquals(1, mSubscriptionInfoUT.getSubscriptionId());
assertEquals(0, mSubscriptionInfoUT.getSimSlotIndex());
assertEquals("890126042XXXXXXXXXXX", mSubscriptionInfoUT.getIccId());
}
@Test
@SmallTest
public void testSetGetCarrierName() {
assertEquals("T-mobile", mSubscriptionInfoUT.getCarrierName());
mSubscriptionInfoUT.setCarrierName("Verizon");
assertEquals("Verizon", mSubscriptionInfoUT.getCarrierName());
}
@Test
@SmallTest
public void testSetGetDisplayName() {
assertEquals("T-mobile", mSubscriptionInfoUT.getDisplayName());
mSubscriptionInfoUT.setDisplayName("Verizon");
assertEquals("Verizon", mSubscriptionInfoUT.getDisplayName());
}
@Test
@SmallTest
public void testSetGetIconTint() {
assertEquals(255, mSubscriptionInfoUT.getIconTint());
mSubscriptionInfoUT.setIconTint(0);
assertEquals(0, mSubscriptionInfoUT.getIconTint());
}
}