2020-05-03 14:40:59 +02:00
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
2020-06-07 10:09:35 +02:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2020-05-03 14:40:59 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2020-06-07 10:09:35 +02:00
|
|
|
func TestRel(t *testing.T) {
|
2020-05-22 19:05:16 +02:00
|
|
|
t.Run("same", func(t *testing.T) {
|
2020-07-14 11:00:49 +02:00
|
|
|
assert.Equal(t, "", RelName("/some/path", "/some/path"))
|
2020-05-22 19:05:16 +02:00
|
|
|
})
|
|
|
|
t.Run("short", func(t *testing.T) {
|
2020-07-14 11:00:49 +02:00
|
|
|
assert.Equal(t, "/some/", RelName("/some/", "/some/path"))
|
2020-05-22 19:05:16 +02:00
|
|
|
})
|
|
|
|
t.Run("empty", func(t *testing.T) {
|
2020-07-14 11:00:49 +02:00
|
|
|
assert.Equal(t, "", RelName("", "/some/path"))
|
2020-05-22 19:05:16 +02:00
|
|
|
})
|
2020-05-03 14:40:59 +02:00
|
|
|
t.Run("/some/path", func(t *testing.T) {
|
2020-07-14 11:00:49 +02:00
|
|
|
assert.Equal(t, "foo/bar.baz", RelName("/some/path/foo/bar.baz", "/some/path"))
|
2020-05-03 14:40:59 +02:00
|
|
|
})
|
|
|
|
t.Run("/some/path/", func(t *testing.T) {
|
2020-07-14 11:00:49 +02:00
|
|
|
assert.Equal(t, "foo/bar.baz", RelName("/some/path/foo/bar.baz", "/some/path/"))
|
2020-05-03 14:40:59 +02:00
|
|
|
})
|
|
|
|
t.Run("/some/path/bar", func(t *testing.T) {
|
2020-07-14 11:00:49 +02:00
|
|
|
assert.Equal(t, "/some/path/foo/bar.baz", RelName("/some/path/foo/bar.baz", "/some/path/bar"))
|
2020-06-07 10:09:35 +02:00
|
|
|
})
|
2020-07-07 15:13:42 +02:00
|
|
|
t.Run("empty dir", func(t *testing.T) {
|
2020-07-14 11:00:49 +02:00
|
|
|
assert.Equal(t, "/some/path/foo/bar.baz", RelName("/some/path/foo/bar.baz", ""))
|
2020-07-07 15:13:42 +02:00
|
|
|
})
|
2020-06-07 10:09:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestFileName(t *testing.T) {
|
|
|
|
t.Run("Test copy 3.jpg", func(t *testing.T) {
|
|
|
|
result := FileName("testdata/Test (4).jpg", ".photoprism", Abs("testdata"), ".xmp", true)
|
|
|
|
|
|
|
|
assert.Equal(t, "testdata/.photoprism/Test.xmp", result)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Test (3).jpg", func(t *testing.T) {
|
|
|
|
result := FileName("testdata/Test (4).jpg", ".photoprism", Abs("testdata"), ".xmp", false)
|
|
|
|
|
|
|
|
assert.Equal(t, "testdata/.photoprism/Test (4).xmp", result)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("FOO.XMP", func(t *testing.T) {
|
|
|
|
result := FileName("testdata/FOO.XMP", ".photoprism/sub", Abs("testdata"), ".jpeg", true)
|
|
|
|
|
|
|
|
assert.Equal(t, "testdata/.photoprism/sub/FOO.jpeg", result)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Test copy 3.jpg", func(t *testing.T) {
|
|
|
|
tempDir := filepath.Join(os.TempDir(), HiddenPath)
|
|
|
|
|
|
|
|
// t.Logf("TEMP DIR, ABS NAME: %s, %s", tempDir, Abs("testdata/Test (4).jpg"))
|
|
|
|
|
|
|
|
result := FileName(Abs("testdata/Test (4).jpg"), tempDir, Abs("testdata"), ".xmp", true)
|
|
|
|
|
|
|
|
assert.Equal(t, tempDir+"/Test.xmp", result)
|
2020-05-03 14:40:59 +02:00
|
|
|
})
|
2020-07-07 15:13:42 +02:00
|
|
|
|
|
|
|
t.Run("empty dir", func(t *testing.T) {
|
|
|
|
result := FileName("testdata/FOO.XMP", "", Abs("testdata"), ".jpeg", true)
|
|
|
|
|
|
|
|
assert.Equal(t, "testdata/FOO.jpeg", result)
|
|
|
|
})
|
2020-05-03 14:40:59 +02:00
|
|
|
}
|