mirror of https://github.com/databricks/cli.git
44 lines
1.5 KiB
Go
44 lines
1.5 KiB
Go
package libraries
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/databricks/databricks-sdk-go/service/compute"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIsLocalPath(t *testing.T) {
|
|
// Relative paths, paths with the file scheme, and Windows paths.
|
|
assert.True(t, IsLocalPath("./some/local/path"))
|
|
assert.True(t, IsLocalPath("file://path/to/package"))
|
|
assert.True(t, IsLocalPath("C:\\path\\to\\package"))
|
|
assert.True(t, IsLocalPath("myfile.txt"))
|
|
assert.True(t, IsLocalPath("./myfile.txt"))
|
|
assert.True(t, IsLocalPath("../myfile.txt"))
|
|
assert.True(t, IsLocalPath("file:///foo/bar/myfile.txt"))
|
|
|
|
// Absolute paths.
|
|
assert.False(t, IsLocalPath("/some/full/path"))
|
|
assert.False(t, IsLocalPath("/Workspace/path/to/package"))
|
|
assert.False(t, IsLocalPath("/Users/path/to/package"))
|
|
|
|
// Paths with schemes.
|
|
assert.False(t, IsLocalPath("dbfs://path/to/package"))
|
|
assert.False(t, IsLocalPath("dbfs:/path/to/package"))
|
|
assert.False(t, IsLocalPath("s3://path/to/package"))
|
|
assert.False(t, IsLocalPath("abfss://path/to/package"))
|
|
}
|
|
|
|
func TestIsLocalLibrary(t *testing.T) {
|
|
// Local paths.
|
|
assert.True(t, IsLocalLibrary(&compute.Library{Whl: "./file.whl"}))
|
|
assert.True(t, IsLocalLibrary(&compute.Library{Jar: "../target/some.jar"}))
|
|
|
|
// Non-local paths.
|
|
assert.False(t, IsLocalLibrary(&compute.Library{Whl: "/Workspace/path/to/file.whl"}))
|
|
assert.False(t, IsLocalLibrary(&compute.Library{Jar: "s3:/bucket/path/some.jar"}))
|
|
|
|
// Empty.
|
|
assert.False(t, IsLocalLibrary(&compute.Library{}))
|
|
}
|