-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
07c8464
commit 765b493
Showing
1 changed file
with
147 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
package tfsdk | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/google/go-cmp/cmp" | ||
"github.com/hashicorp/terraform-plugin-framework/attr" | ||
"github.com/hashicorp/terraform-plugin-framework/diag" | ||
testtypes "github.com/hashicorp/terraform-plugin-framework/internal/testing/types" | ||
"github.com/hashicorp/terraform-plugin-framework/types" | ||
"github.com/hashicorp/terraform-plugin-go/tftypes" | ||
) | ||
|
||
type typeWithPlanModifier struct { | ||
modifyPlan func(ctx context.Context, state attr.Value, plan attr.Value, path *tftypes.AttributePath) (attr.Value, diag.Diagnostics) | ||
} | ||
|
||
func (t typeWithPlanModifier) TerraformType(_ context.Context) tftypes.Type { | ||
return tftypes.String | ||
} | ||
|
||
func (t typeWithPlanModifier) ValueFromTerraform(_ context.Context, val tftypes.Value) (attr.Value, error) { | ||
ret := testtypes.String{CreatedBy: t} | ||
if val.IsNull() { | ||
ret.String = types.String{Null: true} | ||
return ret, nil | ||
} | ||
if !val.IsKnown() { | ||
ret.String = types.String{Unknown: true} | ||
return ret, nil | ||
} | ||
var v string | ||
err := val.As(&v) | ||
if err != nil { | ||
return nil, err | ||
} | ||
ret.String = types.String{Value: v} | ||
return ret, nil | ||
} | ||
|
||
func (t typeWithPlanModifier) Equal(o attr.Type) bool { | ||
_, ok := o.(typeWithPlanModifier) | ||
if !ok { | ||
return false | ||
} | ||
return true | ||
} | ||
|
||
func (t typeWithPlanModifier) String() string { | ||
return "tfsdk.typeWithPlanModifier" | ||
} | ||
|
||
func (t typeWithPlanModifier) ApplyTerraform5AttributePathStep(step tftypes.AttributePathStep) (interface{}, error) { | ||
return nil, fmt.Errorf("cannot apply AttributePathStep %T to %s", step, t.String()) | ||
} | ||
|
||
func (t typeWithPlanModifier) ModifyPlan(ctx context.Context, state attr.Value, plan attr.Value, path *tftypes.AttributePath) (attr.Value, diag.Diagnostics) { | ||
return t.modifyPlan(ctx, state, plan, path) | ||
} | ||
|
||
func TestRunTypePlanModifiers(t *testing.T) { | ||
t.Parallel() | ||
|
||
type testCase struct { | ||
state tftypes.Value | ||
plan tftypes.Value | ||
schema Schema | ||
resp *planResourceChangeResponse | ||
expectedPlan tftypes.Value | ||
expectedDiags diag.Diagnostics | ||
expectedRR []*tftypes.AttributePath | ||
expectedOK bool | ||
} | ||
|
||
tests := map[string]testCase{ | ||
"case-insensitive": { | ||
state: tftypes.NewValue(tftypes.Object{ | ||
AttributeTypes: map[string]tftypes.Type{ | ||
"input": tftypes.String, | ||
}, | ||
}, map[string]tftypes.Value{ | ||
"input": tftypes.NewValue(tftypes.String, "hello, world"), | ||
}), | ||
plan: tftypes.NewValue(tftypes.Object{ | ||
AttributeTypes: map[string]tftypes.Type{ | ||
"input": tftypes.String, | ||
}, | ||
}, map[string]tftypes.Value{ | ||
"input": tftypes.NewValue(tftypes.String, "hElLo, WoRlD"), | ||
}), | ||
schema: Schema{ | ||
Attributes: map[string]Attribute{ | ||
"input": { | ||
Type: typeWithPlanModifier{ | ||
modifyPlan: func(ctx context.Context, state attr.Value, plan attr.Value, path *tftypes.AttributePath) (attr.Value, diag.Diagnostics) { | ||
st := state.(testtypes.String) | ||
pl := plan.(testtypes.String) | ||
if strings.ToLower(st.String.Value) == strings.ToLower(pl.String.Value) { | ||
return state, nil | ||
} | ||
return plan, nil | ||
}, | ||
}, | ||
Required: true, | ||
}, | ||
}, | ||
}, | ||
resp: &planResourceChangeResponse{}, | ||
expectedPlan: tftypes.NewValue(tftypes.Object{ | ||
AttributeTypes: map[string]tftypes.Type{ | ||
"input": tftypes.String, | ||
}, | ||
}, map[string]tftypes.Value{ | ||
"input": tftypes.NewValue(tftypes.String, "hello, world"), | ||
}), | ||
expectedDiags: nil, | ||
expectedRR: nil, | ||
expectedOK: true, | ||
}, | ||
} | ||
|
||
for name, tc := range tests { | ||
name, tc := name, tc | ||
|
||
t.Run(name, func(t *testing.T) { | ||
t.Parallel() | ||
|
||
plan, ok := runTypePlanModifiers(context.Background(), tc.state, tc.plan, tc.schema, tc.resp) | ||
|
||
if ok != tc.expectedOK { | ||
t.Fatalf("expected ok to be %v, got %v", tc.expectedOK, ok) | ||
} | ||
if diff := cmp.Diff(tc.resp.Diagnostics, tc.expectedDiags); diff != "" { | ||
t.Fatalf("Unexpected diff in diagnostics (+wanted, -got): %s", diff) | ||
} | ||
if diff := cmp.Diff(plan, tc.expectedPlan); diff != "" { | ||
t.Fatalf("Unexpected diff in plan result (+wanted, -got): %s", diff) | ||
} | ||
if diff := cmp.Diff(tc.resp.RequiresReplace, tc.expectedRR); diff != "" { | ||
t.Fatalf("Unexpected diff in requires replace (+wanted, -got): %s", diff) | ||
} | ||
}) | ||
} | ||
} |