photoprism/pkg/fs/hash_test.go
Michael Mayer f8a45b14d9 Backend: Move reusable packages to pkg/
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-12 14:00:56 +01:00

18 lines
377 B
Go

package fs
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestHash(t *testing.T) {
t.Run("existing image", func(t *testing.T) {
hash := Hash("testdata/test.jpg")
assert.Equal(t, "516cb1fefbfd9fa66f1db50b94503a480cee30db", hash)
})
t.Run("not existing image", func(t *testing.T) {
hash := Hash("testdata/xxx.jpg")
assert.Equal(t, "", hash)
})
}