mirror of https://github.com/databricks/cli.git
33 lines
680 B
Go
33 lines
680 B
Go
package scripts
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
"github.com/databricks/cli/bundle/config"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestExecutesHook(t *testing.T) {
|
|
b := &bundle.Bundle{
|
|
Config: config.Root{
|
|
Experimental: &config.Experimental{
|
|
Scripts: map[config.ScriptHook]config.Command{
|
|
config.ScriptPreBuild: "echo 'Hello'",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
_, out, err := executeHook(context.Background(), b, config.ScriptPreBuild)
|
|
require.NoError(t, err)
|
|
|
|
reader := bufio.NewReader(out)
|
|
line, err := reader.ReadString('\n')
|
|
|
|
require.NoError(t, err)
|
|
require.Equal(t, "Hello", strings.TrimSpace(line))
|
|
}
|