mirror of https://github.com/databricks/cli.git
86 lines
2.4 KiB
Go
86 lines
2.4 KiB
Go
|
package filer
|
||
|
|
||
|
import (
|
||
|
"path"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func testRootPath(t *testing.T, uncleanRoot string) {
|
||
|
cleanRoot := path.Clean(uncleanRoot)
|
||
|
rp := NewRootPath(uncleanRoot)
|
||
|
|
||
|
remotePath, err := rp.Join("a/b/c")
|
||
|
assert.NoError(t, err)
|
||
|
assert.Equal(t, cleanRoot+"/a/b/c", remotePath)
|
||
|
|
||
|
remotePath, err = rp.Join("a/b/../d")
|
||
|
assert.NoError(t, err)
|
||
|
assert.Equal(t, cleanRoot+"/a/d", remotePath)
|
||
|
|
||
|
remotePath, err = rp.Join("a/../c")
|
||
|
assert.NoError(t, err)
|
||
|
assert.Equal(t, cleanRoot+"/c", remotePath)
|
||
|
|
||
|
remotePath, err = rp.Join("a/b/c/.")
|
||
|
assert.NoError(t, err)
|
||
|
assert.Equal(t, cleanRoot+"/a/b/c", remotePath)
|
||
|
|
||
|
remotePath, err = rp.Join("a/b/c/d/./../../f/g")
|
||
|
assert.NoError(t, err)
|
||
|
assert.Equal(t, cleanRoot+"/a/b/f/g", remotePath)
|
||
|
|
||
|
_, err = rp.Join("..")
|
||
|
assert.ErrorContains(t, err, `relative path escapes root: ..`)
|
||
|
|
||
|
_, err = rp.Join("a/../..")
|
||
|
assert.ErrorContains(t, err, `relative path escapes root: a/../..`)
|
||
|
|
||
|
_, err = rp.Join("./../.")
|
||
|
assert.ErrorContains(t, err, `relative path escapes root: ./../.`)
|
||
|
|
||
|
_, err = rp.Join("/./.././..")
|
||
|
assert.ErrorContains(t, err, `relative path escapes root: /./.././..`)
|
||
|
|
||
|
_, err = rp.Join("./../.")
|
||
|
assert.ErrorContains(t, err, `relative path escapes root: ./../.`)
|
||
|
|
||
|
_, err = rp.Join("./..")
|
||
|
assert.ErrorContains(t, err, `relative path escapes root: ./..`)
|
||
|
|
||
|
_, err = rp.Join("./../../..")
|
||
|
assert.ErrorContains(t, err, `relative path escapes root: ./../../..`)
|
||
|
|
||
|
_, err = rp.Join("./../a/./b../../..")
|
||
|
assert.ErrorContains(t, err, `relative path escapes root: ./../a/./b../../..`)
|
||
|
|
||
|
_, err = rp.Join("../..")
|
||
|
assert.ErrorContains(t, err, `relative path escapes root: ../..`)
|
||
|
|
||
|
_, err = rp.Join(".//a/..//./b/..")
|
||
|
assert.ErrorContains(t, err, `relative path resolves to root: .//a/..//./b/..`)
|
||
|
|
||
|
_, err = rp.Join("a/b/../..")
|
||
|
assert.ErrorContains(t, err, "relative path resolves to root: a/b/../..")
|
||
|
|
||
|
_, err = rp.Join("")
|
||
|
assert.ErrorContains(t, err, "relative path resolves to root: ")
|
||
|
|
||
|
_, err = rp.Join(".")
|
||
|
assert.ErrorContains(t, err, "relative path resolves to root: .")
|
||
|
|
||
|
_, err = rp.Join("/")
|
||
|
assert.ErrorContains(t, err, "relative path resolves to root: /")
|
||
|
}
|
||
|
|
||
|
func TestRootPathClean(t *testing.T) {
|
||
|
testRootPath(t, "/some/root/path")
|
||
|
}
|
||
|
|
||
|
func TestRootPathUnclean(t *testing.T) {
|
||
|
testRootPath(t, "/some/root/path/")
|
||
|
testRootPath(t, "/some/root/path/.")
|
||
|
testRootPath(t, "/some/root/../path/")
|
||
|
}
|