interpolation strings were beeing validated

Interpolation strings for non-computed values in a list were being
passed to the schema's ValidateFunc.
This commit is contained in:
James Bardin 2017-03-24 10:20:23 -04:00
parent 6a13d70d40
commit 99a12f5df3
1 changed files with 42 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import (
"reflect"
"sort"
"strconv"
"strings"
"testing"
"github.com/hashicorp/hil"
@ -4924,6 +4925,47 @@ func TestSchemaMap_Validate(t *testing.T) {
},
Err: true,
},
// The Validation function should not see interpolation strings from
// non-computed values.
"set with partially computed list and map": {
Schema: map[string]*Schema{
"outer": &Schema{
Type: TypeSet,
Optional: true,
Computed: true,
Elem: &Resource{
Schema: map[string]*Schema{
"list": &Schema{
Type: TypeList,
Optional: true,
Elem: &Schema{
Type: TypeString,
ValidateFunc: func(v interface{}, k string) (ws []string, es []error) {
if strings.HasPrefix(v.(string), "${") {
es = append(es, fmt.Errorf("should not have interpolations"))
}
return
},
},
},
},
},
},
},
Config: map[string]interface{}{
"outer": []map[string]interface{}{
{
"list": []interface{}{"${var.a}", "${var.b}", "c"},
},
},
},
Vars: map[string]string{
"var.a": "A",
"var.b": config.UnknownVariableValue,
},
Err: false,
},
}
for tn, tc := range cases {