Files
photoprism/internal/commands/passwd_test.go
2024-07-17 16:38:34 +02:00

53 lines
1.2 KiB
Go

package commands
import (
"github.com/photoprism/photoprism/pkg/capture"
"github.com/stretchr/testify/assert"
"testing"
)
func TestPasswdCommand(t *testing.T) {
t.Run("UserNotFound", func(t *testing.T) {
var err error
ctx := NewTestContext([]string{"passwd", "--show", "mila"})
// Run command with test context.
output := capture.Output(func() {
err = PasswdCommand.Run(ctx)
})
// Check command output for plausibility.
assert.Error(t, err)
assert.Empty(t, output)
})
t.Run("DeletedUser", func(t *testing.T) {
var err error
ctx := NewTestContext([]string{"passwd", "--show", "uqxqg7i1kperxvu8"})
// Run command with test context.
output := capture.Output(func() {
err = PasswdCommand.Run(ctx)
})
// Check command output for plausibility.
assert.Error(t, err)
assert.Empty(t, output)
})
t.Run("DeletePassword", func(t *testing.T) {
var err error
ctx := NewTestContext([]string{"passwd", "--rm", "no_local_auth"})
// Run command with test context.
output := capture.Output(func() {
err = PasswdCommand.Run(ctx)
})
// Check command output for plausibility.
assert.NoError(t, err)
assert.Empty(t, output)
})
}