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
|
|
|
|
}{
|
2015-01-13 19:27:31 +01:00
|
|
|
{
|
|
|
|
"",
|
|
|
|
false,
|
|
|
|
&ast.LiteralNode{
|
|
|
|
Value: "",
|
2015-01-15 05:58:46 +01:00
|
|
|
Typex: ast.TypeString,
|
2015-01-13 19:27:31 +01:00
|
|
|
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
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-01-11 22:59:24 +01:00
|
|
|
{
|
|
|
|
"foo ${var.bar} baz",
|
|
|
|
false,
|
|
|
|
&ast.Concat{
|
2015-01-12 09:28:47 +01:00
|
|
|
Posx: ast.Pos{Column: 1, Line: 1},
|
2015-01-11 22:59:24 +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 22:59:24 +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 22:59:24 +01:00
|
|
|
},
|
|
|
|
&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 22:59:24 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
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
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-01-16 19:28:00 +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-02-26 20:32:39 +01:00
|
|
|
{
|
|
|
|
"foo ${42+1}",
|
|
|
|
false,
|
|
|
|
&ast.Concat{
|
|
|
|
Posx: ast.Pos{Column: 1, Line: 1},
|
|
|
|
Exprs: []ast.Node{
|
|
|
|
&ast.LiteralNode{
|
|
|
|
Value: "foo ",
|
|
|
|
Typex: ast.TypeString,
|
|
|
|
Posx: ast.Pos{Column: 1, Line: 1},
|
|
|
|
},
|
|
|
|
&ast.Arithmetic{
|
|
|
|
Op: ast.ArithmeticOpAdd,
|
|
|
|
Exprs: []ast.Node{
|
|
|
|
&ast.LiteralNode{
|
|
|
|
Value: 42,
|
|
|
|
Typex: ast.TypeInt,
|
|
|
|
Posx: ast.Pos{Column: 7, Line: 1},
|
|
|
|
},
|
|
|
|
&ast.LiteralNode{
|
|
|
|
Value: 1,
|
|
|
|
Typex: ast.TypeInt,
|
|
|
|
Posx: ast.Pos{Column: 10, Line: 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Posx: ast.Pos{Column: 7, Line: 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-06-26 04:52:50 +02:00
|
|
|
{
|
|
|
|
"foo ${var.bar*1} baz",
|
|
|
|
false,
|
|
|
|
&ast.Concat{
|
|
|
|
Posx: ast.Pos{Column: 1, Line: 1},
|
|
|
|
Exprs: []ast.Node{
|
|
|
|
&ast.LiteralNode{
|
|
|
|
Value: "foo ",
|
|
|
|
Typex: ast.TypeString,
|
|
|
|
Posx: ast.Pos{Column: 1, Line: 1},
|
|
|
|
},
|
|
|
|
&ast.Arithmetic{
|
|
|
|
Op: ast.ArithmeticOpMul,
|
|
|
|
Exprs: []ast.Node{
|
|
|
|
&ast.VariableAccess{
|
|
|
|
Name: "var.bar",
|
|
|
|
Posx: ast.Pos{Column: 7, Line: 1},
|
|
|
|
},
|
|
|
|
&ast.LiteralNode{
|
|
|
|
Value: 1,
|
|
|
|
Typex: ast.TypeInt,
|
|
|
|
Posx: ast.Pos{Column: 15, Line: 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Posx: ast.Pos{Column: 7, Line: 1},
|
|
|
|
},
|
|
|
|
&ast.LiteralNode{
|
|
|
|
Value: " baz",
|
|
|
|
Typex: ast.TypeString,
|
|
|
|
Posx: ast.Pos{Column: 17, Line: 1},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2015-01-12 00:33:24 +01:00
|
|
|
{
|
|
|
|
"${foo()}",
|
|
|
|
false,
|
2015-01-14 21:18:51 +01:00
|
|
|
&ast.Concat{
|
2015-01-12 09:28:47 +01:00
|
|
|
Posx: ast.Pos{Column: 3, Line: 1},
|
2015-01-14 21:18:51 +01:00
|
|
|
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,
|
2015-01-14 21:18:51 +01:00
|
|
|
&ast.Concat{
|
2015-01-12 09:28:47 +01:00
|
|
|
Posx: ast.Pos{Column: 3, Line: 1},
|
2015-01-14 21:18:51 +01:00
|
|
|
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,
|
2015-01-14 21:18:51 +01:00
|
|
|
&ast.Concat{
|
2015-01-12 09:28:47 +01:00
|
|
|
Posx: ast.Pos{Column: 3, Line: 1},
|
2015-01-14 21:18:51 +01:00
|
|
|
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
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-01-11 22:59:24 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
"${foo(bar(baz))}",
|
|
|
|
false,
|
2015-01-14 21:18:51 +01:00
|
|
|
&ast.Concat{
|
2015-01-12 09:28:47 +01:00
|
|
|
Posx: ast.Pos{Column: 3, Line: 1},
|
2015-01-14 21:18:51 +01:00
|
|
|
Exprs: []ast.Node{
|
2015-01-11 22:59:24 +01:00
|
|
|
&ast.Call{
|
2015-01-14 21:18:51 +01:00
|
|
|
Func: "foo",
|
|
|
|
Posx: ast.Pos{Column: 3, Line: 1},
|
2015-01-11 22:59:24 +01:00
|
|
|
Args: []ast.Node{
|
2015-01-14 21:18:51 +01:00
|
|
|
&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},
|
|
|
|
},
|
|
|
|
},
|
2015-01-11 22:59:24 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`foo ${"bar ${baz}"}`,
|
|
|
|
false,
|
|
|
|
&ast.Concat{
|
2015-01-12 09:28:47 +01:00
|
|
|
Posx: ast.Pos{Column: 1, Line: 1},
|
2015-01-11 22:59:24 +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 22:59:24 +01:00
|
|
|
},
|
|
|
|
&ast.Concat{
|
2015-01-12 09:28:47 +01:00
|
|
|
Posx: ast.Pos{Column: 7, Line: 1},
|
2015-01-11 22:59:24 +01:00
|
|
|
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},
|
2015-01-11 22:59:24 +01:00
|
|
|
},
|
|
|
|
&ast.VariableAccess{
|
|
|
|
Name: "baz",
|
2015-01-12 09:28:47 +01:00
|
|
|
Posx: ast.Pos{Column: 14, Line: 1},
|
2015-01-11 22:59:24 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`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)
|
2015-10-08 14:48:04 +02:00
|
|
|
if err != nil != tc.Error {
|
2015-01-11 21:38:45 +01:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|