photoprism/pkg/txt/search_test.go
Michael Mayer 24eff21aa4 Search: Default to photo names and keywords #1517 #1560
Default to photo name when search term is too short or on the stop list.
Search full text index otherwise, which now include names of people
(requires reindexing).
2021-09-29 20:09:34 +02:00

20 lines
500 B
Go

package txt
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSearchTerms(t *testing.T) {
t.Run("Many", func(t *testing.T) {
result := SearchTerms("I'm a lazy-BRoWN fox! Yellow banana, apple; pan-pot b&w")
assert.Len(t, result, 6)
assert.Equal(t, map[string]bool{"apple": true, "banana": true, "fox": true, "lazy-brown": true, "pan-pot": true, "yellow": true}, result)
})
t.Run("Empty", func(t *testing.T) {
result := SearchTerms("")
assert.Len(t, result, 0)
})
}