2020-01-05 14:18:40 +01:00
|
|
|
package query
|
2019-12-28 20:24:20 +01:00
|
|
|
|
|
|
|
import (
|
2020-01-27 17:19:47 +01:00
|
|
|
"github.com/stretchr/testify/assert"
|
2019-12-28 20:24:20 +01:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
|
|
)
|
|
|
|
|
2020-03-28 17:17:41 +01:00
|
|
|
func TestQuery_CategoryLabels(t *testing.T) {
|
2019-12-28 20:24:20 +01:00
|
|
|
conf := config.TestConfig()
|
|
|
|
|
2020-03-28 15:29:17 +01:00
|
|
|
search := New(conf.Db())
|
2019-12-28 20:24:20 +01:00
|
|
|
|
|
|
|
categories := search.CategoryLabels(1000, 0)
|
|
|
|
|
2020-04-09 19:39:09 +02:00
|
|
|
assert.GreaterOrEqual(t, 1, len(categories))
|
2019-12-28 20:24:20 +01:00
|
|
|
}
|