Copy most visiblity logic from the Dialer app We should check whether RTT is supported or not by querying Telecom. Also, the rtt configuration won't be initialized properly before user goes into the RTT page. Prior to this cl, we set a wrong default value when we're showing the subtext of RTT, this is not correct. Currently, we simple show nothing in subtext if RTT haven't initilized properly. Test: Work with testing team to verify the behavior. Fix: 188110773 Change-Id: I47c1983d15e22ef5a1fb3027334117a38a479558
90 lines
3.2 KiB
Java
90 lines
3.2 KiB
Java
/*
|
|
* Copyright (C) 2021 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.settings.accessibility;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.Mockito.doReturn;
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.robolectric.Shadows.shadowOf;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.pm.ResolveInfo;
|
|
|
|
import androidx.test.core.app.ApplicationProvider;
|
|
|
|
import com.android.settings.core.BasePreferenceController;
|
|
import com.android.settings.testutils.ResolveInfoBuilder;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.shadows.ShadowPackageManager;
|
|
|
|
/** Tests for {@link RTTSettingPreferenceController}. */
|
|
@RunWith(RobolectricTestRunner.class)
|
|
public class RTTSettingPreferenceControllerTest {
|
|
|
|
private ShadowPackageManager mShadowPackageManager;
|
|
private RTTSettingPreferenceController mController;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
final Context context = spy(ApplicationProvider.getApplicationContext());
|
|
mShadowPackageManager = shadowOf(context.getPackageManager());
|
|
mController = spy(new RTTSettingPreferenceController(context, "rtt_setting"));
|
|
mController.mRTTIntent = new Intent("com.android.test.action.example");
|
|
}
|
|
|
|
@Test
|
|
public void getAvailabilityStatus_resolvedIsEmpty_shouldReturnUNSUPPORTED_ON_DEVICE() {
|
|
doReturn(true).when(mController).isRttSettingSupported();
|
|
|
|
assertThat(mController.getAvailabilityStatus())
|
|
.isEqualTo(BasePreferenceController.UNSUPPORTED_ON_DEVICE);
|
|
}
|
|
|
|
@Test
|
|
public void getAvailabilityStatus_intentIsHandledButRttSettingNotSupported_returnAVAILABLE() {
|
|
setupTestIntent();
|
|
doReturn(false).when(mController).isRttSettingSupported();
|
|
|
|
assertThat(mController.getAvailabilityStatus())
|
|
.isEqualTo(BasePreferenceController.UNSUPPORTED_ON_DEVICE);
|
|
}
|
|
|
|
@Test
|
|
public void getAvailabilityStatus_intentCanBeHandledAndRttSettingSupported_returnAVAILABLE() {
|
|
setupTestIntent();
|
|
doReturn(true).when(mController).isRttSettingSupported();
|
|
|
|
assertThat(mController.getAvailabilityStatus())
|
|
.isEqualTo(BasePreferenceController.AVAILABLE);
|
|
}
|
|
|
|
private void setupTestIntent() {
|
|
final ResolveInfo info = new ResolveInfoBuilder("pkg")
|
|
.setActivity("pkg", "class").build();
|
|
final Intent intent = new Intent("com.android.test.action.example");
|
|
mShadowPackageManager.addResolveInfoForIntent(intent, info);
|
|
}
|
|
}
|