Matthew Rich
e695278d0c
All checks were successful
Declarative Tests / test (push) Successful in 48s
34 lines
561 B
Go
34 lines
561 B
Go
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
package resource
|
|
|
|
import (
|
|
_ "context"
|
|
_ "encoding/json"
|
|
_ "fmt"
|
|
"github.com/stretchr/testify/assert"
|
|
_ "io"
|
|
_ "net/http"
|
|
_ "net/http/httptest"
|
|
_ "net/url"
|
|
_ "strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestLookupUID(t *testing.T) {
|
|
uid, e := LookupUID("nobody")
|
|
|
|
assert.Equal(t, nil, e)
|
|
assert.Equal(t, 65534, uid)
|
|
}
|
|
|
|
func TestLookupGID(t *testing.T) {
|
|
gid, e := LookupGID("nobody")
|
|
|
|
assert.Equal(t, nil, e)
|
|
assert.Equal(t, 65534, gid)
|
|
}
|
|
|
|
func TestExecCommand(t *testing.T) {
|
|
|
|
}
|