cdadf664ff
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
86 lines
2.1 KiB
Go
86 lines
2.1 KiB
Go
package query
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
log = logrus.StandardLogger()
|
|
log.SetLevel(logrus.DebugLevel)
|
|
|
|
dsn := os.Getenv("PHOTOPRISM_TEST_DSN")
|
|
|
|
if dsn == "" {
|
|
panic("database dsn is empty")
|
|
}
|
|
|
|
db := entity.InitTestDb(strings.Replace(dsn, "/photoprism", "/query", 1))
|
|
|
|
code := m.Run()
|
|
|
|
if db != nil {
|
|
db.Close()
|
|
}
|
|
|
|
os.Exit(code)
|
|
}
|
|
|
|
func TestLikeAny(t *testing.T) {
|
|
t.Run("table spoon usa img json", func(t *testing.T) {
|
|
where := LikeAny("k.keyword", "table spoon usa img json")
|
|
assert.Equal(t, "k.keyword LIKE 'json%' OR k.keyword LIKE 'spoon%' OR k.keyword LIKE 'table%' OR k.keyword = 'usa'", where)
|
|
})
|
|
|
|
t.Run("cat dog", func(t *testing.T) {
|
|
where := LikeAny("k.keyword", "cat dog")
|
|
assert.Equal(t, "k.keyword = 'cat' OR k.keyword = 'dog'", where)
|
|
})
|
|
|
|
t.Run("spoon", func(t *testing.T) {
|
|
where := LikeAny("k.keyword", "spoon")
|
|
assert.Equal(t, "k.keyword LIKE 'spoon%'", where)
|
|
})
|
|
|
|
t.Run("img", func(t *testing.T) {
|
|
where := LikeAny("k.keyword", "img")
|
|
assert.Equal(t, "", where)
|
|
})
|
|
|
|
t.Run("empty", func(t *testing.T) {
|
|
where := LikeAny("k.keyword", "")
|
|
assert.Equal(t, "", where)
|
|
})
|
|
}
|
|
|
|
func TestAnySlug(t *testing.T) {
|
|
t.Run("table spoon usa img json", func(t *testing.T) {
|
|
where := AnySlug("custom_slug", "table spoon usa img json")
|
|
assert.Equal(t, "custom_slug = 'table' OR custom_slug = 'spoon' OR custom_slug = 'usa' OR custom_slug = 'img' OR custom_slug = 'json'", where)
|
|
})
|
|
|
|
t.Run("cat dog", func(t *testing.T) {
|
|
where := AnySlug("custom_slug", "cat dog")
|
|
assert.Equal(t, "custom_slug = 'cat' OR custom_slug = 'dog'", where)
|
|
})
|
|
|
|
t.Run("spoon", func(t *testing.T) {
|
|
where := AnySlug("custom_slug", "spoon")
|
|
assert.Equal(t, "custom_slug = 'spoon'", where)
|
|
})
|
|
|
|
t.Run("img", func(t *testing.T) {
|
|
where := AnySlug("custom_slug", "img")
|
|
assert.Equal(t, "custom_slug = 'img'", where)
|
|
})
|
|
|
|
t.Run("empty", func(t *testing.T) {
|
|
where := AnySlug("custom_slug", "")
|
|
assert.Equal(t, "", where)
|
|
})
|
|
}
|