-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making a surgical change to avoid nil pointer panics on accessing RawPlan, coming from the AWS panic in pulumi/pulumi-aws#2904 I have verified that this resolves 2904. --------- Co-authored-by: Ian Wahbe <[email protected]>
- Loading branch information
Showing
2 changed files
with
89 additions
and
1 deletion.
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
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,67 @@ | ||
// Copyright 2016-2023, Pulumi Corporation. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package sdkv2 | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/hashicorp/go-cty/cty" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestRawPlanSet(t *testing.T) { | ||
r := &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"tags": { | ||
Type: schema.TypeMap, | ||
Optional: true, | ||
Elem: &schema.Schema{Type: schema.TypeString}, | ||
}, | ||
}, | ||
} | ||
p := &schema.Provider{ | ||
ResourcesMap: map[string]*schema.Resource{"myres": r}, | ||
} | ||
|
||
wp := NewProvider(p, WithDiffStrategy(PlanState)) | ||
|
||
state := cty.ObjectVal(map[string]cty.Value{ | ||
"tags": cty.MapVal(map[string]cty.Value{"tag1": cty.StringVal("tag1v")}), | ||
}) | ||
|
||
config := cty.ObjectVal(map[string]cty.Value{ | ||
"tags": cty.MapVal(map[string]cty.Value{"tag1": cty.StringVal("tag1v")}), | ||
}) | ||
|
||
instanceState := terraform.NewInstanceStateShimmedFromValue(state, 0) | ||
instanceState.ID = "oldid" | ||
instanceState.Meta = map[string]interface{}{} // ignore schema versions for this test | ||
resourceConfig := terraform.NewResourceConfigShimmed(config, r.CoreConfigSchema()) | ||
|
||
ss := v2InstanceState{ | ||
resource: r, | ||
tf: instanceState, | ||
} | ||
|
||
id, err := wp.Diff("myres", ss, v2ResourceConfig{ | ||
tf: resourceConfig, | ||
}) | ||
require.NoError(t, err) | ||
|
||
assert.False(t, id.(v2InstanceDiff).tf.RawPlan.IsNull(), "RawPlan should not be Null") | ||
} |