photoprism/pkg/clean/search_test.go
Michael Mayer 92e6c4fe1e Download: Add Disabled, Originals, MediaRaw & MediaSidecar Flags #2234
Extends DownloadSettings with 4 additional options:
- Name: File name pattern for downloaded files (existed)
- Disabled: Disables downloads
- Originals: Only download files stored in "originals" folder
- MediaRaw: Include RAW image files
- MediaSidecar: Include metadata sidecar files (JSON, XMP, YAML)
2022-04-15 09:42:07 +02:00

38 lines
1.1 KiB
Go

package clean
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSearchString(t *testing.T) {
t.Run("Replace", func(t *testing.T) {
q := SearchString("table spoon & usa | img% json OR BILL!\n")
assert.Equal(t, "table spoon & usa | img* json OR BILL!", q)
})
t.Run("AndOr", func(t *testing.T) {
q := SearchString("Jens AND Mander and me Or Kitty AND ")
assert.Equal(t, "Jens AND Mander and me Or Kitty AND ", q)
})
t.Run("FlowersInThePark", func(t *testing.T) {
q := SearchString(" Flowers in the Park ")
assert.Equal(t, " Flowers in the Park ", q)
})
}
func TestSearchQuery(t *testing.T) {
t.Run("Replace", func(t *testing.T) {
q := SearchQuery("table spoon & usa | img% json OR BILL!\n")
assert.Equal(t, "table spoon & usa | img* json|BILL!", q)
})
t.Run("AndOr", func(t *testing.T) {
q := SearchQuery("Jens AND Mander and me Or Kitty AND ")
assert.Equal(t, "Jens&Mander&me|Kitty&", q)
})
t.Run("FlowersInThePark", func(t *testing.T) {
q := SearchQuery(" Flowers in the Park ")
assert.Equal(t, "Flowers&the Park", q)
})
}