terraform/config/lang/parse_test.go

172 lines
2.4 KiB
Go
Raw Normal View History

2015-01-11 21:38:45 +01:00
package lang
import (
"reflect"
"testing"
"github.com/hashicorp/terraform/config/lang/ast"
)
func TestParse(t *testing.T) {
cases := []struct {
Input string
Error bool
Result ast.Node
}{
{
"foo",
false,
&ast.LiteralNode{
Value: "foo",
Type: ast.TypeString,
},
},
{
"foo ${var.bar}",
false,
&ast.Concat{
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
Type: ast.TypeString,
},
&ast.VariableAccess{
Name: "var.bar",
},
},
},
},
{
"foo ${var.bar} baz",
false,
&ast.Concat{
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
Type: ast.TypeString,
},
&ast.VariableAccess{
Name: "var.bar",
},
&ast.LiteralNode{
Value: " baz",
Type: ast.TypeString,
},
},
},
},
2015-01-11 21:38:45 +01:00
{
"foo ${\"bar\"}",
false,
&ast.Concat{
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
Type: ast.TypeString,
},
&ast.LiteralNode{
Value: "bar",
Type: ast.TypeString,
},
},
},
},
2015-01-11 22:03:37 +01:00
{
"${foo(bar)}",
false,
&ast.Call{
Func: "foo",
Args: []ast.Node{
&ast.VariableAccess{
Name: "bar",
},
},
},
},
{
"${foo(bar, baz)}",
false,
&ast.Call{
Func: "foo",
Args: []ast.Node{
&ast.VariableAccess{
Name: "bar",
},
&ast.VariableAccess{
Name: "baz",
},
},
},
},
{
"${foo(bar(baz))}",
false,
&ast.Call{
Func: "foo",
Args: []ast.Node{
&ast.Call{
Func: "bar",
Args: []ast.Node{
&ast.VariableAccess{
Name: "baz",
},
},
},
},
},
},
{
`foo ${"bar ${baz}"}`,
false,
&ast.Concat{
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
Type: ast.TypeString,
},
&ast.Concat{
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "bar ",
Type: ast.TypeString,
},
&ast.VariableAccess{
Name: "baz",
},
},
},
},
},
},
{
`foo ${bar ${baz}}`,
true,
nil,
},
{
`foo ${${baz}}`,
true,
nil,
},
2015-01-11 21:38:45 +01:00
}
for _, tc := range cases {
actual, err := Parse(tc.Input)
if (err != nil) != tc.Error {
t.Fatalf("Error: %s\n\nInput: %s", err, tc.Input)
}
if !reflect.DeepEqual(actual, tc.Result) {
t.Fatalf("Bad: %#v\n\nInput: %s", actual, tc.Input)
}
}
}