2020-12-09 15:31:34 +00:00
|
|
|
package analyser
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
2021-03-19 18:20:57 +00:00
|
|
|
"testing"
|
2020-12-09 15:31:34 +00:00
|
|
|
|
2020-12-22 15:47:22 +00:00
|
|
|
"github.com/stretchr/testify/mock"
|
|
|
|
|
|
|
|
"github.com/cloudskiff/driftctl/mocks"
|
|
|
|
|
2020-12-09 15:31:34 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
2021-03-19 18:20:57 +00:00
|
|
|
testresource "github.com/cloudskiff/driftctl/test/resource"
|
|
|
|
|
2020-12-09 15:31:34 +00:00
|
|
|
"github.com/cloudskiff/driftctl/test/goldenfile"
|
|
|
|
|
2020-12-16 12:02:02 +00:00
|
|
|
"github.com/cloudskiff/driftctl/pkg/alerter"
|
2020-12-09 15:31:34 +00:00
|
|
|
"github.com/cloudskiff/driftctl/pkg/resource"
|
2021-02-15 14:49:20 +00:00
|
|
|
"github.com/cloudskiff/driftctl/pkg/resource/aws"
|
2020-12-09 15:31:34 +00:00
|
|
|
|
|
|
|
"github.com/r3labs/diff/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAnalyze(t *testing.T) {
|
|
|
|
cases := []struct {
|
2020-12-22 15:47:22 +00:00
|
|
|
name string
|
|
|
|
iac []resource.Resource
|
|
|
|
ignoredRes []resource.Resource
|
|
|
|
cloud []resource.Resource
|
|
|
|
ignoredDrift []struct {
|
|
|
|
res resource.Resource
|
|
|
|
path []string
|
|
|
|
}
|
2020-12-16 12:02:02 +00:00
|
|
|
alerts alerter.Alerts
|
2020-12-09 15:31:34 +00:00
|
|
|
expected Analysis
|
|
|
|
hasDrifted bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "TestNilValues", // Cover division by zero case
|
|
|
|
iac: nil,
|
|
|
|
cloud: nil,
|
|
|
|
expected: Analysis{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "TestNothingToCompare", // Cover division by zero case
|
|
|
|
iac: []resource.Resource{},
|
|
|
|
cloud: []resource.Resource{},
|
|
|
|
expected: Analysis{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "TestIgnoreFromCoverageIacNotInCloud",
|
|
|
|
iac: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{},
|
|
|
|
expected: Analysis{
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 1,
|
|
|
|
TotalDeleted: 1,
|
|
|
|
},
|
|
|
|
deleted: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hasDrifted: true,
|
|
|
|
},
|
2020-12-22 15:47:22 +00:00
|
|
|
{
|
|
|
|
name: "TestResourceIgnoredDeleted",
|
|
|
|
iac: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ignoredRes: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{},
|
|
|
|
expected: Analysis{
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 0,
|
|
|
|
TotalDeleted: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hasDrifted: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Test100PercentCoverage with ignore",
|
|
|
|
iac: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ignoredRes: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: Analysis{
|
|
|
|
managed: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
summary: Summary{
|
|
|
|
TotalManaged: 1,
|
|
|
|
TotalResources: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-12-09 15:31:34 +00:00
|
|
|
{
|
|
|
|
name: "Test100PercentCoverage",
|
|
|
|
iac: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: Analysis{
|
|
|
|
managed: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
summary: Summary{
|
|
|
|
TotalManaged: 1,
|
|
|
|
TotalResources: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "TestUnmanagedResource",
|
|
|
|
iac: []resource.Resource{},
|
|
|
|
cloud: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: Analysis{
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 1,
|
|
|
|
TotalUnmanaged: 1,
|
|
|
|
},
|
|
|
|
unmanaged: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hasDrifted: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "TestDiff",
|
|
|
|
iac: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
2020-12-16 12:02:02 +00:00
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"baz", "bar"},
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
FooBar: "barfoo",
|
|
|
|
BarFoo: "foobar",
|
2020-12-16 12:02:02 +00:00
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"bar", "baz"},
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: Analysis{
|
|
|
|
managed: []resource.Resource{
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
2020-12-16 12:02:02 +00:00
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"baz", "bar"},
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 1,
|
|
|
|
TotalDrifted: 1,
|
|
|
|
TotalManaged: 1,
|
|
|
|
},
|
|
|
|
differences: []Difference{
|
|
|
|
{
|
2020-12-22 11:17:04 +00:00
|
|
|
Res: &testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "foobar",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
2020-12-16 12:02:02 +00:00
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"baz", "bar"},
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Changelog: Changelog{
|
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "foobar",
|
|
|
|
To: "barfoo",
|
|
|
|
Path: []string{
|
|
|
|
"FooBar",
|
|
|
|
},
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "barfoo",
|
|
|
|
To: "foobar",
|
|
|
|
Path: []string{
|
|
|
|
"BarFoo",
|
|
|
|
},
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Computed: true,
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "baz",
|
|
|
|
To: "bar",
|
|
|
|
Path: []string{
|
|
|
|
"Struct",
|
|
|
|
"Baz",
|
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Computed: true,
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "bar",
|
|
|
|
To: "baz",
|
|
|
|
Path: []string{
|
|
|
|
"Struct",
|
|
|
|
"Bar",
|
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
alerts: alerter.Alerts{
|
2021-01-21 17:05:29 +00:00
|
|
|
"": {
|
2021-02-12 21:30:36 +00:00
|
|
|
NewComputedDiffAlert(),
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hasDrifted: true,
|
|
|
|
},
|
2020-12-22 15:47:22 +00:00
|
|
|
{
|
|
|
|
name: "TestDiff with partial ignore",
|
|
|
|
iac: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
2020-12-16 12:02:02 +00:00
|
|
|
Type: "fakeres",
|
2020-12-22 15:47:22 +00:00
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
2020-12-16 12:02:02 +00:00
|
|
|
Type: "fakeres",
|
2020-12-22 15:47:22 +00:00
|
|
|
FooBar: "barfoo",
|
|
|
|
BarFoo: "foobar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ignoredDrift: []struct {
|
|
|
|
res resource.Resource
|
|
|
|
path []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
res: &testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
2020-12-16 12:02:02 +00:00
|
|
|
Type: "fakeres",
|
2020-12-22 15:47:22 +00:00
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
},
|
|
|
|
path: []string{"FooBar"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: Analysis{
|
|
|
|
managed: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
2020-12-16 12:02:02 +00:00
|
|
|
Type: "fakeres",
|
2020-12-22 15:47:22 +00:00
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 1,
|
|
|
|
TotalDrifted: 1,
|
|
|
|
TotalManaged: 1,
|
|
|
|
},
|
|
|
|
differences: []Difference{
|
|
|
|
{
|
|
|
|
Res: &testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
2020-12-16 12:02:02 +00:00
|
|
|
Type: "fakeres",
|
2020-12-22 15:47:22 +00:00
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Changelog: Changelog{
|
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "barfoo",
|
|
|
|
To: "foobar",
|
|
|
|
Path: []string{
|
|
|
|
"BarFoo",
|
|
|
|
},
|
2020-12-22 15:47:22 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Computed: true,
|
2020-12-22 15:47:22 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
alerts: alerter.Alerts{
|
2021-01-21 17:05:29 +00:00
|
|
|
"": {
|
2021-02-12 21:30:36 +00:00
|
|
|
NewComputedDiffAlert(),
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
},
|
2020-12-22 15:47:22 +00:00
|
|
|
},
|
|
|
|
hasDrifted: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "TestDiff with full ignore",
|
|
|
|
iac: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
},
|
|
|
|
},
|
2021-01-04 15:19:34 +00:00
|
|
|
ignoredRes: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "should_be_ignored",
|
|
|
|
},
|
|
|
|
},
|
2020-12-22 15:47:22 +00:00
|
|
|
cloud: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
FooBar: "barfoo",
|
|
|
|
BarFoo: "foobar",
|
|
|
|
},
|
2021-01-04 15:19:34 +00:00
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "should_be_ignored",
|
|
|
|
},
|
2020-12-22 15:47:22 +00:00
|
|
|
},
|
|
|
|
ignoredDrift: []struct {
|
|
|
|
res resource.Resource
|
|
|
|
path []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
res: &testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
},
|
|
|
|
path: []string{"FooBar"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
res: &testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
},
|
|
|
|
path: []string{"BarFoo"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: Analysis{
|
|
|
|
managed: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 1,
|
|
|
|
TotalDrifted: 0,
|
|
|
|
TotalManaged: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hasDrifted: false,
|
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
{
|
|
|
|
name: "TestDiffWithAlertFiltering",
|
|
|
|
iac: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
Type: "fakeres",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "barfoo",
|
|
|
|
Type: "fakeres",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobaz",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "resource",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
StructSlice: []struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
String string `cty:"string" computed:"true"`
|
|
|
|
Array []string `cty:"array" computed:"true"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{
|
|
|
|
{"one", []string{"foo"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
Type: "fakeres",
|
|
|
|
FooBar: "barfoo",
|
|
|
|
BarFoo: "foobar",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"bar", "baz"},
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "barfoo",
|
|
|
|
Type: "fakeres",
|
|
|
|
FooBar: "barfoo",
|
|
|
|
BarFoo: "foobar",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"bar", "baz"},
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobaz",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "barfoo",
|
|
|
|
BarFoo: "foobar",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"bar", "baz"},
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "resource",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "barfoo",
|
|
|
|
BarFoo: "foobar",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"bar", "baz"},
|
|
|
|
StructSlice: []struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
String string `cty:"string" computed:"true"`
|
|
|
|
Array []string `cty:"array" computed:"true"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{
|
|
|
|
{"two", []string{"oof"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
alerts: alerter.Alerts{
|
|
|
|
"fakeres": {
|
2021-02-12 21:30:36 +00:00
|
|
|
&alerter.FakeAlert{Msg: "Should be ignored", IgnoreResource: true},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
"other.foobaz": {
|
2021-02-12 21:30:36 +00:00
|
|
|
&alerter.FakeAlert{Msg: "Should be ignored", IgnoreResource: true},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
"other.resource": {
|
2021-02-12 21:30:36 +00:00
|
|
|
&alerter.FakeAlert{Msg: "Should not be ignored"},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: Analysis{
|
|
|
|
managed: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "resource",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
StructSlice: []struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
String string `cty:"string" computed:"true"`
|
|
|
|
Array []string `cty:"array" computed:"true"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{
|
|
|
|
{"one", []string{"foo"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 1,
|
|
|
|
TotalDrifted: 1,
|
|
|
|
TotalManaged: 1,
|
|
|
|
},
|
|
|
|
differences: []Difference{
|
|
|
|
{
|
|
|
|
Res: &testresource.FakeResource{
|
|
|
|
Id: "resource",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
StructSlice: []struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
String string `cty:"string" computed:"true"`
|
|
|
|
Array []string `cty:"array" computed:"true"`
|
2020-12-16 12:02:02 +00:00
|
|
|
}{
|
|
|
|
{"one", []string{"foo"}},
|
|
|
|
},
|
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Changelog: Changelog{
|
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "foobar",
|
|
|
|
To: "barfoo",
|
|
|
|
Path: []string{
|
|
|
|
"FooBar",
|
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "barfoo",
|
|
|
|
To: "foobar",
|
|
|
|
Path: []string{
|
|
|
|
"BarFoo",
|
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Computed: true,
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "baz",
|
|
|
|
To: "bar",
|
|
|
|
Path: []string{
|
|
|
|
"Struct",
|
|
|
|
"Baz",
|
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Computed: true,
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "bar",
|
|
|
|
To: "baz",
|
|
|
|
Path: []string{
|
|
|
|
"Struct",
|
|
|
|
"Bar",
|
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
2021-03-22 11:08:53 +00:00
|
|
|
From: "one",
|
|
|
|
To: "two",
|
2021-01-08 17:14:26 +00:00
|
|
|
Path: []string{
|
|
|
|
"StructSlice",
|
|
|
|
"0",
|
2021-03-22 11:08:53 +00:00
|
|
|
"String",
|
2021-01-08 17:14:26 +00:00
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Computed: true,
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
2021-03-22 11:08:53 +00:00
|
|
|
From: "foo",
|
|
|
|
To: "oof",
|
2021-01-08 17:14:26 +00:00
|
|
|
Path: []string{
|
|
|
|
"StructSlice",
|
|
|
|
"0",
|
2021-03-22 11:08:53 +00:00
|
|
|
"Array",
|
|
|
|
"0",
|
2021-01-08 17:14:26 +00:00
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Computed: true,
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
alerts: alerter.Alerts{
|
|
|
|
"fakeres": {
|
2021-02-12 21:30:36 +00:00
|
|
|
&alerter.FakeAlert{Msg: "Should be ignored", IgnoreResource: true},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
"other.foobaz": {
|
2021-02-12 21:30:36 +00:00
|
|
|
&alerter.FakeAlert{Msg: "Should be ignored", IgnoreResource: true},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
"other.resource": {
|
2021-02-12 21:30:36 +00:00
|
|
|
&alerter.FakeAlert{Msg: "Should not be ignored"},
|
2021-01-21 17:05:29 +00:00
|
|
|
},
|
2021-01-21 17:05:29 +00:00
|
|
|
"": {
|
2021-02-12 21:30:36 +00:00
|
|
|
NewComputedDiffAlert(),
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hasDrifted: true,
|
|
|
|
},
|
2021-01-29 11:43:46 +00:00
|
|
|
{
|
|
|
|
name: "TestDiff with computed field send 1 alert",
|
|
|
|
iac: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
Type: "fakeres",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "resource",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
StructSlice: []struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
String string `cty:"string" computed:"true"`
|
|
|
|
Array []string `cty:"array" computed:"true"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{
|
|
|
|
{"one", []string{"foo"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
Type: "fakeres",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{"bazdiff", "bardiff"},
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "resource",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{"bazdiff", "bar"},
|
|
|
|
StructSlice: []struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
String string `cty:"string" computed:"true"`
|
|
|
|
Array []string `cty:"array" computed:"true"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{
|
|
|
|
{"onediff", []string{"foo", "diff"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
alerts: alerter.Alerts{},
|
|
|
|
expected: Analysis{
|
|
|
|
managed: []resource.Resource{
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
Type: "fakeres",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "resource",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
StructSlice: []struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
String string `cty:"string" computed:"true"`
|
|
|
|
Array []string `cty:"array" computed:"true"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{
|
|
|
|
{"one", []string{"foo"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 2,
|
|
|
|
TotalDrifted: 2,
|
|
|
|
TotalManaged: 2,
|
|
|
|
},
|
|
|
|
differences: []Difference{
|
|
|
|
{
|
|
|
|
Res: &testresource.FakeResource{
|
|
|
|
Id: "foobar",
|
|
|
|
Type: "fakeres",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
},
|
|
|
|
Changelog: Changelog{
|
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "baz",
|
|
|
|
To: "bazdiff",
|
|
|
|
Path: []string{
|
|
|
|
"Struct",
|
|
|
|
"Baz",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "bar",
|
|
|
|
To: "bardiff",
|
|
|
|
Path: []string{
|
|
|
|
"Struct",
|
|
|
|
"Bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Computed: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Res: &testresource.FakeResource{
|
|
|
|
Id: "resource",
|
|
|
|
Type: "other",
|
|
|
|
FooBar: "foobar",
|
|
|
|
BarFoo: "barfoo",
|
|
|
|
Struct: struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
Baz string `cty:"baz" computed:"true"`
|
|
|
|
Bar string `cty:"bar"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{"baz", "bar"},
|
|
|
|
StructSlice: []struct {
|
2021-03-25 11:13:52 +00:00
|
|
|
String string `cty:"string" computed:"true"`
|
|
|
|
Array []string `cty:"array" computed:"true"`
|
2021-01-29 11:43:46 +00:00
|
|
|
}{
|
|
|
|
{"one", []string{"foo"}},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Changelog: Changelog{
|
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "baz",
|
|
|
|
To: "bazdiff",
|
|
|
|
Path: []string{
|
|
|
|
"Struct",
|
|
|
|
"Baz",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
From: "one",
|
|
|
|
To: "onediff",
|
|
|
|
Path: []string{
|
|
|
|
"StructSlice",
|
|
|
|
"0",
|
|
|
|
"String",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Computed: true,
|
|
|
|
},
|
2021-03-26 18:10:38 +00:00
|
|
|
{
|
|
|
|
Change: diff.Change{
|
|
|
|
Type: "create",
|
|
|
|
From: nil,
|
|
|
|
To: "diff",
|
|
|
|
Path: []string{
|
|
|
|
"StructSlice",
|
|
|
|
"0",
|
|
|
|
"Array",
|
|
|
|
"1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Computed: true,
|
|
|
|
},
|
2021-01-29 11:43:46 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
alerts: alerter.Alerts{
|
|
|
|
"": {
|
2021-02-12 21:30:36 +00:00
|
|
|
NewComputedDiffAlert(),
|
2021-01-29 11:43:46 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hasDrifted: true,
|
|
|
|
},
|
2021-02-15 14:49:20 +00:00
|
|
|
{
|
|
|
|
name: "Test alert on unmanaged security group rules",
|
|
|
|
iac: []resource.Resource{
|
|
|
|
&aws.AwsSecurityGroup{
|
|
|
|
Id: "managed security group",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{
|
|
|
|
&aws.AwsSecurityGroup{
|
|
|
|
Id: "managed security group",
|
|
|
|
},
|
|
|
|
&aws.AwsSecurityGroupRule{
|
|
|
|
Id: "unmanaged rule",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: Analysis{
|
|
|
|
managed: []resource.Resource{
|
|
|
|
&aws.AwsSecurityGroup{
|
|
|
|
Id: "managed security group",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
unmanaged: []resource.Resource{
|
|
|
|
&aws.AwsSecurityGroupRule{
|
|
|
|
Id: "unmanaged rule",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 2,
|
|
|
|
TotalManaged: 1,
|
|
|
|
TotalUnmanaged: 1,
|
|
|
|
},
|
|
|
|
alerts: alerter.Alerts{
|
|
|
|
"": {
|
2021-02-12 21:30:36 +00:00
|
|
|
newUnmanagedSecurityGroupRulesAlert(),
|
2021-02-15 14:49:20 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
hasDrifted: true,
|
|
|
|
},
|
2021-03-19 18:20:57 +00:00
|
|
|
{
|
|
|
|
name: "Test sorted unmanaged & deleted resources",
|
|
|
|
iac: []resource.Resource{
|
2021-03-22 10:35:23 +00:00
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "deleted resource 22",
|
|
|
|
Type: "aws_s3_bucket",
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
2021-03-22 10:35:23 +00:00
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "deleted resource 20",
|
|
|
|
Type: "aws_ebs_volume",
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "deleted resource 20",
|
|
|
|
Type: "aws_s3_bucket",
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
cloud: []resource.Resource{
|
2021-03-22 10:35:23 +00:00
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "unmanaged resource 12",
|
|
|
|
Type: "aws_s3_bucket",
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
2021-03-22 10:35:23 +00:00
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "unmanaged resource 10",
|
|
|
|
Type: "aws_s3_bucket",
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "unmanaged resource 11",
|
|
|
|
Type: "aws_ebs_volume",
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
expected: Analysis{
|
|
|
|
managed: []resource.Resource{},
|
|
|
|
unmanaged: []resource.Resource{
|
2021-03-22 10:35:23 +00:00
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "unmanaged resource 11",
|
|
|
|
Type: "aws_ebs_volume",
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
2021-03-22 10:35:23 +00:00
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "unmanaged resource 10",
|
|
|
|
Type: "aws_s3_bucket",
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "unmanaged resource 12",
|
|
|
|
Type: "aws_s3_bucket",
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
deleted: []resource.Resource{
|
2021-03-22 10:35:23 +00:00
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "deleted resource 20",
|
|
|
|
Type: "aws_ebs_volume",
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
2021-03-22 10:35:23 +00:00
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "deleted resource 20",
|
|
|
|
Type: "aws_s3_bucket",
|
|
|
|
},
|
|
|
|
&testresource.FakeResource{
|
|
|
|
Id: "deleted resource 22",
|
|
|
|
Type: "aws_s3_bucket",
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
summary: Summary{
|
2021-03-22 10:35:23 +00:00
|
|
|
TotalResources: 6,
|
2021-03-19 18:20:57 +00:00
|
|
|
TotalManaged: 0,
|
2021-03-22 10:35:23 +00:00
|
|
|
TotalUnmanaged: 3,
|
|
|
|
TotalDeleted: 3,
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
2021-03-22 10:35:23 +00:00
|
|
|
alerts: alerter.Alerts{},
|
2021-03-19 18:20:57 +00:00
|
|
|
},
|
|
|
|
hasDrifted: true,
|
|
|
|
},
|
2020-12-09 15:31:34 +00:00
|
|
|
}
|
|
|
|
|
2021-03-22 10:17:50 +00:00
|
|
|
differ, err := diff.NewDiffer(diff.SliceOrdering(true))
|
|
|
|
if err != nil {
|
2021-03-22 11:02:06 +00:00
|
|
|
t.Fatalf("Error creating new differ: %e", err)
|
2021-03-22 10:17:50 +00:00
|
|
|
}
|
|
|
|
|
2021-03-26 17:30:17 +00:00
|
|
|
differ, err := diff.NewDiffer(diff.SliceOrdering(true))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Error creating new differ: %e", err)
|
|
|
|
}
|
|
|
|
|
2020-12-09 15:31:34 +00:00
|
|
|
for _, c := range cases {
|
|
|
|
t.Run(c.name, func(t *testing.T) {
|
2020-12-22 15:47:22 +00:00
|
|
|
filter := &mocks.Filter{}
|
|
|
|
for _, ignored := range c.ignoredRes {
|
|
|
|
filter.On("IsResourceIgnored", ignored).Return(true)
|
|
|
|
}
|
|
|
|
filter.On("IsResourceIgnored", mock.Anything).Return(false)
|
|
|
|
|
|
|
|
for _, s := range c.ignoredDrift {
|
|
|
|
filter.On("IsFieldIgnored", s.res, s.path).Return(true)
|
|
|
|
}
|
|
|
|
filter.On("IsFieldIgnored", mock.Anything, mock.Anything).Return(false)
|
2020-12-09 15:31:34 +00:00
|
|
|
|
2021-01-08 17:14:26 +00:00
|
|
|
al := alerter.NewAlerter()
|
2020-12-16 12:02:02 +00:00
|
|
|
if c.alerts != nil {
|
2021-01-08 17:14:26 +00:00
|
|
|
al.SetAlerts(c.alerts)
|
2020-12-16 12:02:02 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 17:14:26 +00:00
|
|
|
analyzer := NewAnalyzer(al)
|
2020-12-22 15:47:22 +00:00
|
|
|
result, err := analyzer.Analyze(c.cloud, c.iac, filter)
|
2020-12-09 15:31:34 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if result.IsSync() == c.hasDrifted {
|
|
|
|
t.Errorf("Drifted state does not match, got %t expected %t", result.IsSync(), !c.hasDrifted)
|
|
|
|
}
|
|
|
|
|
2021-03-22 10:17:50 +00:00
|
|
|
managedChanges, err := differ.Diff(result.Managed(), c.expected.Managed())
|
2020-12-09 15:31:34 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to compare %+v", err)
|
|
|
|
}
|
|
|
|
if len(managedChanges) > 0 {
|
|
|
|
for _, change := range managedChanges {
|
|
|
|
t.Errorf("%+v", change)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 10:17:50 +00:00
|
|
|
unmanagedChanges, err := differ.Diff(result.Unmanaged(), c.expected.Unmanaged())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to compare %+v", err)
|
|
|
|
}
|
|
|
|
if len(unmanagedChanges) > 0 {
|
|
|
|
for _, change := range unmanagedChanges {
|
|
|
|
t.Errorf("%+v", change)
|
2020-12-09 15:31:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 10:17:50 +00:00
|
|
|
deletedChanges, err := differ.Diff(result.Deleted(), c.expected.Deleted())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to compare %+v", err)
|
|
|
|
}
|
|
|
|
if len(deletedChanges) > 0 {
|
|
|
|
for _, change := range deletedChanges {
|
|
|
|
t.Errorf("%+v", change)
|
2020-12-09 15:31:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 11:08:53 +00:00
|
|
|
diffChanges, err := differ.Diff(result.Differences(), c.expected.Differences())
|
2020-12-09 15:31:34 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to compare %+v", err)
|
|
|
|
}
|
|
|
|
if len(diffChanges) > 0 {
|
|
|
|
for _, change := range diffChanges {
|
|
|
|
t.Errorf("%+v", change)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 10:17:50 +00:00
|
|
|
summaryChanges, err := differ.Diff(c.expected.Summary(), result.Summary())
|
2020-12-09 15:31:34 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to compare %+v", err)
|
|
|
|
}
|
|
|
|
if len(summaryChanges) > 0 {
|
|
|
|
for _, change := range summaryChanges {
|
|
|
|
t.Errorf("%+v", change)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 10:17:50 +00:00
|
|
|
alertsChanges, err := differ.Diff(result.Alerts(), c.expected.Alerts())
|
2020-12-16 12:02:02 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Unable to compare %+v", err)
|
|
|
|
}
|
|
|
|
if len(alertsChanges) > 0 {
|
|
|
|
for _, change := range alertsChanges {
|
|
|
|
t.Errorf("%+v", change)
|
|
|
|
}
|
|
|
|
}
|
2020-12-09 15:31:34 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAnalysis_MarshalJSON(t *testing.T) {
|
|
|
|
goldenFile := "./testdata/output.json"
|
|
|
|
analysis := Analysis{}
|
|
|
|
analysis.AddManaged(
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "AKIA5QYBVVD25KFXJHYJ",
|
|
|
|
Type: "aws_iam_access_key",
|
2020-12-22 11:17:04 +00:00
|
|
|
}, &testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "driftctl2",
|
|
|
|
Type: "aws_managed_resource",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
analysis.AddUnmanaged(
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "driftctl",
|
|
|
|
Type: "aws_s3_bucket_policy",
|
2020-12-22 11:17:04 +00:00
|
|
|
}, &testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "driftctl",
|
|
|
|
Type: "aws_s3_bucket_notification",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
analysis.AddDeleted(
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "test-driftctl2",
|
|
|
|
Type: "aws_iam_user",
|
|
|
|
FooBar: "test",
|
|
|
|
},
|
2020-12-22 11:17:04 +00:00
|
|
|
&testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "AKIA5QYBVVD2Y6PBAAPY",
|
|
|
|
Type: "aws_iam_access_key",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
analysis.AddDifference(Difference{
|
2020-12-22 11:17:04 +00:00
|
|
|
Res: &testresource.FakeResource{
|
2020-12-09 15:31:34 +00:00
|
|
|
Id: "AKIA5QYBVVD25KFXJHYJ",
|
|
|
|
Type: "aws_iam_access_key",
|
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Changelog: []Change{
|
2020-12-09 15:31:34 +00:00
|
|
|
{
|
2021-01-08 17:14:26 +00:00
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
Path: []string{"Status"},
|
|
|
|
From: "Active",
|
|
|
|
To: "Inactive",
|
|
|
|
},
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2021-01-11 16:33:23 +00:00
|
|
|
analysis.SetAlerts(alerter.Alerts{
|
2020-12-16 12:02:02 +00:00
|
|
|
"aws_iam_access_key": {
|
2021-02-12 21:30:36 +00:00
|
|
|
&alerter.FakeAlert{Msg: "This is an alert"},
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
})
|
2020-12-09 15:31:34 +00:00
|
|
|
|
|
|
|
got, err := json.MarshalIndent(analysis, "", "\t")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if *goldenfile.Update == "TestAnalysis_MarshalJSON" {
|
|
|
|
if err := ioutil.WriteFile(goldenFile, got, 0600); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
expected, err := ioutil.ReadFile(goldenFile)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, string(expected), string(got))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAnalysis_UnmarshalJSON(t *testing.T) {
|
|
|
|
expected := Analysis{
|
|
|
|
summary: Summary{
|
|
|
|
TotalResources: 6,
|
|
|
|
TotalDrifted: 1,
|
|
|
|
TotalUnmanaged: 2,
|
|
|
|
TotalDeleted: 2,
|
|
|
|
TotalManaged: 2,
|
|
|
|
},
|
|
|
|
managed: []resource.Resource{
|
|
|
|
resource.SerializedResource{
|
|
|
|
Id: "AKIA5QYBVVD25KFXJHYJ",
|
|
|
|
Type: "aws_iam_access_key",
|
|
|
|
},
|
|
|
|
resource.SerializedResource{
|
|
|
|
Id: "test-managed",
|
|
|
|
Type: "aws_iam_user",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
unmanaged: []resource.Resource{
|
|
|
|
resource.SerializedResource{
|
|
|
|
Id: "driftctl",
|
|
|
|
Type: "aws_s3_bucket_policy",
|
|
|
|
},
|
|
|
|
resource.SerializedResource{
|
|
|
|
Id: "driftctl",
|
|
|
|
Type: "aws_s3_bucket_notification",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
deleted: []resource.Resource{
|
|
|
|
resource.SerializedResource{
|
|
|
|
Id: "test-driftctl2",
|
|
|
|
Type: "aws_iam_user",
|
|
|
|
},
|
|
|
|
resource.SerializedResource{
|
|
|
|
Id: "AKIA5QYBVVD2Y6PBAAPY",
|
|
|
|
Type: "aws_iam_access_key",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
differences: []Difference{
|
|
|
|
{
|
|
|
|
Res: resource.SerializedResource{
|
|
|
|
Id: "AKIA5QYBVVD25KFXJHYJ",
|
|
|
|
Type: "aws_iam_access_key",
|
|
|
|
},
|
2021-01-08 17:14:26 +00:00
|
|
|
Changelog: []Change{
|
2020-12-09 15:31:34 +00:00
|
|
|
{
|
2021-01-08 17:14:26 +00:00
|
|
|
Change: diff.Change{
|
|
|
|
Type: "update",
|
|
|
|
Path: []string{"Status"},
|
|
|
|
From: "Active",
|
|
|
|
To: "Inactive",
|
|
|
|
},
|
2020-12-09 15:31:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-12-16 12:02:02 +00:00
|
|
|
alerts: alerter.Alerts{
|
|
|
|
"aws_iam_access_key": {
|
2021-02-12 21:30:36 +00:00
|
|
|
&alerter.SerializedAlert{
|
|
|
|
Msg: "This is an alert",
|
2020-12-16 12:02:02 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-12-09 15:31:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
got := Analysis{}
|
|
|
|
input, err := ioutil.ReadFile("./testdata/input.json")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
err = json.Unmarshal(input, &got)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
assert.Equal(t, expected, got)
|
|
|
|
assert.Equal(t, 33, got.Coverage())
|
|
|
|
assert.Equal(t, 2, got.Summary().TotalUnmanaged)
|
|
|
|
assert.Equal(t, 2, got.Summary().TotalManaged)
|
|
|
|
assert.Equal(t, 2, got.Summary().TotalDeleted)
|
|
|
|
assert.Equal(t, 6, got.Summary().TotalResources)
|
|
|
|
assert.Equal(t, 1, got.Summary().TotalDrifted)
|
2021-02-12 21:30:36 +00:00
|
|
|
assert.Len(t, got.alerts, 1)
|
|
|
|
assert.Equal(t, got.alerts["aws_iam_access_key"][0].Message(), "This is an alert")
|
2020-12-09 15:31:34 +00:00
|
|
|
}
|