mirror of https://github.com/databricks/cli.git
Check for remote modification of dashboards
This commit is contained in:
parent
c1e4360214
commit
96c6f52e23
|
@ -0,0 +1,127 @@
|
||||||
|
package terraform
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/databricks/cli/bundle"
|
||||||
|
"github.com/databricks/cli/libs/diag"
|
||||||
|
"github.com/databricks/cli/libs/dyn"
|
||||||
|
tfjson "github.com/hashicorp/terraform-json"
|
||||||
|
)
|
||||||
|
|
||||||
|
type dashboardState struct {
|
||||||
|
Name string
|
||||||
|
ID string
|
||||||
|
ETag string
|
||||||
|
}
|
||||||
|
|
||||||
|
func collectDashboards(ctx context.Context, b *bundle.Bundle) ([]dashboardState, error) {
|
||||||
|
state, err := ParseResourcesState(ctx, b)
|
||||||
|
if err != nil && state == nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var dashboards []dashboardState
|
||||||
|
for _, resource := range state.Resources {
|
||||||
|
if resource.Mode != tfjson.ManagedResourceMode {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
for _, instance := range resource.Instances {
|
||||||
|
id := instance.Attributes.ID
|
||||||
|
if id == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
switch resource.Type {
|
||||||
|
case "databricks_dashboard":
|
||||||
|
etag := instance.Attributes.ETag
|
||||||
|
if etag == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
dashboards = append(dashboards, dashboardState{
|
||||||
|
Name: resource.Name,
|
||||||
|
ID: id,
|
||||||
|
ETag: etag,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return dashboards, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type checkModifiedDashboards struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *checkModifiedDashboards) Name() string {
|
||||||
|
return "CheckModifiedDashboards"
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *checkModifiedDashboards) Apply(ctx context.Context, b *bundle.Bundle) diag.Diagnostics {
|
||||||
|
// This mutator is relevant only if the bundle includes dashboards.
|
||||||
|
if len(b.Config.Resources.Dashboards) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the user has forced the deployment, skip this check.
|
||||||
|
if b.Config.Bundle.Force {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
dashboards, err := collectDashboards(ctx, b)
|
||||||
|
if err != nil {
|
||||||
|
return diag.FromErr(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var diags diag.Diagnostics
|
||||||
|
for _, dashboard := range dashboards {
|
||||||
|
// Skip dashboards that are not defined in the bundle.
|
||||||
|
// These will be destroyed upon deployment.
|
||||||
|
if _, ok := b.Config.Resources.Dashboards[dashboard.Name]; !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
path := dyn.MustPathFromString(fmt.Sprintf("resources.dashboards.%s", dashboard.Name))
|
||||||
|
loc := b.Config.GetLocation(path.String())
|
||||||
|
actual, err := b.WorkspaceClient().Lakeview.GetByDashboardId(ctx, dashboard.ID)
|
||||||
|
if err != nil {
|
||||||
|
diags = diags.Append(diag.Diagnostic{
|
||||||
|
Severity: diag.Error,
|
||||||
|
Summary: fmt.Sprintf("failed to get dashboard %q", dashboard.Name),
|
||||||
|
Detail: err.Error(),
|
||||||
|
Paths: []dyn.Path{path},
|
||||||
|
Locations: []dyn.Location{loc},
|
||||||
|
})
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the ETag is the same, the dashboard has not been modified.
|
||||||
|
if actual.Etag == dashboard.ETag {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
diags = diags.Append(diag.Diagnostic{
|
||||||
|
Severity: diag.Error,
|
||||||
|
Summary: fmt.Sprintf("dashboard %q has been modified remotely", dashboard.Name),
|
||||||
|
Detail: "" +
|
||||||
|
"This dashboard has been modified remotely since the last bundle deployment.\n" +
|
||||||
|
"These modifications are untracked and will be overwritten on deploy.\n" +
|
||||||
|
"\n" +
|
||||||
|
"Make sure that the local dashboard definition matches what you intend to deploy\n" +
|
||||||
|
"before proceeding with the deployment.\n" +
|
||||||
|
"\n" +
|
||||||
|
"Run `databricks bundle deploy --force` to bypass this error." +
|
||||||
|
"",
|
||||||
|
Paths: []dyn.Path{path},
|
||||||
|
Locations: []dyn.Location{loc},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return diags
|
||||||
|
}
|
||||||
|
|
||||||
|
func CheckModifiedDashboards() *checkModifiedDashboards {
|
||||||
|
return &checkModifiedDashboards{}
|
||||||
|
}
|
|
@ -0,0 +1,189 @@
|
||||||
|
package terraform
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"path/filepath"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/databricks/cli/bundle"
|
||||||
|
"github.com/databricks/cli/bundle/config"
|
||||||
|
"github.com/databricks/cli/bundle/config/resources"
|
||||||
|
"github.com/databricks/cli/internal/testutil"
|
||||||
|
"github.com/databricks/cli/libs/diag"
|
||||||
|
"github.com/databricks/databricks-sdk-go/experimental/mocks"
|
||||||
|
"github.com/databricks/databricks-sdk-go/service/dashboards"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/mock"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
)
|
||||||
|
|
||||||
|
func mockDashboardBundle(t *testing.T) *bundle.Bundle {
|
||||||
|
dir := t.TempDir()
|
||||||
|
b := &bundle.Bundle{
|
||||||
|
BundleRootPath: dir,
|
||||||
|
Config: config.Root{
|
||||||
|
Bundle: config.Bundle{
|
||||||
|
Target: "test",
|
||||||
|
},
|
||||||
|
Resources: config.Resources{
|
||||||
|
Dashboards: map[string]*resources.Dashboard{
|
||||||
|
"dash1": {
|
||||||
|
DisplayName: "My Special Dashboard",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCheckModifiedDashboards_NoDashboards(t *testing.T) {
|
||||||
|
dir := t.TempDir()
|
||||||
|
b := &bundle.Bundle{
|
||||||
|
BundleRootPath: dir,
|
||||||
|
Config: config.Root{
|
||||||
|
Bundle: config.Bundle{
|
||||||
|
Target: "test",
|
||||||
|
},
|
||||||
|
Resources: config.Resources{},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
diags := bundle.Apply(context.Background(), b, CheckModifiedDashboards())
|
||||||
|
assert.Empty(t, diags)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCheckModifiedDashboards_FirstDeployment(t *testing.T) {
|
||||||
|
b := mockDashboardBundle(t)
|
||||||
|
diags := bundle.Apply(context.Background(), b, CheckModifiedDashboards())
|
||||||
|
assert.Empty(t, diags)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCheckModifiedDashboards_ExistingStateNoChange(t *testing.T) {
|
||||||
|
ctx := context.Background()
|
||||||
|
|
||||||
|
b := mockDashboardBundle(t)
|
||||||
|
writeFakeDashboardState(t, ctx, b)
|
||||||
|
|
||||||
|
// Mock the call to the API.
|
||||||
|
m := mocks.NewMockWorkspaceClient(t)
|
||||||
|
dashboardsAPI := m.GetMockLakeviewAPI()
|
||||||
|
dashboardsAPI.EXPECT().
|
||||||
|
GetByDashboardId(mock.Anything, "id1").
|
||||||
|
Return(&dashboards.Dashboard{
|
||||||
|
DisplayName: "My Special Dashboard",
|
||||||
|
Etag: "1000",
|
||||||
|
}, nil).
|
||||||
|
Once()
|
||||||
|
b.SetWorkpaceClient(m.WorkspaceClient)
|
||||||
|
|
||||||
|
// No changes, so no diags.
|
||||||
|
diags := bundle.Apply(ctx, b, CheckModifiedDashboards())
|
||||||
|
assert.Empty(t, diags)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCheckModifiedDashboards_ExistingStateChange(t *testing.T) {
|
||||||
|
ctx := context.Background()
|
||||||
|
|
||||||
|
b := mockDashboardBundle(t)
|
||||||
|
writeFakeDashboardState(t, ctx, b)
|
||||||
|
|
||||||
|
// Mock the call to the API.
|
||||||
|
m := mocks.NewMockWorkspaceClient(t)
|
||||||
|
dashboardsAPI := m.GetMockLakeviewAPI()
|
||||||
|
dashboardsAPI.EXPECT().
|
||||||
|
GetByDashboardId(mock.Anything, "id1").
|
||||||
|
Return(&dashboards.Dashboard{
|
||||||
|
DisplayName: "My Special Dashboard",
|
||||||
|
Etag: "1234",
|
||||||
|
}, nil).
|
||||||
|
Once()
|
||||||
|
b.SetWorkpaceClient(m.WorkspaceClient)
|
||||||
|
|
||||||
|
// The dashboard has changed, so expect an error.
|
||||||
|
diags := bundle.Apply(ctx, b, CheckModifiedDashboards())
|
||||||
|
if assert.Len(t, diags, 1) {
|
||||||
|
assert.Equal(t, diag.Error, diags[0].Severity)
|
||||||
|
assert.Equal(t, `dashboard "dash1" has been modified remotely`, diags[0].Summary)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCheckModifiedDashboards_ExistingStateFailureToGet(t *testing.T) {
|
||||||
|
ctx := context.Background()
|
||||||
|
|
||||||
|
b := mockDashboardBundle(t)
|
||||||
|
writeFakeDashboardState(t, ctx, b)
|
||||||
|
|
||||||
|
// Mock the call to the API.
|
||||||
|
m := mocks.NewMockWorkspaceClient(t)
|
||||||
|
dashboardsAPI := m.GetMockLakeviewAPI()
|
||||||
|
dashboardsAPI.EXPECT().
|
||||||
|
GetByDashboardId(mock.Anything, "id1").
|
||||||
|
Return(nil, fmt.Errorf("failure")).
|
||||||
|
Once()
|
||||||
|
b.SetWorkpaceClient(m.WorkspaceClient)
|
||||||
|
|
||||||
|
// Unable to get the dashboard, so expect an error.
|
||||||
|
diags := bundle.Apply(ctx, b, CheckModifiedDashboards())
|
||||||
|
if assert.Len(t, diags, 1) {
|
||||||
|
assert.Equal(t, diag.Error, diags[0].Severity)
|
||||||
|
assert.Equal(t, `failed to get dashboard "dash1"`, diags[0].Summary)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func writeFakeDashboardState(t *testing.T, ctx context.Context, b *bundle.Bundle) {
|
||||||
|
tfDir, err := Dir(ctx, b)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
// Write fake state file.
|
||||||
|
testutil.WriteFile(t, `
|
||||||
|
{
|
||||||
|
"version": 4,
|
||||||
|
"terraform_version": "1.5.5",
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "databricks_dashboard",
|
||||||
|
"name": "dash1",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"etag": "1000",
|
||||||
|
"id": "id1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "databricks_job",
|
||||||
|
"name": "job",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"id": "1234"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"mode": "managed",
|
||||||
|
"type": "databricks_dashboard",
|
||||||
|
"name": "dash2",
|
||||||
|
"instances": [
|
||||||
|
{
|
||||||
|
"schema_version": 0,
|
||||||
|
"attributes": {
|
||||||
|
"etag": "1001",
|
||||||
|
"id": "id2"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
`, filepath.Join(tfDir, TerraformStateFileName))
|
||||||
|
}
|
|
@ -13,7 +13,7 @@ import (
|
||||||
|
|
||||||
// Partial representation of the Terraform state file format.
|
// Partial representation of the Terraform state file format.
|
||||||
// We are only interested global version and serial numbers,
|
// We are only interested global version and serial numbers,
|
||||||
// plus resource types, names, modes, and ids.
|
// plus resource types, names, modes, IDs, and ETags (for dashboards).
|
||||||
type resourcesState struct {
|
type resourcesState struct {
|
||||||
Version int `json:"version"`
|
Version int `json:"version"`
|
||||||
Resources []stateResource `json:"resources"`
|
Resources []stateResource `json:"resources"`
|
||||||
|
@ -34,6 +34,7 @@ type stateResourceInstance struct {
|
||||||
|
|
||||||
type stateInstanceAttributes struct {
|
type stateInstanceAttributes struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
|
ETag string `json:"etag,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func ParseResourcesState(ctx context.Context, b *bundle.Bundle) (*resourcesState, error) {
|
func ParseResourcesState(ctx context.Context, b *bundle.Bundle) (*resourcesState, error) {
|
||||||
|
|
|
@ -152,6 +152,7 @@ func Deploy(outputHandler sync.OutputHandler) bundle.Mutator {
|
||||||
bundle.Defer(
|
bundle.Defer(
|
||||||
bundle.Seq(
|
bundle.Seq(
|
||||||
terraform.StatePull(),
|
terraform.StatePull(),
|
||||||
|
terraform.CheckModifiedDashboards(),
|
||||||
deploy.StatePull(),
|
deploy.StatePull(),
|
||||||
mutator.ValidateGitDetails(),
|
mutator.ValidateGitDetails(),
|
||||||
artifacts.CleanUp(),
|
artifacts.CleanUp(),
|
||||||
|
|
Loading…
Reference in New Issue