/* * 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.settings.notification; import android.content.Context; import android.provider.Settings; import android.support.v7.preference.Preference; import android.support.v7.preference.PreferenceScreen; import android.support.v7.preference.TwoStatePreference; import android.telephony.TelephonyManager; import com.android.settings.SettingsRobolectricTestRunner; import com.android.settings.TestConfig; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.robolectric.annotation.Config; import org.robolectric.shadows.ShadowApplication; import static android.provider.Settings.System.VIBRATE_WHEN_RINGING; import static org.mockito.Matchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.never; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; @RunWith(SettingsRobolectricTestRunner.class) @Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION) public class VibrateWhenRingPreferenceControllerTest { @Mock private Context mContext; @Mock private PreferenceScreen mScreen; @Mock private TelephonyManager mTelephonyManager; private VibrateWhenRingPreferenceController mController; @Before public void setUp() { MockitoAnnotations.initMocks(this); when(mContext.getSystemService(Context.TELEPHONY_SERVICE)).thenReturn(mTelephonyManager); mController = new VibrateWhenRingPreferenceController(mContext); } @Test public void display_voiceCapable_shouldDisplay() { when(mTelephonyManager.isVoiceCapable()).thenReturn(true); when(mScreen.findPreference(mController.getPreferenceKey())) .thenReturn(mock(Preference.class)); mController.displayPreference(mScreen); verify(mScreen, never()).removePreference(any(Preference.class)); } @Test public void display_notVoiceCapable_shouldNotDisplay() { when(mTelephonyManager.isVoiceCapable()).thenReturn(false); final Preference preference = mock(Preference.class); when(mScreen.getPreferenceCount()).thenReturn(1); when(mScreen.getPreference(0)).thenReturn(preference); when(preference.getKey()).thenReturn(mController.getPreferenceKey()); mController.displayPreference(mScreen); verify(mScreen).removePreference(any(Preference.class)); } @Test public void updateState_settingIsOn_preferenceShouldBeChecked() { final TwoStatePreference preference = mock(TwoStatePreference.class); final Context context = ShadowApplication.getInstance().getApplicationContext(); Settings.System.putInt(context.getContentResolver(), VIBRATE_WHEN_RINGING, 1); mController = new VibrateWhenRingPreferenceController(context); mController.updateState(preference); verify(preference).setChecked(true); } @Test public void updateState_settingIsOff_preferenceShouldNotBeChecked() { final TwoStatePreference preference = mock(TwoStatePreference.class); final Context context = ShadowApplication.getInstance().getApplicationContext(); Settings.System.putInt(context.getContentResolver(), VIBRATE_WHEN_RINGING, 0); mController = new VibrateWhenRingPreferenceController(context); mController.updateState(preference); verify(preference).setChecked(false); } }