34 lines
965 B
Go
34 lines
965 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.DownloadFileName()
|
|
|
|
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.DownloadFileName()
|
|
|
|
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.DownloadFileName()
|
|
|
|
assert.Equal(t, "123Hash.jpg", filename)
|
|
})
|
|
}
|