mirror of https://github.com/databricks/cli.git
added unit test for this
This commit is contained in:
parent
0947b61bab
commit
95f37b1d96
|
@ -0,0 +1,29 @@
|
|||
package filer
|
||||
|
||||
import (
|
||||
"context"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestLocalClientAtRootForWindows(t *testing.T) {
|
||||
if runtime.GOOS != "windows" {
|
||||
t.Skip("this test is only meant for windows")
|
||||
}
|
||||
tmpDir := t.TempDir()
|
||||
ctx := context.Background()
|
||||
|
||||
// create filer root at "root"
|
||||
f, err := NewLocalClient("/")
|
||||
require.NoError(t, err)
|
||||
|
||||
// Assert stat call to the temp dir succeeds.
|
||||
info, err := f.Stat(ctx, tmpDir)
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, filepath.Base(tmpDir), info.Name())
|
||||
assert.True(t, info.IsDir())
|
||||
}
|
Loading…
Reference in New Issue