Tests: Add unit tests

This commit is contained in:
graciousgrey
2024-01-23 16:13:27 +01:00
parent 86dc89c4b9
commit 27dda3bc2b
4 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
package commands
import (
"github.com/photoprism/photoprism/pkg/capture"
"github.com/stretchr/testify/assert"
"testing"
)
func TestClientsAddCommand(t *testing.T) {
t.Run("AddClient", func(t *testing.T) {
var err error
ctx := NewTestContext([]string{"add", "--name=Clara Client", "--scope=photos albums", "--expires=5000", "--tokens=2", "clara"})
// Run command with test context.
output := capture.Output(func() {
err = ClientsAddCommand.Run(ctx)
})
// Check command output for plausibility.
// t.Logf(output)
assert.NoError(t, err)
assert.Contains(t, output, "Clara Client")
assert.Contains(t, output, "client")
assert.Contains(t, output, "albums photos")
assert.Contains(t, output, "Client Secret")
})
}