github.com/stulluk/snapd@v0.0.0-20210611110309-f6d5d5bd24b0/daemon/export_access_test.go (about)

     1  // -*- Mode: Go; indent-tabs-mode: t -*-
     2  
     3  /*
     4   * Copyright (C) 2021 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  	"net/http"
    24  
    25  	"github.com/snapcore/snapd/polkit"
    26  )
    27  
    28  type (
    29  	AccessChecker = accessChecker
    30  	AccessResult  = accessResult
    31  
    32  	OpenAccess          = openAccess
    33  	AuthenticatedAccess = authenticatedAccess
    34  	RootAccess          = rootAccess
    35  	SnapAccess          = snapAccess
    36  )
    37  
    38  const (
    39  	AccessOK           = accessOK
    40  	AccessUnauthorized = accessUnauthorized
    41  	AccessForbidden    = accessForbidden
    42  	AccessCancelled    = accessCancelled
    43  )
    44  
    45  var CheckPolkitActionImpl = checkPolkitActionImpl
    46  
    47  func MockCheckPolkitAction(new func(r *http.Request, ucred *Ucrednet, action string) AccessResult) (restore func()) {
    48  	old := checkPolkitAction
    49  	checkPolkitAction = new
    50  	return func() {
    51  		checkPolkitAction = old
    52  	}
    53  }
    54  
    55  func MockPolkitCheckAuthorization(new func(pid int32, uid uint32, actionId string, details map[string]string, flags polkit.CheckFlags) (bool, error)) (restore func()) {
    56  	old := polkitCheckAuthorization
    57  	polkitCheckAuthorization = new
    58  	return func() {
    59  		polkitCheckAuthorization = old
    60  	}
    61  }