Search in sources :

Example 36 with StorageItemPreference

use of com.android.settings.deviceinfo.StorageItemPreference in project android_packages_apps_Settings by LineageOS.

the class StorageItemPreferenceControllerTest method displayPreference_hideFilePreferenceWhenNoEmulatedInternalStorage.

@Test
public void displayPreference_hideFilePreferenceWhenNoEmulatedInternalStorage() {
    StorageItemPreference audio = new StorageItemPreference(mContext);
    StorageItemPreference image = new StorageItemPreference(mContext);
    StorageItemPreference games = new StorageItemPreference(mContext);
    StorageItemPreference apps = new StorageItemPreference(mContext);
    StorageItemPreference system = new StorageItemPreference(mContext);
    StorageItemPreference files = new StorageItemPreference(mContext);
    PreferenceScreen screen = mock(PreferenceScreen.class);
    when(screen.findPreference(eq(StorageItemPreferenceController.AUDIO_KEY))).thenReturn(audio);
    when(screen.findPreference(eq(StorageItemPreferenceController.PHOTO_KEY))).thenReturn(image);
    when(screen.findPreference(eq(StorageItemPreferenceController.GAME_KEY))).thenReturn(games);
    when(screen.findPreference(eq(StorageItemPreferenceController.OTHER_APPS_KEY))).thenReturn(apps);
    when(screen.findPreference(eq(StorageItemPreferenceController.SYSTEM_KEY))).thenReturn(system);
    when(screen.findPreference(eq(StorageItemPreferenceController.FILES_KEY))).thenReturn(files);
    when(mSvp.findEmulatedForPrivate(nullable(VolumeInfo.class))).thenReturn(null);
    mController.displayPreference(screen);
    verify(screen).removePreference(files);
}
Also used : PreferenceScreen(android.support.v7.preference.PreferenceScreen) VolumeInfo(android.os.storage.VolumeInfo) StorageItemPreference(com.android.settings.deviceinfo.StorageItemPreference) Test(org.junit.Test)

Example 37 with StorageItemPreference

use of com.android.settings.deviceinfo.StorageItemPreference in project android_packages_apps_Settings by LineageOS.

the class StorageItemPreferenceControllerTest method displayPreference_updateFilePreferenceToShowAfterSettingVolume.

@Test
public void displayPreference_updateFilePreferenceToShowAfterSettingVolume() {
    StorageItemPreference audio = new StorageItemPreference(mContext);
    StorageItemPreference image = new StorageItemPreference(mContext);
    StorageItemPreference games = new StorageItemPreference(mContext);
    StorageItemPreference apps = new StorageItemPreference(mContext);
    StorageItemPreference system = new StorageItemPreference(mContext);
    StorageItemPreference files = new StorageItemPreference(mContext);
    PreferenceScreen screen = mock(PreferenceScreen.class);
    when(screen.findPreference(eq(StorageItemPreferenceController.AUDIO_KEY))).thenReturn(audio);
    when(screen.findPreference(eq(StorageItemPreferenceController.PHOTO_KEY))).thenReturn(image);
    when(screen.findPreference(eq(StorageItemPreferenceController.GAME_KEY))).thenReturn(games);
    when(screen.findPreference(eq(StorageItemPreferenceController.OTHER_APPS_KEY))).thenReturn(apps);
    when(screen.findPreference(eq(StorageItemPreferenceController.SYSTEM_KEY))).thenReturn(system);
    when(screen.findPreference(eq(StorageItemPreferenceController.FILES_KEY))).thenReturn(files);
    // This will hide it initially.
    mController.displayPreference(screen);
    when(mSvp.findEmulatedForPrivate(nullable(VolumeInfo.class))).thenReturn(mVolume);
    when(mVolume.isMountedReadable()).thenReturn(true);
    // And we bring it back.
    mController.setVolume(mVolume);
    verify(screen).addPreference(files);
}
Also used : PreferenceScreen(android.support.v7.preference.PreferenceScreen) VolumeInfo(android.os.storage.VolumeInfo) StorageItemPreference(com.android.settings.deviceinfo.StorageItemPreference) Test(org.junit.Test)

Example 38 with StorageItemPreference

use of com.android.settings.deviceinfo.StorageItemPreference in project android_packages_apps_Settings by omnirom.

the class StorageItemPreferenceControllerTest method displayPreference_dontHideFilePreferenceWhenEmulatedInternalStorageUsed.

@Test
public void displayPreference_dontHideFilePreferenceWhenEmulatedInternalStorageUsed() {
    StorageItemPreference audio = new StorageItemPreference(mContext);
    StorageItemPreference image = new StorageItemPreference(mContext);
    StorageItemPreference games = new StorageItemPreference(mContext);
    StorageItemPreference apps = new StorageItemPreference(mContext);
    StorageItemPreference system = new StorageItemPreference(mContext);
    StorageItemPreference files = new StorageItemPreference(mContext);
    PreferenceScreen screen = mock(PreferenceScreen.class);
    when(screen.findPreference(eq(StorageItemPreferenceController.AUDIO_KEY))).thenReturn(audio);
    when(screen.findPreference(eq(StorageItemPreferenceController.PHOTO_KEY))).thenReturn(image);
    when(screen.findPreference(eq(StorageItemPreferenceController.GAME_KEY))).thenReturn(games);
    when(screen.findPreference(eq(StorageItemPreferenceController.OTHER_APPS_KEY))).thenReturn(apps);
    when(screen.findPreference(eq(StorageItemPreferenceController.SYSTEM_KEY))).thenReturn(system);
    when(screen.findPreference(eq(StorageItemPreferenceController.FILES_KEY))).thenReturn(files);
    when(mSvp.findEmulatedForPrivate(nullable(VolumeInfo.class))).thenReturn(mVolume);
    when(mVolume.isMountedReadable()).thenReturn(true);
    mController.displayPreference(screen);
    verify(screen, times(0)).removePreference(files);
}
Also used : PreferenceScreen(android.support.v7.preference.PreferenceScreen) VolumeInfo(android.os.storage.VolumeInfo) StorageItemPreference(com.android.settings.deviceinfo.StorageItemPreference) Test(org.junit.Test)

Example 39 with StorageItemPreference

use of com.android.settings.deviceinfo.StorageItemPreference in project android_packages_apps_Settings by omnirom.

the class StorageItemPreferenceControllerTest method displayPreference_updateFilePreferenceToShowAfterSettingVolume.

@Test
public void displayPreference_updateFilePreferenceToShowAfterSettingVolume() {
    StorageItemPreference audio = new StorageItemPreference(mContext);
    StorageItemPreference image = new StorageItemPreference(mContext);
    StorageItemPreference games = new StorageItemPreference(mContext);
    StorageItemPreference apps = new StorageItemPreference(mContext);
    StorageItemPreference system = new StorageItemPreference(mContext);
    StorageItemPreference files = new StorageItemPreference(mContext);
    PreferenceScreen screen = mock(PreferenceScreen.class);
    when(screen.findPreference(eq(StorageItemPreferenceController.AUDIO_KEY))).thenReturn(audio);
    when(screen.findPreference(eq(StorageItemPreferenceController.PHOTO_KEY))).thenReturn(image);
    when(screen.findPreference(eq(StorageItemPreferenceController.GAME_KEY))).thenReturn(games);
    when(screen.findPreference(eq(StorageItemPreferenceController.OTHER_APPS_KEY))).thenReturn(apps);
    when(screen.findPreference(eq(StorageItemPreferenceController.SYSTEM_KEY))).thenReturn(system);
    when(screen.findPreference(eq(StorageItemPreferenceController.FILES_KEY))).thenReturn(files);
    // This will hide it initially.
    mController.displayPreference(screen);
    when(mSvp.findEmulatedForPrivate(nullable(VolumeInfo.class))).thenReturn(mVolume);
    when(mVolume.isMountedReadable()).thenReturn(true);
    // And we bring it back.
    mController.setVolume(mVolume);
    verify(screen).addPreference(files);
}
Also used : PreferenceScreen(android.support.v7.preference.PreferenceScreen) VolumeInfo(android.os.storage.VolumeInfo) StorageItemPreference(com.android.settings.deviceinfo.StorageItemPreference) Test(org.junit.Test)

Example 40 with StorageItemPreference

use of com.android.settings.deviceinfo.StorageItemPreference in project android_packages_apps_Settings by omnirom.

the class StorageItemPreferenceControllerTest method setUp.

@Before
public void setUp() throws Exception {
    MockitoAnnotations.initMocks(this);
    mContext = spy(RuntimeEnvironment.application.getApplicationContext());
    FakeFeatureFactory.setupForTest(mContext);
    mFakeFeatureFactory = (FakeFeatureFactory) FakeFeatureFactory.getFactory(mContext);
    mMetricsFeatureProvider = mFakeFeatureFactory.getMetricsFeatureProvider();
    mVolume = spy(new VolumeInfo("id", 0, null, "id"));
    // Note: null is passed as the Lifecycle because we are handling it outside of the normal
    // Settings fragment lifecycle for test purposes.
    mController = new StorageItemPreferenceController(mContext, mFragment, mVolume, mSvp);
    mPreference = new StorageItemPreference(mContext);
    // Inflate the preference and the widget.
    LayoutInflater inflater = LayoutInflater.from(mContext);
    final View view = inflater.inflate(mPreference.getLayoutResource(), new LinearLayout(mContext), false);
}
Also used : LayoutInflater(android.view.LayoutInflater) VolumeInfo(android.os.storage.VolumeInfo) StorageItemPreference(com.android.settings.deviceinfo.StorageItemPreference) View(android.view.View) LinearLayout(android.widget.LinearLayout) Before(org.junit.Before)

Aggregations

StorageItemPreference (com.android.settings.deviceinfo.StorageItemPreference)70 Test (org.junit.Test)49 VolumeInfo (android.os.storage.VolumeInfo)42 PreferenceScreen (android.support.v7.preference.PreferenceScreen)42 Drawable (android.graphics.drawable.Drawable)7 UserHandle (android.os.UserHandle)7 SparseArray (android.util.SparseArray)7 LayoutInflater (android.view.LayoutInflater)7 LinearLayout (android.widget.LinearLayout)7 PreferenceScreen (androidx.preference.PreferenceScreen)7 StorageStatsSource (com.android.settingslib.applications.StorageStatsSource)7 Before (org.junit.Before)7 PreferenceGroup (android.support.v7.preference.PreferenceGroup)6 View (android.view.View)6 PreferenceGroup (androidx.preference.PreferenceGroup)1