github.com/bugraaydogar/snapd@v0.0.0-20210315170335-8c70bb858939/daemon/export_api_users_test.go (about) 1 // -*- Mode: Go; indent-tabs-mode: t -*- 2 3 /* 4 * Copyright (C) 2020 Canonical Ltd 5 * 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 3 as 8 * published by the Free Software Foundation. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 * 18 */ 19 20 package daemon 21 22 import ( 23 "os/user" 24 25 "github.com/snapcore/snapd/osutil" 26 ) 27 28 func MockHasUserAdmin(mockHasUserAdmin bool) (restore func()) { 29 oldHasUserAdmin := hasUserAdmin 30 hasUserAdmin = mockHasUserAdmin 31 return func() { 32 hasUserAdmin = oldHasUserAdmin 33 } 34 } 35 36 func MockUserLookup(lookup func(username string) (*user.User, error)) (restore func()) { 37 oldLookup := userLookup 38 userLookup = lookup 39 return func() { 40 userLookup = oldLookup 41 } 42 } 43 44 func MockOsutilAddUser(addUser func(name string, opts *osutil.AddUserOptions) error) (restore func()) { 45 oldAddUser := osutilAddUser 46 osutilAddUser = addUser 47 return func() { 48 osutilAddUser = oldAddUser 49 } 50 } 51 52 func MockOsutilDelUser(delUser func(name string, opts *osutil.DelUserOptions) error) (restore func()) { 53 oldDelUser := osutilDelUser 54 osutilDelUser = delUser 55 return func() { 56 osutilDelUser = oldDelUser 57 } 58 } 59 60 type ( 61 UserResponseData = userResponseData 62 ) 63 64 var ( 65 GetUserDetailsFromAssertion = getUserDetailsFromAssertion 66 )