/* * 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.accounts; import static com.google.common.truth.Truth.assertThat; import static org.mockito.Answers.RETURNS_DEEP_STUBS; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.anyInt; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.never; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.content.pm.ResolveInfo; import android.content.pm.UserInfo; import android.os.UserManager; import androidx.preference.Preference; import androidx.preference.PreferenceScreen; import com.android.settings.R; import com.android.settings.testutils.shadow.ShadowAccountManager; import com.android.settings.testutils.shadow.ShadowContentResolver; import com.android.settingslib.search.SearchIndexableRaw; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.robolectric.Robolectric; import org.robolectric.RobolectricTestRunner; import org.robolectric.annotation.Config; import org.robolectric.shadows.ShadowApplication; import java.util.ArrayList; import java.util.List; @RunWith(RobolectricTestRunner.class) public class EmergencyInfoPreferenceControllerTest { @Mock(answer = RETURNS_DEEP_STUBS) private Context mContext; @Mock(answer = RETURNS_DEEP_STUBS) private PreferenceScreen mScreen; @Mock(answer = RETURNS_DEEP_STUBS) private UserManager mUserManager; private EmergencyInfoPreferenceController mController; private Preference mPreference; @Before public void setUp() { MockitoAnnotations.initMocks(this); mController = new EmergencyInfoPreferenceController(mContext, "test_key"); mPreference = new Preference(Robolectric.setupActivity(Activity.class)); mPreference.setKey(mController.getPreferenceKey()); when(mScreen.findPreference(mPreference.getKey())).thenReturn(mPreference); when(mContext.getResources().getBoolean(R.bool.config_show_emergency_info_in_device_info)) .thenReturn(true); } @After public void tearDown() { ShadowContentResolver.reset(); } @Test public void updateRawDataToIndex_prefUnavailable_shouldNotUpdate() { final List data = new ArrayList<>(); when(mContext.getPackageManager().queryIntentActivities( any(Intent.class), anyInt())) .thenReturn(null); mController.updateRawDataToIndex(data); assertThat(data).isEmpty(); } @Test public void updateRawDataToIndex_prefAvailable_shouldUpdate() { final List data = new ArrayList<>(); final List infos = new ArrayList<>(); infos.add(new ResolveInfo()); when(mContext.getPackageManager().queryIntentActivities( any(Intent.class), anyInt())) .thenReturn(infos); mController.updateRawDataToIndex(data); assertThat(mController.isAvailable()).isTrue(); assertThat(data).isNotEmpty(); } @Test public void displayPref_prefUnAvailable_shouldNotDisplay() { when(mContext.getPackageManager().queryIntentActivities( any(Intent.class), anyInt())) .thenReturn(null); mController.displayPreference(mScreen); assertThat(mPreference.isVisible()).isFalse(); } @Test public void displayPref_prefAvailable_shouldDisplay() { final List infos = new ArrayList<>(); infos.add(new ResolveInfo()); when(mContext.getPackageManager().queryIntentActivities( any(Intent.class), anyInt())) .thenReturn(infos); mController.displayPreference(mScreen); verify(mScreen, never()).removePreference(any(Preference.class)); } @Test @Config(shadows = {ShadowAccountManager.class, ShadowContentResolver.class}) public void updateState_shouldSetSummary() { final List infos = new ArrayList<>(); infos.add(new UserInfo(1, "user 1", UserInfo.FLAG_MANAGED_PROFILE)); when((Object) mContext.getSystemService(UserManager.class)).thenReturn(mUserManager); when(mUserManager.getProfiles(anyInt())).thenReturn(infos); final Preference preference = mock(Preference.class); mController.updateState(preference); verify(preference).setSummary( mContext.getString(R.string.emergency_info_summary, "user 1")); } @Test public void handlePreferenceTreeClick_shouldStartActivity() { final ShadowApplication application = ShadowApplication.getInstance(); final Activity activity = Robolectric.setupActivity(Activity.class); final Preference preference = new Preference(activity); preference.setKey("emergency_info"); mController = new EmergencyInfoPreferenceController(activity, preference.getKey()); mController.mIntent = new Intent("com.example.action.new").setPackage("com.example.test"); mController.handlePreferenceTreeClick(preference); assertThat(application.getNextStartedActivity().getAction()) .isEqualTo("com.example.action.new"); } }