Revert submission 24420426-multi_toggle Reason for revert: This change needs to be done along with some other UI changes to avoid confusion Reverted changes: /q/submissionid:24420426-multi_toggle Change-Id: Ife2e03d0090fefcb4c1fa53dd007336759eb1bc7
84 lines
2.8 KiB
Java
84 lines
2.8 KiB
Java
/*
|
|
* 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.settings.users;
|
|
|
|
import static org.mockito.ArgumentMatchers.any;
|
|
import static org.mockito.Mockito.never;
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.verify;
|
|
|
|
import android.content.Context;
|
|
import android.os.UserHandle;
|
|
import android.os.UserManager;
|
|
|
|
import com.android.settings.testutils.shadow.ShadowUserManager;
|
|
import com.android.settings.widget.SwitchBar;
|
|
import com.android.settings.widget.SwitchBarController;
|
|
|
|
import org.junit.After;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.RuntimeEnvironment;
|
|
import org.robolectric.annotation.Config;
|
|
|
|
@RunWith(RobolectricTestRunner.class)
|
|
@Config(shadows = {ShadowUserManager.class})
|
|
public class MultiUserSwitchBarControllerTest {
|
|
|
|
private Context mContext;
|
|
private ShadowUserManager mUserManager;
|
|
private SwitchBarController mSwitchBarController;
|
|
|
|
|
|
@Before
|
|
public void setUp() {
|
|
mContext = RuntimeEnvironment.application;
|
|
mUserManager = ShadowUserManager.getShadow();
|
|
mSwitchBarController = spy(new SwitchBarController(new SwitchBar(mContext)));
|
|
mUserManager.setSupportsMultipleUsers(true);
|
|
}
|
|
|
|
@After
|
|
public void tearDown() {
|
|
ShadowUserManager.reset();
|
|
}
|
|
|
|
@Test
|
|
public void onStart_disallowUserSwitch_shouldSetDisabledByAdmin() {
|
|
mUserManager.setUserRestriction(UserHandle.of(UserHandle.myUserId()),
|
|
UserManager.DISALLOW_USER_SWITCH, true);
|
|
|
|
final MultiUserSwitchBarController controller = new MultiUserSwitchBarController(mContext,
|
|
mSwitchBarController, null);
|
|
|
|
verify(mSwitchBarController).setDisabledByAdmin(any());
|
|
}
|
|
|
|
@Test
|
|
public void onStart_allowUserSwitch_shouldNotSetDisabledByAdmin() {
|
|
mUserManager.setUserRestriction(UserHandle.of(UserHandle.myUserId()),
|
|
UserManager.DISALLOW_USER_SWITCH, false);
|
|
|
|
final MultiUserSwitchBarController controller = new MultiUserSwitchBarController(mContext,
|
|
mSwitchBarController, null);
|
|
|
|
verify(mSwitchBarController, never()).setDisabledByAdmin(any());
|
|
}
|
|
}
|