42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
|
package search
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestSelectString(t *testing.T) {
|
||
|
t.Run("PhotoWildcard", func(t *testing.T) {
|
||
|
// SelectCols returns a string containing the
|
||
|
// comma separated column names.
|
||
|
result := SelectString(Photo{}, []string{"*"})
|
||
|
assert.Len(t, result, 1599)
|
||
|
})
|
||
|
t.Run("PhotoGeoResult", func(t *testing.T) {
|
||
|
// SelectCols returns a string containing
|
||
|
// the selected column names.
|
||
|
result := SelectString(Photo{}, SelectCols(GeoResult{}, []string{"*"}))
|
||
|
|
||
|
t.Logf("PhotoGeoResult: %d cols, %#v", len(result), result)
|
||
|
assert.Len(t, result, 245)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func TestSelectCols(t *testing.T) {
|
||
|
t.Run("PhotoWildcard", func(t *testing.T) {
|
||
|
// SelectCols returns a string containing
|
||
|
// the selected column names.
|
||
|
result := SelectCols(Photo{}, []string{"*"})
|
||
|
assert.Len(t, result, 81)
|
||
|
})
|
||
|
t.Run("PhotoGeoResult", func(t *testing.T) {
|
||
|
// SelectCols returns a string containing
|
||
|
// the selected column names.
|
||
|
result := SelectCols(Photo{}, SelectCols(GeoResult{}, []string{"*"}))
|
||
|
|
||
|
t.Logf("PhotoGeoResult: %d cols, %#v", len(result), result)
|
||
|
assert.Len(t, result, 13)
|
||
|
})
|
||
|
}
|