mirror of https://github.com/databricks/cli.git
21 lines
516 B
Go
21 lines
516 B
Go
package bundletest
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
"github.com/databricks/cli/libs/diag"
|
|
"github.com/databricks/cli/libs/dyn"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func Mutate(t *testing.T, b *bundle.Bundle, f func(v dyn.Value) (dyn.Value, error)) {
|
|
diags := bundle.ApplyFunc(context.Background(), b, func(ctx context.Context, b *bundle.Bundle) diag.Diagnostics {
|
|
err := b.Config.Mutate(f)
|
|
require.NoError(t, err)
|
|
return nil
|
|
})
|
|
require.NoError(t, diags.Error())
|
|
}
|