mirror of https://github.com/databricks/cli.git
55 lines
2.0 KiB
Go
55 lines
2.0 KiB
Go
package config_tests
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestJobAndPipelineDevelopment(t *testing.T) {
|
|
b := loadEnvironment(t, "./job_and_pipeline", "development")
|
|
assert.Len(t, b.Config.Resources.Jobs, 0)
|
|
assert.Len(t, b.Config.Resources.Pipelines, 1)
|
|
|
|
p := b.Config.Resources.Pipelines["nyc_taxi_pipeline"]
|
|
assert.Equal(t, "job_and_pipeline/bundle.yml", filepath.ToSlash(p.ConfigFilePath))
|
|
assert.True(t, p.Development)
|
|
require.Len(t, p.Libraries, 1)
|
|
assert.Equal(t, "./dlt/nyc_taxi_loader", p.Libraries[0].Notebook.Path)
|
|
assert.Equal(t, "nyc_taxi_development", p.Target)
|
|
}
|
|
|
|
func TestJobAndPipelineStaging(t *testing.T) {
|
|
b := loadEnvironment(t, "./job_and_pipeline", "staging")
|
|
assert.Len(t, b.Config.Resources.Jobs, 0)
|
|
assert.Len(t, b.Config.Resources.Pipelines, 1)
|
|
|
|
p := b.Config.Resources.Pipelines["nyc_taxi_pipeline"]
|
|
assert.Equal(t, "job_and_pipeline/bundle.yml", filepath.ToSlash(p.ConfigFilePath))
|
|
assert.False(t, p.Development)
|
|
require.Len(t, p.Libraries, 1)
|
|
assert.Equal(t, "./dlt/nyc_taxi_loader", p.Libraries[0].Notebook.Path)
|
|
assert.Equal(t, "nyc_taxi_staging", p.Target)
|
|
}
|
|
|
|
func TestJobAndPipelineProduction(t *testing.T) {
|
|
b := loadEnvironment(t, "./job_and_pipeline", "production")
|
|
assert.Len(t, b.Config.Resources.Jobs, 1)
|
|
assert.Len(t, b.Config.Resources.Pipelines, 1)
|
|
|
|
p := b.Config.Resources.Pipelines["nyc_taxi_pipeline"]
|
|
assert.Equal(t, "job_and_pipeline/bundle.yml", filepath.ToSlash(p.ConfigFilePath))
|
|
assert.False(t, p.Development)
|
|
require.Len(t, p.Libraries, 1)
|
|
assert.Equal(t, "./dlt/nyc_taxi_loader", p.Libraries[0].Notebook.Path)
|
|
assert.Equal(t, "nyc_taxi_production", p.Target)
|
|
|
|
j := b.Config.Resources.Jobs["pipeline_schedule"]
|
|
assert.Equal(t, "job_and_pipeline/bundle.yml", filepath.ToSlash(j.ConfigFilePath))
|
|
assert.Equal(t, "Daily refresh of production pipeline", j.Name)
|
|
require.Len(t, j.Tasks, 1)
|
|
assert.NotEmpty(t, j.Tasks[0].PipelineTask.PipelineId)
|
|
}
|