• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.multiuser.widget.ui.tests
2 /*
3  * Copyright (C) 2025 The Android Open Source Project
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 import com.android.multiuser.widget.data.IUsersRepository
19 import com.android.multiuser.widget.data.model.User
20 import com.android.multiuser.widget.data.model.UserSwitchRestrictions
21 import com.android.multiuser.widget.R
22 
23 import kotlin.collections.List
24 
25 /**
26  * Fake User Repository so we don't have to mock UserManager
27  */
28 class FakeUserRepository : IUsersRepository {
29     var users = listOf<User>( User(  10, "main",  0,  true,  true, true ),
30         User(  11, "secondary",  1,  false,  true, true ))
31     var currentUserAdmin = true
32     var userRestrictions = UserSwitchRestrictions.NONE
33     var switchSucceeded = true
34 
getUsersnull35     override suspend fun getUsers() = users
36     override suspend fun disableSwitchUsers() = userRestrictions != UserSwitchRestrictions.NONE
37     override fun isCurrentUserAdmin() = currentUserAdmin
38     override fun checkUserSwitchRestrictions() = userRestrictions
39     override fun switchToUser(userId: Int) = switchSucceeded
40 }