/* * 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 static android.provider.Settings.System.VIBRATE_WHEN_RINGING; import static com.google.common.truth.Truth.assertThat; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; 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.testutils.SettingsRobolectricTestRunner; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.robolectric.RuntimeEnvironment; @RunWith(SettingsRobolectricTestRunner.class) public class VibrateWhenRingPreferenceControllerTest { @Mock private Context mContext; @Mock private PreferenceScreen mScreen; @Mock private TelephonyManager mTelephonyManager; private VibrateWhenRingPreferenceController mController; private Preference mPreference; @Before public void setUp() { MockitoAnnotations.initMocks(this); when(mContext.getSystemService(Context.TELEPHONY_SERVICE)).thenReturn(mTelephonyManager); mController = new VibrateWhenRingPreferenceController(mContext); mPreference = new Preference(RuntimeEnvironment.application); mPreference.setKey(mController.getPreferenceKey()); when(mScreen.findPreference(mPreference.getKey())).thenReturn(mPreference); } @Test public void display_voiceCapable_shouldDisplay() { when(mTelephonyManager.isVoiceCapable()).thenReturn(true); mController.displayPreference(mScreen); assertThat(mPreference.isVisible()).isTrue(); } @Test public void display_notVoiceCapable_shouldNotDisplay() { when(mTelephonyManager.isVoiceCapable()).thenReturn(false); mController.displayPreference(mScreen); assertThat(mPreference.isVisible()).isFalse(); } @Test public void updateState_settingIsOn_preferenceShouldBeChecked() { final TwoStatePreference preference = mock(TwoStatePreference.class); final Context context = RuntimeEnvironment.application; 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 = RuntimeEnvironment.application; Settings.System.putInt(context.getContentResolver(), VIBRATE_WHEN_RINGING, 0); mController = new VibrateWhenRingPreferenceController(context); mController.updateState(preference); verify(preference).setChecked(false); } }