mirror of https://github.com/databricks/cli.git
54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
package bundle
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/databricks/cli/internal"
|
|
"github.com/databricks/cli/internal/acc"
|
|
"github.com/databricks/cli/libs/env"
|
|
"github.com/google/uuid"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func runSparkJarTest(t *testing.T, sparkVersion string) {
|
|
cloudEnv := internal.GetEnvOrSkipTest(t, "CLOUD_ENV")
|
|
t.Log(cloudEnv)
|
|
|
|
if os.Getenv("TEST_METASTORE_ID") == "" {
|
|
t.Skip("Skipping tests that require a UC Volume when metastore id is not set.")
|
|
}
|
|
|
|
ctx, wt := acc.WorkspaceTest(t)
|
|
w := wt.W
|
|
volumePath := internal.TemporaryUcVolume(t, w)
|
|
|
|
nodeTypeId := internal.GetNodeTypeId(cloudEnv)
|
|
tmpDir := t.TempDir()
|
|
instancePoolId := env.Get(ctx, "TEST_INSTANCE_POOL_ID")
|
|
bundleRoot, err := initTestTemplateWithBundleRoot(t, ctx, "spark_jar_task", map[string]any{
|
|
"node_type_id": nodeTypeId,
|
|
"unique_id": uuid.New().String(),
|
|
"spark_version": sparkVersion,
|
|
"root": tmpDir,
|
|
"artifact_path": volumePath,
|
|
"instance_pool_id": instancePoolId,
|
|
}, tmpDir)
|
|
require.NoError(t, err)
|
|
|
|
err = deployBundle(t, ctx, bundleRoot)
|
|
require.NoError(t, err)
|
|
|
|
t.Cleanup(func() {
|
|
destroyBundle(t, ctx, bundleRoot)
|
|
})
|
|
|
|
out, err := runResource(t, ctx, bundleRoot, "jar_job")
|
|
require.NoError(t, err)
|
|
require.Contains(t, out, "Hello from Jar!")
|
|
}
|
|
|
|
func TestAccSparkJarTaskDeployAndRunOnVolumes(t *testing.T) {
|
|
runSparkJarTest(t, "14.3.x-scala2.12")
|
|
}
|