92e6c4fe1e
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)
22 lines
468 B
Go
22 lines
468 B
Go
package projection
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestFromName(t *testing.T) {
|
|
t.Run("Unknown", func(t *testing.T) {
|
|
result := Find("")
|
|
assert.Equal(t, Unknown, result)
|
|
})
|
|
t.Run("Other", func(t *testing.T) {
|
|
result := Find("zdfbhmdflkbhelkthn")
|
|
assert.Equal(t, Other, result)
|
|
})
|
|
t.Run(Equirectangular.String(), func(t *testing.T) {
|
|
result := Find("Equirectangular ")
|
|
assert.Equal(t, Equirectangular, result)
|
|
})
|
|
}
|