photoprism/internal/form/feedback_test.go
Michael Mayer 0852e659c2 API: Improve logs and add /api/v1/connect endpoint for auth callbacks
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-07-19 16:58:43 +02:00

26 lines
514 B
Go

package form
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestFeedback_Empty(t *testing.T) {
t.Run("true", func(t *testing.T) {
f := Feedback{}
assert.True(t, f.Empty())
})
t.Run("false", func(t *testing.T) {
f := Feedback{Message: "I found a bug", Category: "Bug Report", UserEmail: "test@test.com"}
assert.False(t, f.Empty())
})
t.Run("false", func(t *testing.T) {
if f, err := NewFeedback(""); err != nil {
t.Fatal(err)
} else {
assert.True(t, f.Empty())
}
})
}