Bug: 280071827 Test: make RunSettingsRoboTests -j56 ROBOTEST_FILTER=ClonedAppsPreferenceControllerTest Change-Id: Id7c2e73bdb0c2af3e700b3620bde2fe77c47f3e6
99 lines
3.6 KiB
Java
99 lines
3.6 KiB
Java
/*
|
|
* Copyright (C) 2022 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.applications;
|
|
|
|
import static android.provider.DeviceConfig.NAMESPACE_APP_CLONING;
|
|
|
|
import static com.android.settings.core.BasePreferenceController.AVAILABLE;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.provider.DeviceConfig;
|
|
|
|
import androidx.test.core.app.ApplicationProvider;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.Utils;
|
|
import com.android.settings.testutils.shadow.ShadowDeviceConfig;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.annotation.Config;
|
|
|
|
@RunWith(RobolectricTestRunner.class)
|
|
@Config(shadows = {ShadowDeviceConfig.class})
|
|
public class ClonedAppsPreferenceControllerTest {
|
|
|
|
private ClonedAppsPreferenceController mController;
|
|
private static final String KEY = "key";
|
|
private Context mContext;
|
|
private Resources mResources;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
mContext = spy(ApplicationProvider.getApplicationContext());
|
|
|
|
mResources = spy(mContext.getResources());
|
|
when(mContext.getResources()).thenReturn(mResources);
|
|
|
|
mController = new ClonedAppsPreferenceController(mContext, KEY);
|
|
}
|
|
|
|
@Test
|
|
public void getAvailabilityStatus_featureNotEnabled_shouldNotReturnAvailable() {
|
|
DeviceConfig.setProperty(NAMESPACE_APP_CLONING, Utils.PROPERTY_CLONED_APPS_ENABLED,
|
|
"false", true /* makeDefault */);
|
|
when(mResources.getBoolean(R.bool.config_cloned_apps_page_enabled)).thenReturn(false);
|
|
|
|
assertThat(mController.getAvailabilityStatus()).isNotEqualTo(AVAILABLE);
|
|
}
|
|
|
|
@Test
|
|
public void getAvailabilityStatus_featureEnabled_shouldReturnAvailable() {
|
|
DeviceConfig.setProperty(NAMESPACE_APP_CLONING, Utils.PROPERTY_CLONED_APPS_ENABLED,
|
|
"true", true /* makeDefault */);
|
|
when(mResources.getBoolean(R.bool.config_cloned_apps_page_enabled)).thenReturn(true);
|
|
|
|
assertThat(mController.getAvailabilityStatus()).isEqualTo(AVAILABLE);
|
|
}
|
|
|
|
@Test
|
|
public void getAvailabilityStatus_deviceConfigFalseAndConfigEnabled_shouldNotReturnAvailable() {
|
|
DeviceConfig.setProperty(NAMESPACE_APP_CLONING, Utils.PROPERTY_CLONED_APPS_ENABLED,
|
|
"false", true /* makeDefault */);
|
|
when(mResources.getBoolean(R.bool.config_cloned_apps_page_enabled)).thenReturn(true);
|
|
|
|
assertThat(mController.getAvailabilityStatus()).isNotEqualTo(AVAILABLE);
|
|
}
|
|
|
|
@Test
|
|
public void getAvailabilityStatus_deviceConfigTrueAndConfigDisabled_shouldNotReturnAvailable() {
|
|
DeviceConfig.setProperty(NAMESPACE_APP_CLONING, Utils.PROPERTY_CLONED_APPS_ENABLED,
|
|
"true", true /* makeDefault */);
|
|
when(mResources.getBoolean(R.bool.config_cloned_apps_page_enabled)).thenReturn(false);
|
|
|
|
assertThat(mController.getAvailabilityStatus()).isNotEqualTo(AVAILABLE);
|
|
}
|
|
}
|