terraform/config/lang/parse_test.go

298 lines
5.0 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
}{
{
"",
false,
&ast.LiteralNode{
Value: "",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
Posx: ast.Pos{Column: 1, Line: 1},
},
},
2015-01-11 21:38:45 +01:00
{
"foo",
false,
&ast.LiteralNode{
Value: "foo",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
2015-01-11 21:38:45 +01:00
},
},
2015-01-13 17:50:28 +01:00
{
"$${var.foo}",
false,
&ast.LiteralNode{
Value: "${var.foo}",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-13 17:50:28 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
},
},
2015-01-11 21:38:45 +01:00
{
"foo ${var.bar}",
false,
&ast.Concat{
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
2015-01-11 21:38:45 +01:00
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
2015-01-11 21:38:45 +01:00
},
&ast.VariableAccess{
Name: "var.bar",
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 7, Line: 1},
2015-01-11 21:38:45 +01:00
},
},
},
},
{
"foo ${var.bar} baz",
false,
&ast.Concat{
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
},
&ast.VariableAccess{
Name: "var.bar",
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 7, Line: 1},
},
&ast.LiteralNode{
Value: " baz",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 15, Line: 1},
},
},
},
},
2015-01-11 21:38:45 +01:00
{
"foo ${\"bar\"}",
false,
&ast.Concat{
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
2015-01-11 21:38:45 +01:00
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
2015-01-11 21:38:45 +01:00
},
&ast.LiteralNode{
Value: "bar",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 7, Line: 1},
2015-01-11 21:38:45 +01:00
},
2015-01-12 17:53:27 +01:00
},
},
},
{
`foo ${func('baz')}`,
true,
nil,
},
2015-01-12 17:53:27 +01:00
{
"foo ${42}",
false,
&ast.Concat{
Posx: ast.Pos{Column: 1, Line: 1},
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 17:53:27 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
},
&ast.LiteralNode{
Value: 42,
2015-01-15 05:58:46 +01:00
Typex: ast.TypeInt,
2015-01-12 17:53:27 +01:00
Posx: ast.Pos{Column: 7, Line: 1},
},
},
},
},
{
"foo ${3.14159}",
false,
&ast.Concat{
Posx: ast.Pos{Column: 1, Line: 1},
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 17:53:27 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
},
&ast.LiteralNode{
Value: 3.14159,
2015-01-15 05:58:46 +01:00
Typex: ast.TypeFloat,
2015-01-12 17:53:27 +01:00
Posx: ast.Pos{Column: 7, Line: 1},
},
2015-01-11 21:38:45 +01:00
},
},
},
2015-01-11 22:03:37 +01:00
2015-01-12 00:33:24 +01:00
{
"${foo()}",
false,
&ast.Concat{
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 3, Line: 1},
Exprs: []ast.Node{
&ast.Call{
Func: "foo",
Args: nil,
Posx: ast.Pos{Column: 3, Line: 1},
},
},
2015-01-12 00:33:24 +01:00
},
},
2015-01-11 22:03:37 +01:00
{
"${foo(bar)}",
false,
&ast.Concat{
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 3, Line: 1},
Exprs: []ast.Node{
&ast.Call{
Func: "foo",
Posx: ast.Pos{Column: 3, Line: 1},
Args: []ast.Node{
&ast.VariableAccess{
Name: "bar",
Posx: ast.Pos{Column: 7, Line: 1},
},
},
2015-01-11 22:03:37 +01:00
},
},
},
},
{
"${foo(bar, baz)}",
false,
&ast.Concat{
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 3, Line: 1},
Exprs: []ast.Node{
&ast.Call{
Func: "foo",
Posx: ast.Pos{Column: 3, Line: 1},
Args: []ast.Node{
&ast.VariableAccess{
Name: "bar",
Posx: ast.Pos{Column: 7, Line: 1},
},
&ast.VariableAccess{
Name: "baz",
Posx: ast.Pos{Column: 11, Line: 1},
},
},
2015-01-11 22:03:37 +01:00
},
},
},
},
{
"${foo(bar(baz))}",
false,
&ast.Concat{
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 3, Line: 1},
Exprs: []ast.Node{
&ast.Call{
Func: "foo",
Posx: ast.Pos{Column: 3, Line: 1},
Args: []ast.Node{
&ast.Call{
Func: "bar",
Posx: ast.Pos{Column: 7, Line: 1},
Args: []ast.Node{
&ast.VariableAccess{
Name: "baz",
Posx: ast.Pos{Column: 11, Line: 1},
},
},
},
},
},
},
},
},
{
`foo ${"bar ${baz}"}`,
false,
&ast.Concat{
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "foo ",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 1, Line: 1},
},
&ast.Concat{
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 7, Line: 1},
Exprs: []ast.Node{
&ast.LiteralNode{
Value: "bar ",
2015-01-15 05:58:46 +01:00
Typex: ast.TypeString,
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 7, Line: 1},
},
&ast.VariableAccess{
Name: "baz",
2015-01-12 09:28:47 +01:00
Posx: ast.Pos{Column: 14, Line: 1},
},
},
},
},
},
},
{
`foo ${bar ${baz}}`,
true,
nil,
},
{
`foo ${${baz}}`,
true,
nil,
},
2015-01-14 19:40:43 +01:00
{
"${var",
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)
}
}
}