photoprism/internal/commands/index_test.go
Michael Mayer ca4705eee2 CLI: Add username argument to the "photoprism passwd" command #98
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-12-29 23:41:43 +01:00

56 lines
965 B
Go

package commands
import (
"testing"
"time"
"github.com/leandro-lugaresi/hub"
"github.com/stretchr/testify/assert"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/event"
"github.com/photoprism/photoprism/pkg/capture"
)
func TestIndexCommand(t *testing.T) {
var err error
ctx := config.CliTestContext()
s := event.Subscribe("log.info")
defer event.Unsubscribe(s)
var l string
assert.IsType(t, hub.Subscription{}, s)
go func() {
for msg := range s.Receiver {
l += msg.Fields["message"].(string) + "\n"
}
}()
stdout := capture.Output(func() {
err = IndexCommand.Run(ctx)
})
if err != nil {
t.Fatal(err)
}
if stdout != "" {
t.Logf("stdout: %s", stdout)
}
time.Sleep(time.Second)
// Check command output.
if l != "" {
assert.NotContains(t, l, "error")
assert.NotContains(t, l, "warning")
assert.Contains(t, l, "migrate")
} else {
t.Fatal("log output missing")
}
}