This CL adds the first batch of items to the Privacy Settings page. These are all the items that fall into the "What types of information can your organization see?" category and do not require deeper Framework changes. Further batches are to come in separate CLs. Test: make RunSettingsRoboTests Bug: 32692748 Change-Id: I460093bc45ed0e5baab2a5cdf9833e654d436cc9
98 lines
3.5 KiB
Java
98 lines
3.5 KiB
Java
/*
|
|
* 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.enterprise;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.support.v7.preference.Preference;
|
|
|
|
import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
|
|
import com.android.settings.R;
|
|
import com.android.settings.SettingsRobolectricTestRunner;
|
|
import com.android.settings.TestConfig;
|
|
import com.android.settings.applications.ApplicationFeatureProvider;
|
|
import com.android.settings.testutils.FakeFeatureFactory;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Answers;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.mockito.invocation.InvocationOnMock;
|
|
import org.mockito.stubbing.Answer;
|
|
import org.robolectric.annotation.Config;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static org.mockito.Mockito.anyObject;
|
|
import static org.mockito.Mockito.doAnswer;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
/**
|
|
* Tests for {@link InstalledPackagesPreferenceController}.
|
|
*/
|
|
@RunWith(SettingsRobolectricTestRunner.class)
|
|
@Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION)
|
|
public final class InstalledPackagesPreferenceControllerTest {
|
|
|
|
@Mock(answer = Answers.RETURNS_DEEP_STUBS)
|
|
private Context mContext;
|
|
private FakeFeatureFactory mFeatureFactory;
|
|
|
|
private InstalledPackagesPreferenceController mController;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
FakeFeatureFactory.setupForTest(mContext);
|
|
mFeatureFactory = (FakeFeatureFactory) FakeFeatureFactory.getFactory(mContext);
|
|
mController = new InstalledPackagesPreferenceController(mContext);
|
|
}
|
|
|
|
@Test
|
|
public void testUpdateState() {
|
|
final Preference preference = new Preference(mContext, null, 0, 0);
|
|
doAnswer(new Answer() {
|
|
public Object answer(InvocationOnMock invocation) {
|
|
((ApplicationFeatureProvider.NumberOfInstalledAppsCallback)
|
|
invocation.getArguments()[0]).onNumberOfInstalledAppsResult(20);
|
|
return null;
|
|
}}).when(mFeatureFactory.applicationFeatureProvider)
|
|
.calculateNumberOfInstalledApps(anyObject());
|
|
when(mContext.getResources().getQuantityString(R.plurals.number_installed_packages, 20, 20))
|
|
.thenReturn("20 packages");
|
|
mController.updateState(preference);
|
|
assertThat(preference.getTitle()).isEqualTo("20 packages");
|
|
}
|
|
|
|
@Test
|
|
public void testIsAvailable() {
|
|
assertThat(mController.isAvailable()).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void testHandlePreferenceTreeClick() {
|
|
assertThat(mController.handlePreferenceTreeClick(new Preference(mContext, null, 0, 0)))
|
|
.isFalse();
|
|
}
|
|
|
|
@Test
|
|
public void testGetPreferenceKey() {
|
|
assertThat(mController.getPreferenceKey()).isEqualTo("number_installed_packages");
|
|
}
|
|
}
|