Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cmd/fs/helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"testing"

"github.com/databricks/cli/cmd/root"
"github.com/databricks/cli/libs/fakefs"
"github.com/databricks/cli/libs/filer"
"github.com/databricks/databricks-sdk-go/experimental/mocks"
"github.com/spf13/cobra"
Expand Down Expand Up @@ -84,7 +85,7 @@ func setupTest(t *testing.T) (*validArgs, *cobra.Command, *mocks.MockWorkspaceCl
cmd, m := setupCommand(t)

fakeFilerForPath := func(ctx context.Context, fullPath string) (filer.Filer, string, error) {
fakeFiler := filer.NewFakeFiler(map[string]filer.FakeFileInfo{
fakeFiler := filer.NewFakeFiler(map[string]fakefs.FileInfo{
"dir": {FakeName: "root", FakeDir: true},
"dir/dirA": {FakeDir: true},
"dir/dirB": {FakeDir: true},
Expand Down
36 changes: 34 additions & 2 deletions libs/fakefs/fakefs.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
package fakefs

import (
"fmt"
"io/fs"
"time"
)

var ErrNotImplemented = fmt.Errorf("not implemented")

// DirEntry is a fake implementation of [fs.DirEntry].
type DirEntry struct {
FileInfo
fs.FileInfo
}

func (entry DirEntry) Type() fs.FileMode {
typ := fs.ModePerm
if entry.FakeDir {
if entry.IsDir() {
typ |= fs.ModeDir
}
return typ
Expand Down Expand Up @@ -53,3 +56,32 @@ func (info FileInfo) IsDir() bool {
func (info FileInfo) Sys() any {
return nil
}

// File is a fake implementation of [fs.File].
type File struct {
FileInfo fs.FileInfo
}

func (f File) Close() error {
return nil
}

func (f File) Read(p []byte) (n int, err error) {
return 0, ErrNotImplemented
}

func (f File) Stat() (fs.FileInfo, error) {
return f.FileInfo, nil
}

// FS is a fake implementation of [fs.FS].
type FS map[string]fs.File

func (f FS) Open(name string) (fs.File, error) {
e, ok := f[name]
if !ok {
return nil, fs.ErrNotExist
}

return e, nil
}
38 changes: 38 additions & 0 deletions libs/fakefs/fakefs_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package fakefs

import (
"io/fs"
"testing"

"github.com/stretchr/testify/assert"
)

func TestFile(t *testing.T) {
var fakefile fs.File = File{
FileInfo: FileInfo{
FakeName: "file",
},
}

_, err := fakefile.Read([]byte{})
assert.ErrorIs(t, err, ErrNotImplemented)

fi, err := fakefile.Stat()
assert.NoError(t, err)
assert.Equal(t, "file", fi.Name())

err = fakefile.Close()
assert.NoError(t, err)
}

func TestFS(t *testing.T) {
var fakefs fs.FS = FS{
"file": File{},
}

_, err := fakefs.Open("doesntexist")
assert.ErrorIs(t, err, fs.ErrNotExist)

_, err = fakefs.Open("file")
assert.NoError(t, err)
}
3 changes: 2 additions & 1 deletion libs/filer/completer/completer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"testing"

"github.com/databricks/cli/cmd/root"
"github.com/databricks/cli/libs/fakefs"
"github.com/databricks/cli/libs/filer"
"github.com/databricks/databricks-sdk-go/experimental/mocks"
"github.com/spf13/cobra"
Expand All @@ -17,7 +18,7 @@ func setupCompleter(t *testing.T, onlyDirs bool) *completer {
// Needed to make type context.valueCtx for mockFilerForPath
ctx = root.SetWorkspaceClient(ctx, mocks.NewMockWorkspaceClient(t).WorkspaceClient)

fakeFiler := filer.NewFakeFiler(map[string]filer.FakeFileInfo{
fakeFiler := filer.NewFakeFiler(map[string]fakefs.FileInfo{
"dir": {FakeName: "root", FakeDir: true},
"dir/dirA": {FakeDir: true},
"dir/dirB": {FakeDir: true},
Expand Down
60 changes: 9 additions & 51 deletions libs/filer/fake_filer.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,58 +8,12 @@ import (
"path"
"sort"
"strings"
"time"
)

type FakeDirEntry struct {
FakeFileInfo
}

func (entry FakeDirEntry) Type() fs.FileMode {
typ := fs.ModePerm
if entry.FakeDir {
typ |= fs.ModeDir
}
return typ
}

func (entry FakeDirEntry) Info() (fs.FileInfo, error) {
return entry.FakeFileInfo, nil
}

type FakeFileInfo struct {
FakeName string
FakeSize int64
FakeDir bool
FakeMode fs.FileMode
}

func (info FakeFileInfo) Name() string {
return info.FakeName
}

func (info FakeFileInfo) Size() int64 {
return info.FakeSize
}

func (info FakeFileInfo) Mode() fs.FileMode {
return info.FakeMode
}

func (info FakeFileInfo) ModTime() time.Time {
return time.Now()
}

func (info FakeFileInfo) IsDir() bool {
return info.FakeDir
}

func (info FakeFileInfo) Sys() any {
return nil
}
"github.com/databricks/cli/libs/fakefs"
)

type FakeFiler struct {
entries map[string]FakeFileInfo
entries map[string]fakefs.FileInfo
}

func (f *FakeFiler) Write(ctx context.Context, p string, reader io.Reader, mode ...WriteMode) error {
Expand Down Expand Up @@ -97,7 +51,7 @@ func (f *FakeFiler) ReadDir(ctx context.Context, p string) ([]fs.DirEntry, error
continue
}

out = append(out, FakeDirEntry{v})
out = append(out, fakefs.DirEntry{FileInfo: v})
}

sort.Slice(out, func(i, j int) bool { return out[i].Name() < out[j].Name() })
Expand All @@ -117,7 +71,11 @@ func (f *FakeFiler) Stat(ctx context.Context, path string) (fs.FileInfo, error)
return entry, nil
}

func NewFakeFiler(entries map[string]FakeFileInfo) *FakeFiler {
// NewFakeFiler creates a new fake [Filer] instance with the given entries.
// It sets the [Name] field of each entry to the base name of the path.
//
// This is meant to be used in tests.
func NewFakeFiler(entries map[string]fakefs.FileInfo) *FakeFiler {
fakeFiler := &FakeFiler{
entries: entries,
}
Expand Down
109 changes: 109 additions & 0 deletions libs/filer/fake_filer_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
package filer

import (
"context"
"io"
"io/fs"
"testing"

"github.com/databricks/cli/libs/fakefs"
"github.com/stretchr/testify/assert"
)

func TestFakeFiler_Read(t *testing.T) {
f := NewFakeFiler(map[string]fakefs.FileInfo{
"file": {},
})

ctx := context.Background()
r, err := f.Read(ctx, "file")
if !assert.NoError(t, err) {
return
}

contents, err := io.ReadAll(r)
if !assert.NoError(t, err) {
return
}

// Contents of every file is "foo".
assert.Equal(t, "foo", string(contents))
}

func TestFakeFiler_Read_NotFound(t *testing.T) {
f := NewFakeFiler(map[string]fakefs.FileInfo{
"foo": {},
})

ctx := context.Background()
_, err := f.Read(ctx, "bar")
assert.ErrorIs(t, err, fs.ErrNotExist)
}

func TestFakeFiler_ReadDir_NotFound(t *testing.T) {
f := NewFakeFiler(map[string]fakefs.FileInfo{
"dir1": {FakeDir: true},
})

ctx := context.Background()
_, err := f.ReadDir(ctx, "dir2")
assert.ErrorIs(t, err, fs.ErrNotExist)
}

func TestFakeFiler_ReadDir_NotADirectory(t *testing.T) {
f := NewFakeFiler(map[string]fakefs.FileInfo{
"file": {},
})

ctx := context.Background()
_, err := f.ReadDir(ctx, "file")
assert.ErrorIs(t, err, fs.ErrInvalid)
}

func TestFakeFiler_ReadDir(t *testing.T) {
f := NewFakeFiler(map[string]fakefs.FileInfo{
"dir1": {FakeDir: true},
"dir1/file2": {},
"dir1/dir2": {FakeDir: true},
})

ctx := context.Background()
entries, err := f.ReadDir(ctx, "dir1/")
if !assert.NoError(t, err) {
return
}

if !assert.Len(t, entries, 2) {
return
}

// The entries are sorted by name.
assert.Equal(t, "dir2", entries[0].Name())
assert.True(t, entries[0].IsDir())
assert.Equal(t, "file2", entries[1].Name())
assert.False(t, entries[1].IsDir())
}

func TestFakeFiler_Stat(t *testing.T) {
f := NewFakeFiler(map[string]fakefs.FileInfo{
"file": {},
})

ctx := context.Background()
info, err := f.Stat(ctx, "file")
if !assert.NoError(t, err) {
return
}

assert.Equal(t, "file", info.Name())
}

func TestFakeFiler_Stat_NotFound(t *testing.T) {
f := NewFakeFiler(map[string]fakefs.FileInfo{
"foo": {},
})

ctx := context.Background()
_, err := f.Stat(ctx, "bar")
assert.ErrorIs(t, err, fs.ErrNotExist)
}
3 changes: 2 additions & 1 deletion libs/filer/fs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"io/fs"
"testing"

"github.com/databricks/cli/libs/fakefs"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down Expand Up @@ -35,7 +36,7 @@ func TestFsDirImplementsFsReadDirFile(t *testing.T) {
}

func fakeFS() fs.FS {
fakeFiler := NewFakeFiler(map[string]FakeFileInfo{
fakeFiler := NewFakeFiler(map[string]fakefs.FileInfo{
".": {FakeName: "root", FakeDir: true},
"dirA": {FakeDir: true},
"dirB": {FakeDir: true},
Expand Down
21 changes: 16 additions & 5 deletions libs/notebook/detect_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"path/filepath"
"testing"

"github.com/databricks/cli/libs/fakefs"
"github.com/databricks/databricks-sdk-go/service/workspace"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down Expand Up @@ -100,19 +101,29 @@ func TestDetectFileWithLongHeader(t *testing.T) {
assert.False(t, nb)
}

type fileInfoWithWorkspaceInfo struct {
fakefs.FileInfo

oi workspace.ObjectInfo
}

func (f fileInfoWithWorkspaceInfo) WorkspaceObjectInfo() workspace.ObjectInfo {
return f.oi
}

func TestDetectWithObjectInfo(t *testing.T) {
fakeFS := &fakeFS{
fakeFile{
fakeFileInfo{
workspace.ObjectInfo{
fakefs := fakefs.FS{
"file.py": fakefs.File{
FileInfo: fileInfoWithWorkspaceInfo{
oi: workspace.ObjectInfo{
ObjectType: workspace.ObjectTypeNotebook,
Language: workspace.LanguagePython,
},
},
},
}

nb, lang, err := DetectWithFS(fakeFS, "doesntmatter")
nb, lang, err := DetectWithFS(fakefs, "file.py")
require.NoError(t, err)
assert.True(t, nb)
assert.Equal(t, workspace.LanguagePython, lang)
Expand Down
Loading