Change-Id: Ia0017983b844cabafc10478adf4839f5755f514c Merged-In: I6612b1f26404587301c534c8ba60e39d59d6c840 Fixes: 67688380 Test: robotests
119 lines
4.2 KiB
Java
119 lines
4.2 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.accounts;
|
|
|
|
import android.app.Fragment;
|
|
import android.content.Context;
|
|
import android.content.pm.UserInfo;
|
|
import android.os.UserManager;
|
|
import android.support.v7.preference.Preference;
|
|
import android.support.v7.preference.PreferenceScreen;
|
|
import com.android.settings.testutils.SettingsRobolectricTestRunner;
|
|
import com.android.settings.TestConfig;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.annotation.Config;
|
|
import org.robolectric.shadows.ShadowApplication;
|
|
|
|
import static org.mockito.Answers.RETURNS_DEEP_STUBS;
|
|
import static org.mockito.Matchers.any;
|
|
import static org.mockito.Matchers.anyInt;
|
|
import static org.mockito.Mockito.never;
|
|
import static org.mockito.Mockito.verify;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
@RunWith(SettingsRobolectricTestRunner.class)
|
|
@Config(manifest = TestConfig.MANIFEST_PATH, sdk = TestConfig.SDK_VERSION)
|
|
public class AutoSyncPersonalDataPreferenceControllerTest {
|
|
|
|
@Mock(answer = RETURNS_DEEP_STUBS)
|
|
private PreferenceScreen mScreen;
|
|
@Mock(answer = RETURNS_DEEP_STUBS)
|
|
private UserManager mUserManager;
|
|
@Mock(answer = RETURNS_DEEP_STUBS)
|
|
private Fragment mFragment;
|
|
@Mock
|
|
private Preference mPreference;
|
|
|
|
private Context mContext;
|
|
private AutoSyncPersonalDataPreferenceController mController;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
ShadowApplication shadowContext = ShadowApplication.getInstance();
|
|
shadowContext.setSystemService(Context.USER_SERVICE, mUserManager);
|
|
mContext = shadowContext.getApplicationContext();
|
|
mController = new AutoSyncPersonalDataPreferenceController(mContext, mFragment);
|
|
when(mScreen.getPreferenceCount()).thenReturn(1);
|
|
when(mScreen.getPreference(0)).thenReturn(mPreference);
|
|
when(mPreference.getKey()).thenReturn(mController.getPreferenceKey());
|
|
}
|
|
|
|
@Test
|
|
public void displayPref_managedProfile_shouldNotDisplay() {
|
|
when(mUserManager.isManagedProfile()).thenReturn(true);
|
|
|
|
mController.displayPreference(mScreen);
|
|
|
|
verify(mScreen).removePreference(any(Preference.class));
|
|
}
|
|
|
|
@Test
|
|
public void displayPref_linkedUser_shouldNotDisplay() {
|
|
when(mUserManager.isManagedProfile()).thenReturn(false);
|
|
when(mUserManager.isLinkedUser()).thenReturn(true);
|
|
|
|
mController.displayPreference(mScreen);
|
|
|
|
verify(mScreen).removePreference(any(Preference.class));
|
|
}
|
|
|
|
@Test
|
|
public void displayPref_oneProfile_shouldNotDisplay() {
|
|
List<UserInfo> infos = new ArrayList<>();
|
|
infos.add(new UserInfo(1, "user 1", 0));
|
|
when(mUserManager.isManagedProfile()).thenReturn(false);
|
|
when(mUserManager.isLinkedUser()).thenReturn(false);
|
|
when(mUserManager.getProfiles(anyInt())).thenReturn(infos);
|
|
|
|
mController.displayPreference(mScreen);
|
|
|
|
verify(mScreen).removePreference(any(Preference.class));
|
|
}
|
|
|
|
@Test
|
|
public void displayPref_prefAvaiable_shouldDisplay() {
|
|
List<UserInfo> infos = new ArrayList<>();
|
|
infos.add(new UserInfo(1, "user 1", 0));
|
|
infos.add(new UserInfo(2, "user 2", 0));
|
|
when(mUserManager.isManagedProfile()).thenReturn(false);
|
|
when(mUserManager.isLinkedUser()).thenReturn(false);
|
|
when(mUserManager.getProfiles(anyInt())).thenReturn(infos);
|
|
|
|
mController.displayPreference(mScreen);
|
|
|
|
verify(mScreen, never()).removePreference(any(Preference.class));
|
|
}
|
|
|
|
}
|