// Copyright 2024 Matthew Rich . 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) { }