mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-29 14:13:50 +08:00
29 lines
711 B
Go
29 lines
711 B
Go
package commands
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestUsersRemoveCommand(t *testing.T) {
|
|
t.Run("RemoveNotExistingUser", func(t *testing.T) {
|
|
// Run command with test context.
|
|
output, err := RunWithTestContext(UsersRemoveCommand, []string{"rm", "uqxqg7i1kperxxx0"})
|
|
|
|
// Check command output for plausibility.
|
|
// t.Logf(output)
|
|
assert.Error(t, err)
|
|
assert.Empty(t, output)
|
|
})
|
|
t.Run("RemoveDeletedUser", func(t *testing.T) {
|
|
// Run command with test context.
|
|
output, err := RunWithTestContext(UsersRemoveCommand, []string{"rm", "deleted"})
|
|
|
|
// Check command output for plausibility.
|
|
// t.Logf(output)
|
|
assert.Error(t, err)
|
|
assert.Empty(t, output)
|
|
})
|
|
}
|