2023-07-20 16:42:01 +02:00
|
|
|
|
package commands
|
|
|
|
|
|
|
|
|
|
import (
|
2023-07-20 19:17:45 +02:00
|
|
|
|
"testing"
|
|
|
|
|
|
2023-07-20 16:42:01 +02:00
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
|
|
|
"github.com/photoprism/photoprism/pkg/capture"
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestShowConfigOptionsCommand(t *testing.T) {
|
|
|
|
|
var err error
|
|
|
|
|
|
|
|
|
|
ctx := config.CliTestContext()
|
|
|
|
|
|
|
|
|
|
output := capture.Output(func() {
|
|
|
|
|
err = ShowConfigOptionsCommand.Run(ctx)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
t.Fatal(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert.Contains(t, output, "PHOTOPRISM_IMPORT_PATH")
|
|
|
|
|
assert.Contains(t, output, "--sidecar-path")
|
|
|
|
|
assert.Contains(t, output, "sidecar `PATH` *optional*")
|
|
|
|
|
}
|