mirror of https://github.com/databricks/cli.git
27 lines
638 B
Go
27 lines
638 B
Go
|
package loader_test
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/databricks/cli/bundle"
|
||
|
"github.com/databricks/cli/bundle/config/loader"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestEntryPointNoRootPath(t *testing.T) {
|
||
|
b := &bundle.Bundle{}
|
||
|
diags := bundle.Apply(context.Background(), b, loader.EntryPoint())
|
||
|
require.Error(t, diags.Error())
|
||
|
}
|
||
|
|
||
|
func TestEntryPoint(t *testing.T) {
|
||
|
b := &bundle.Bundle{
|
||
|
RootPath: "testdata",
|
||
|
}
|
||
|
diags := bundle.Apply(context.Background(), b, loader.EntryPoint())
|
||
|
require.NoError(t, diags.Error())
|
||
|
assert.Equal(t, "loader_test", b.Config.Bundle.Name)
|
||
|
}
|