mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 11:32:01 +00:00
19 lines
519 B
Go
19 lines
519 B
Go
|
package permissions
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
|
||
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
||
|
)
|
||
|
|
||
|
func TestAdmins(t *testing.T) {
|
||
|
a := NewAdmins([]string{"woodpecker-ci"})
|
||
|
assert.True(t, a.IsAdmin(&model.User{Login: "woodpecker-ci"}))
|
||
|
assert.False(t, a.IsAdmin(&model.User{Login: "not-woodpecker-ci"}))
|
||
|
empty := NewAdmins([]string{})
|
||
|
assert.False(t, empty.IsAdmin(&model.User{Login: "woodpecker-ci"}))
|
||
|
assert.False(t, empty.IsAdmin(&model.User{Login: "not-woodpecker-ci"}))
|
||
|
}
|