blob: 5b552421a44dfbd48def5f1fd13c0f94df4d0c5f [file] [log] [blame]
/*
* Copyright (C) 2019 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.car.settings.storage;
import static com.google.common.truth.Truth.assertThat;
import android.content.Context;
import android.content.pm.ApplicationInfo;
import androidx.lifecycle.Lifecycle;
import com.android.car.settings.CarSettingsRobolectricTestRunner;
import com.android.car.settings.R;
import com.android.car.settings.common.LogicalPreferenceGroup;
import com.android.car.settings.common.PreferenceControllerTestHelper;
import com.android.settingslib.applications.ApplicationsState;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RuntimeEnvironment;
import java.util.ArrayList;
/** Unit test for {@link StorageMediaCategoryDetailPreferenceController}. */
@RunWith(CarSettingsRobolectricTestRunner.class)
public class StorageMediaCategoryDetailPreferenceControllerTest {
private static final String SOURCE = "source";
private static final int UID = 12;
private static final long EXTRA_AUDIO_BYTES = 100;
private static final String LABEL = "label";
private static final String SIZE_STR = "12.34 MB";
private static final String PACKAGE_NAME = "com.google.packageName";
private Context mContext;
private LogicalPreferenceGroup mLogicalPreferenceGroup;
private StorageMediaCategoryDetailPreferenceController mController;
private PreferenceControllerTestHelper<StorageMediaCategoryDetailPreferenceController>
mPreferenceControllerHelper;
@Before
public void setUp() {
mContext = RuntimeEnvironment.application;
mLogicalPreferenceGroup = new LogicalPreferenceGroup(mContext);
mPreferenceControllerHelper = new PreferenceControllerTestHelper<>(mContext,
StorageMediaCategoryDetailPreferenceController.class, mLogicalPreferenceGroup);
mController = mPreferenceControllerHelper.getController();
mPreferenceControllerHelper.markState(Lifecycle.State.CREATED);
}
@Test
public void refreshUi_defaultInitialize_hasNoPreference() {
assertThat(mLogicalPreferenceGroup.getPreferenceCount()).isEqualTo(0);
}
@Test
public void onDataLoaded_addPreference_hasTwoPreferences() {
ArrayList<ApplicationsState.AppEntry> apps = new ArrayList<>();
ApplicationInfo appInfo = new ApplicationInfo();
appInfo.uid = UID;
appInfo.sourceDir = SOURCE;
ApplicationsState.AppEntry appEntry = new ApplicationsState.AppEntry(mContext, appInfo,
1234L);
appEntry.label = LABEL;
appEntry.sizeStr = SIZE_STR;
appEntry.icon = mContext.getDrawable(R.drawable.test_icon);
appEntry.info.packageName = PACKAGE_NAME;
apps.add(appEntry);
mController.setExternalAudioBytes(EXTRA_AUDIO_BYTES);
mController.onDataLoaded(apps);
// even when the manager notifies the controller again on data loaded the preference
// count should remain the same if new appEntries are not added.
mController.onDataLoaded(apps);
assertThat(mLogicalPreferenceGroup.getPreferenceCount()).isEqualTo(2);
assertThat(mLogicalPreferenceGroup.getPreference(0).getIcon()).isEqualTo(
mContext.getDrawable(R.drawable.test_icon));
assertThat(mLogicalPreferenceGroup.getPreference(0).getTitle()).isEqualTo(LABEL);
assertThat(mLogicalPreferenceGroup.getPreference(0).getSummary()).isEqualTo(SIZE_STR);
assertThat(mLogicalPreferenceGroup.getPreference(1).getIcon()).isEqualTo(
mContext.getDrawable(R.drawable.ic_headset));
assertThat(mLogicalPreferenceGroup.getPreference(1).getTitle()).isEqualTo(
mContext.getString(R.string.storage_audio_files_title));
assertThat(mLogicalPreferenceGroup.getPreference(1).getSummary()).isEqualTo(
Long.toString(EXTRA_AUDIO_BYTES));
}
}