photoprism/internal/entity/file_test.go
Michael Mayer 91b1d7a198 WebDAV sharing proof-of-concept #225
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-04-01 12:00:45 +02:00

35 lines
956 B
Go

package entity
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestFile_DownloadFileName(t *testing.T) {
t.Run("photo with title", func(t *testing.T) {
photo := &Photo{TakenAt: time.Date(2019, 01, 15, 0, 0, 0, 0, time.UTC), PhotoTitle: "Berlin / Morning Mood"}
file := &File{Photo: photo, FileType: "jpg"}
filename := file.ShareFileName()
assert.Equal(t, "20190115-000000-Berlin-Morning-Mood.jpg", filename)
})
t.Run("photo without title", func(t *testing.T) {
photo := &Photo{TakenAt: time.Date(2019, 01, 15, 0, 0, 0, 0, time.UTC), PhotoTitle: ""}
file := &File{Photo: photo, FileType: "jpg", PhotoUUID: "123"}
filename := file.ShareFileName()
assert.Equal(t, "20190115-000000-123.jpg", filename)
})
t.Run("photo without photo", func(t *testing.T) {
file := &File{Photo: nil, FileType: "jpg", FileHash: "123Hash"}
filename := file.ShareFileName()
assert.Equal(t, "123Hash.jpg", filename)
})
}