photoprism/pkg/clean/path_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,007 B
Go

package clean
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestPath(t *testing.T) {
t.Run("ValidPath", func(t *testing.T) {
assert.Equal(t, "/go/src/github.com/photoprism/photoprism", Path("/go/src/github.com/photoprism/photoprism"))
})
t.Run("ValidFile", func(t *testing.T) {
assert.Equal(t, "filename.TXT", Path("filename.TXT"))
})
t.Run("The quick brown fox.", func(t *testing.T) {
assert.Equal(t, "The quick brown fox.", Path("The quick brown fox."))
})
t.Run("filename.txt", func(t *testing.T) {
assert.Equal(t, "filename.txt", Path("filename.txt"))
})
t.Run("Empty", func(t *testing.T) {
assert.Equal(t, "", Path(""))
})
t.Run("Dot", func(t *testing.T) {
assert.Equal(t, ".", Path("."))
})
t.Run("DotDot", func(t *testing.T) {
assert.Equal(t, "", Path(".."))
})
t.Run("DotDotDot", func(t *testing.T) {
assert.Equal(t, "", Path("..."))
})
t.Run("Replace", func(t *testing.T) {
assert.Equal(t, "", Path("${https://<host>:<port>/<path>}"))
})
}