2015-07-10 22:08:49 +02:00
|
|
|
package terraform
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
2018-05-05 04:24:06 +02:00
|
|
|
|
|
|
|
"github.com/zclconf/go-cty/cty"
|
2018-05-11 23:52:29 +02:00
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/addrs"
|
2018-07-05 19:33:29 +02:00
|
|
|
"github.com/hashicorp/terraform/configs/configschema"
|
2015-07-10 22:08:49 +02:00
|
|
|
)
|
|
|
|
|
2016-08-16 22:48:12 +02:00
|
|
|
func TestContext2Validate_badCount(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-08-16 22:48:12 +02:00
|
|
|
m := testModule(t, "validate-bad-count")
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2016-08-16 22:48:12 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2016-08-16 22:48:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
func TestContext2Validate_badVar(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
"num": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
m := testModule(t, "validate-bad-var")
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2016-01-21 20:33:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-09 21:58:24 +01:00
|
|
|
func TestContext2Validate_varMapOverrideOld(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-module-pc-vars")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-12-09 21:58:24 +01:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2018-05-05 04:24:06 +02:00
|
|
|
Variables: InputValues{
|
|
|
|
"foo.foo": &InputValue{
|
|
|
|
Value: cty.StringVal("bar"),
|
|
|
|
SourceType: ValueFromCaller,
|
|
|
|
},
|
2016-12-09 21:58:24 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2016-12-09 21:58:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-21 20:33:16 +01:00
|
|
|
func TestContext2Validate_varNoDefaultExplicitType(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-var-no-default-explicit-type")
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2016-01-21 20:33:16 +01:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_computedVar(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"value": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
pt := testProvider("test")
|
|
|
|
pt.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"test_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"value": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
m := testModule(t, "validate-computed-var")
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
2018-05-12 00:30:27 +02:00
|
|
|
"test": testProviderFuncFixed(pt),
|
2017-04-22 02:40:46 +02:00
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateFn = func(c *ResourceConfig) ([]string, []error) {
|
|
|
|
if !c.IsComputed("value") {
|
|
|
|
return nil, []error{fmt.Errorf("value isn't computed")}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, c.CheckSet([]string{"value"})
|
|
|
|
}
|
|
|
|
|
|
|
|
p.ConfigureFn = func(c *ResourceConfig) error {
|
|
|
|
return fmt.Errorf("Configure should not be called for provider")
|
|
|
|
}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-28 06:15:43 +01:00
|
|
|
// Test that validate allows through computed counts. We do this and allow
|
|
|
|
// them to fail during "plan" since we can't know if the computed values
|
|
|
|
// can be realized during a plan.
|
|
|
|
func TestContext2Validate_countComputed(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
DataSources: map[string]*configschema.Block{
|
|
|
|
"aws_data_source": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"compute": {Type: cty.String, Optional: true},
|
|
|
|
"value": {Type: cty.String, Computed: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-01-28 06:15:43 +01:00
|
|
|
m := testModule(t, "validate-count-computed")
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2017-01-28 06:15:43 +01:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2017-01-28 06:15:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
func TestContext2Validate_countNegative(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
m := testModule(t, "validate-count-negative")
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_countVariable(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
m := testModule(t, "apply-count-variable")
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_countVariableNoDefault(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
|
|
|
m := testModule(t, "validate-count-variable")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
2017-04-22 02:40:46 +02:00
|
|
|
},
|
2018-05-12 00:30:27 +02:00
|
|
|
},
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_moduleBadOutput(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
m := testModule(t, "validate-bad-module-output")
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_moduleGood(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
m := testModule(t, "validate-good-module")
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_moduleBadResource(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-module-bad-rc")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateResourceReturnErrors = []error{fmt.Errorf("bad")}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_moduleDepsShouldNotCycle(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-module-deps-cycle")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"id": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := ctx.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-02 20:25:59 +01:00
|
|
|
func TestContext2Validate_moduleProviderInheritOrphan(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-module-pc-inherit-orphan")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"set": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-11-02 20:25:59 +01:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-11-02 20:25:59 +01:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
State: &State{
|
|
|
|
Modules: []*ModuleState{
|
|
|
|
&ModuleState{
|
|
|
|
Path: []string{"root", "child"},
|
|
|
|
Resources: map[string]*ResourceState{
|
|
|
|
"aws_instance.bar": &ResourceState{
|
|
|
|
Type: "aws_instance",
|
|
|
|
Primary: &InstanceState{
|
|
|
|
ID: "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateFn = func(c *ResourceConfig) ([]string, []error) {
|
|
|
|
v, ok := c.Get("set")
|
|
|
|
if !ok {
|
|
|
|
return nil, []error{fmt.Errorf("not set")}
|
|
|
|
}
|
|
|
|
if v != "bar" {
|
|
|
|
return nil, []error{fmt.Errorf("bad: %#v", v)}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2017-11-02 20:25:59 +01:00
|
|
|
}
|
|
|
|
}
|
2015-07-10 22:08:49 +02:00
|
|
|
|
|
|
|
func TestContext2Validate_moduleProviderVar(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-module-pc-vars")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2018-05-05 04:24:06 +02:00
|
|
|
Variables: InputValues{
|
|
|
|
"provider_var": &InputValue{
|
|
|
|
Value: cty.StringVal("bar"),
|
|
|
|
SourceType: ValueFromCaller,
|
|
|
|
},
|
2015-07-10 22:08:49 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateFn = func(c *ResourceConfig) ([]string, []error) {
|
|
|
|
return nil, c.CheckSet([]string{"foo"})
|
|
|
|
}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_moduleProviderInheritUnused(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-module-pc-inherit-unused")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateFn = func(c *ResourceConfig) ([]string, []error) {
|
|
|
|
return nil, c.CheckSet([]string{"foo"})
|
|
|
|
}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_orphans(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
"num": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
m := testModule(t, "validate-good")
|
|
|
|
state := &State{
|
|
|
|
Modules: []*ModuleState{
|
|
|
|
&ModuleState{
|
|
|
|
Path: rootModulePath,
|
|
|
|
Resources: map[string]*ResourceState{
|
|
|
|
"aws_instance.web": &ResourceState{
|
|
|
|
Type: "aws_instance",
|
|
|
|
Primary: &InstanceState{
|
|
|
|
ID: "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
State: state,
|
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateResourceFn = func(
|
|
|
|
t string, c *ResourceConfig) ([]string, []error) {
|
|
|
|
return nil, c.CheckSet([]string{"foo"})
|
|
|
|
}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_providerConfig_bad(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-bad-pc")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateReturnErrors = []error{fmt.Errorf("bad")}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if len(diags) != 1 {
|
|
|
|
t.Fatalf("wrong number of diagnostics %d; want %d", len(diags), 1)
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
2017-11-22 00:08:00 +01:00
|
|
|
if !strings.Contains(diags.Err().Error(), "bad") {
|
|
|
|
t.Fatalf("bad: %s", diags.Err().Error())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_providerConfig_badEmpty(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-bad-pc-empty")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateReturnErrors = []error{fmt.Errorf("bad")}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_providerConfig_good(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-bad-pc")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_provisionerConfig_bad(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-bad-prov-conf")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
pr := simpleMockProvisioner()
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
Provisioners: map[string]ResourceProvisionerFactory{
|
|
|
|
"shell": testProvisionerFuncFixed(pr),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
pr.ValidateReturnErrors = []error{fmt.Errorf("bad")}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_provisionerConfig_good(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-bad-prov-conf")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
Provider: &configschema.Block{
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
pr := simpleMockProvisioner()
|
2015-07-10 22:08:49 +02:00
|
|
|
pr.ValidateFn = func(c *ResourceConfig) ([]string, []error) {
|
|
|
|
if c == nil {
|
|
|
|
t.Fatalf("missing resource config for provisioner")
|
|
|
|
}
|
2018-05-12 00:30:27 +02:00
|
|
|
return nil, c.CheckSet([]string{"test_string"})
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
2018-05-12 00:30:27 +02:00
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
Provisioners: map[string]ResourceProvisionerFactory{
|
|
|
|
"shell": testProvisionerFuncFixed(pr),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_requiredVar(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-required-var")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"ami": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_resourceConfig_bad(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-bad-rc")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateResourceReturnErrors = []error{fmt.Errorf("bad")}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if !diags.HasErrors() {
|
2018-05-12 00:30:27 +02:00
|
|
|
t.Fatalf("succeeded; want error")
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_resourceConfig_good(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-bad-rc")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
2017-04-22 02:40:46 +02:00
|
|
|
},
|
2018-05-12 00:30:27 +02:00
|
|
|
},
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
2018-05-12 00:30:27 +02:00
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_tainted(t *testing.T) {
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
"num": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
m := testModule(t, "validate-good")
|
|
|
|
state := &State{
|
|
|
|
Modules: []*ModuleState{
|
|
|
|
&ModuleState{
|
|
|
|
Path: rootModulePath,
|
|
|
|
Resources: map[string]*ResourceState{
|
|
|
|
"aws_instance.foo": &ResourceState{
|
|
|
|
Type: "aws_instance",
|
2016-04-21 21:59:10 +02:00
|
|
|
Primary: &InstanceState{
|
|
|
|
ID: "bar",
|
|
|
|
Tainted: true,
|
2015-07-10 22:08:49 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
State: state,
|
|
|
|
})
|
|
|
|
|
|
|
|
p.ValidateResourceFn = func(
|
|
|
|
t string, c *ResourceConfig) ([]string, []error) {
|
|
|
|
return nil, c.CheckSet([]string{"foo"})
|
|
|
|
}
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := c.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_targetedDestroy(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-targeted")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
pr := simpleMockProvisioner()
|
2015-07-10 22:08:49 +02:00
|
|
|
p.ApplyFn = testApplyFn
|
|
|
|
p.DiffFn = testDiffFn
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
"num": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-07-10 22:08:49 +02:00
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2015-07-10 22:08:49 +02:00
|
|
|
Provisioners: map[string]ResourceProvisionerFactory{
|
|
|
|
"shell": testProvisionerFuncFixed(pr),
|
|
|
|
},
|
|
|
|
State: &State{
|
|
|
|
Modules: []*ModuleState{
|
|
|
|
&ModuleState{
|
|
|
|
Path: rootModulePath,
|
|
|
|
Resources: map[string]*ResourceState{
|
|
|
|
"aws_instance.foo": resourceState("aws_instance", "i-bcd345"),
|
|
|
|
"aws_instance.bar": resourceState("aws_instance", "i-abc123"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-05-05 04:24:06 +02:00
|
|
|
Targets: []addrs.Targetable{
|
|
|
|
addrs.RootModuleInstance.Resource(
|
|
|
|
addrs.ManagedResourceMode, "aws_instance", "foo",
|
|
|
|
),
|
|
|
|
},
|
2015-07-10 22:08:49 +02:00
|
|
|
Destroy: true,
|
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := ctx.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2015-07-10 22:08:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_varRefFilled(t *testing.T) {
|
|
|
|
m := testModule(t, "validate-variable-ref")
|
|
|
|
p := testProvider("aws")
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"foo": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2015-07-10 22:08:49 +02:00
|
|
|
c := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2018-05-05 04:24:06 +02:00
|
|
|
Variables: InputValues{
|
|
|
|
"foo": &InputValue{
|
|
|
|
Value: cty.StringVal("bar"),
|
|
|
|
SourceType: ValueFromCaller,
|
|
|
|
},
|
2015-07-10 22:08:49 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
var value interface{}
|
|
|
|
p.ValidateResourceFn = func(t string, c *ResourceConfig) ([]string, []error) {
|
|
|
|
value, _ = c.Get("foo")
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Validate()
|
|
|
|
if value != "bar" {
|
|
|
|
t.Fatalf("bad: %#v", value)
|
|
|
|
}
|
|
|
|
}
|
2016-05-23 18:46:06 +02:00
|
|
|
|
|
|
|
// Module variables weren't being interpolated during Validate phase.
|
|
|
|
// related to https://github.com/hashicorp/terraform/issues/5322
|
|
|
|
func TestContext2Validate_interpolateVar(t *testing.T) {
|
|
|
|
input := new(MockUIInput)
|
|
|
|
|
|
|
|
m := testModule(t, "input-interpolate-var")
|
|
|
|
p := testProvider("null")
|
|
|
|
p.ApplyFn = testApplyFn
|
|
|
|
p.DiffFn = testDiffFn
|
2018-05-12 00:30:27 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"template_file": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"template": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2016-05-23 18:46:06 +02:00
|
|
|
|
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"template": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2016-05-23 18:46:06 +02:00
|
|
|
UIInput: input,
|
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := ctx.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2016-05-23 18:46:06 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-23 22:54:14 +02:00
|
|
|
|
|
|
|
// When module vars reference something that is actually computed, this
|
|
|
|
// shouldn't cause validation to fail.
|
|
|
|
func TestContext2Validate_interpolateComputedModuleVarDef(t *testing.T) {
|
|
|
|
input := new(MockUIInput)
|
|
|
|
|
|
|
|
m := testModule(t, "validate-computed-module-var-ref")
|
|
|
|
p := testProvider("aws")
|
|
|
|
p.ApplyFn = testApplyFn
|
|
|
|
p.DiffFn = testDiffFn
|
2018-05-11 23:52:29 +02:00
|
|
|
p.GetSchemaReturn = &ProviderSchema{
|
|
|
|
ResourceTypes: map[string]*configschema.Block{
|
|
|
|
"aws_instance": {
|
|
|
|
Attributes: map[string]*configschema.Attribute{
|
|
|
|
"attr": {Type: cty.String, Optional: true},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2016-05-23 22:54:14 +02:00
|
|
|
|
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2016-05-23 22:54:14 +02:00
|
|
|
UIInput: input,
|
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := ctx.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2016-05-23 22:54:14 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-26 22:05:50 +02:00
|
|
|
|
|
|
|
// Computed values are lost when a map is output from a module
|
|
|
|
func TestContext2Validate_interpolateMap(t *testing.T) {
|
|
|
|
input := new(MockUIInput)
|
|
|
|
|
|
|
|
m := testModule(t, "issue-9549")
|
2018-06-01 20:06:25 +02:00
|
|
|
p := testProvider("template")
|
2016-10-26 22:05:50 +02:00
|
|
|
p.ApplyFn = testApplyFn
|
|
|
|
p.DiffFn = testDiffFn
|
|
|
|
|
|
|
|
ctx := testContext2(t, &ContextOpts{
|
2018-05-05 04:24:06 +02:00
|
|
|
Config: m,
|
2017-04-22 02:40:46 +02:00
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"template": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
2016-10-26 22:05:50 +02:00
|
|
|
UIInput: input,
|
|
|
|
})
|
|
|
|
|
2017-11-22 00:08:00 +01:00
|
|
|
diags := ctx.Validate()
|
|
|
|
if diags.HasErrors() {
|
2018-05-11 23:52:29 +02:00
|
|
|
t.Fatalf("unexpected error: %s", diags.Err())
|
2016-10-26 22:05:50 +02:00
|
|
|
}
|
|
|
|
}
|
2016-12-02 16:53:29 +01:00
|
|
|
|
|
|
|
// Manually validate using the new PlanGraphBuilder
|
|
|
|
func TestContext2Validate_PlanGraphBuilder(t *testing.T) {
|
2018-05-11 23:40:40 +02:00
|
|
|
fixture := contextFixtureApplyVars(t)
|
|
|
|
opts := fixture.ContextOpts()
|
|
|
|
opts.Variables = InputValues{
|
|
|
|
"foo": &InputValue{
|
|
|
|
Value: cty.StringVal("us-east-1"),
|
|
|
|
SourceType: ValueFromCaller,
|
2016-12-02 16:53:29 +01:00
|
|
|
},
|
2018-05-11 23:40:40 +02:00
|
|
|
"test_list": &InputValue{
|
|
|
|
Value: cty.ListVal([]cty.Value{
|
|
|
|
cty.StringVal("Hello"),
|
|
|
|
cty.StringVal("World"),
|
|
|
|
}),
|
|
|
|
SourceType: ValueFromCaller,
|
|
|
|
},
|
|
|
|
"test_map": &InputValue{
|
|
|
|
Value: cty.MapVal(map[string]cty.Value{
|
|
|
|
"Hello": cty.StringVal("World"),
|
|
|
|
"Foo": cty.StringVal("Bar"),
|
|
|
|
"Baz": cty.StringVal("Foo"),
|
|
|
|
}),
|
|
|
|
SourceType: ValueFromCaller,
|
|
|
|
},
|
|
|
|
"amis": &InputValue{
|
|
|
|
Value: cty.MapVal(map[string]cty.Value{
|
|
|
|
"us-east-1": cty.StringVal("override"),
|
|
|
|
}),
|
|
|
|
SourceType: ValueFromCaller,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
c := testContext2(t, opts)
|
2016-12-02 16:53:29 +01:00
|
|
|
|
2018-05-05 04:24:06 +02:00
|
|
|
graph, diags := (&PlanGraphBuilder{
|
|
|
|
Config: c.config,
|
|
|
|
State: NewState(),
|
|
|
|
Components: c.components,
|
2018-05-31 21:39:45 +02:00
|
|
|
Schemas: c.schemas,
|
2018-05-05 04:24:06 +02:00
|
|
|
Targets: c.targets,
|
|
|
|
}).Build(addrs.RootModuleInstance)
|
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatalf("errors from PlanGraphBuilder: %s", diags.Err())
|
2017-07-20 11:23:43 +02:00
|
|
|
}
|
2017-01-30 17:41:38 +01:00
|
|
|
defer c.acquireRun("validate-test")()
|
2018-05-05 04:24:06 +02:00
|
|
|
walker, diags := c.walk(graph, walkValidate)
|
|
|
|
if diags.HasErrors() {
|
|
|
|
t.Fatal(diags.Err())
|
2016-12-02 16:53:29 +01:00
|
|
|
}
|
2018-05-05 04:24:06 +02:00
|
|
|
if len(walker.NonFatalDiagnostics) > 0 {
|
|
|
|
t.Fatal(walker.NonFatalDiagnostics.Err())
|
2016-12-02 16:53:29 +01:00
|
|
|
}
|
|
|
|
}
|
2018-05-22 20:16:08 +02:00
|
|
|
|
|
|
|
func TestContext2Validate_invalidOutput(t *testing.T) {
|
|
|
|
m := testModuleInline(t, map[string]string{
|
|
|
|
"main.tf": `
|
|
|
|
data "aws_data_source" "name" {}
|
|
|
|
|
|
|
|
output "out" {
|
|
|
|
value = "${data.aws_data_source.name.missing}"
|
|
|
|
}`,
|
|
|
|
})
|
|
|
|
|
|
|
|
p := testProvider("aws")
|
|
|
|
ctx := testContext2(t, &ContextOpts{
|
|
|
|
Config: m,
|
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
})
|
|
|
|
|
|
|
|
diags := ctx.Validate()
|
|
|
|
if !diags.HasErrors() {
|
|
|
|
// Should get this error:
|
|
|
|
// Unsupported attribute: This object does not have an attribute named "missing"
|
|
|
|
t.Fatal("succeeded; want errors")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestContext2Validate_invalidModuleOutput(t *testing.T) {
|
|
|
|
m := testModuleInline(t, map[string]string{
|
|
|
|
"child/main.tf": `
|
|
|
|
data "aws_data_source" "name" {}
|
|
|
|
|
|
|
|
output "out" {
|
|
|
|
value = "${data.aws_data_source.name.missing}"
|
|
|
|
}`,
|
|
|
|
"main.tf": `
|
|
|
|
module "child" {
|
|
|
|
source = "./child"
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_instance" "foo" {
|
|
|
|
foo = "${module.child.out}"
|
|
|
|
}`,
|
|
|
|
})
|
|
|
|
|
|
|
|
p := testProvider("aws")
|
|
|
|
ctx := testContext2(t, &ContextOpts{
|
|
|
|
Config: m,
|
|
|
|
ProviderResolver: ResourceProviderResolverFixed(
|
|
|
|
map[string]ResourceProviderFactory{
|
|
|
|
"aws": testProviderFuncFixed(p),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
})
|
|
|
|
|
|
|
|
diags := ctx.Validate()
|
|
|
|
if !diags.HasErrors() {
|
|
|
|
// Should get this error:
|
|
|
|
// Unsupported attribute: This object does not have an attribute named "missing"
|
|
|
|
t.Fatal("succeeded; want errors")
|
|
|
|
}
|
|
|
|
}
|