2014-07-21 22:12:43 +02:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
2014-10-10 06:22:35 +02:00
|
|
|
"fmt"
|
2014-07-23 03:35:36 +02:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2015-01-13 20:50:44 +01:00
|
|
|
"reflect"
|
2014-07-21 22:12:43 +02:00
|
|
|
"testing"
|
2014-08-19 22:14:45 +02:00
|
|
|
|
2015-01-13 20:50:44 +01:00
|
|
|
"github.com/hashicorp/terraform/config/lang"
|
2015-01-14 19:40:43 +01:00
|
|
|
"github.com/hashicorp/terraform/config/lang/ast"
|
2015-01-13 20:50:44 +01:00
|
|
|
)
|
2014-08-19 22:14:45 +02:00
|
|
|
|
2015-05-03 16:53:33 +02:00
|
|
|
func TestInterpolateFuncDeprecatedConcat(t *testing.T) {
|
2015-01-13 21:47:54 +01:00
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
`${concat("foo", "bar")}`,
|
|
|
|
"foobar",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`${concat("foo")}`,
|
|
|
|
"foo",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`${concat()}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-05-03 16:53:33 +02:00
|
|
|
func TestInterpolateFuncConcat(t *testing.T) {
|
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
// String + list
|
|
|
|
{
|
|
|
|
`${concat("a", split(",", "b,c"))}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"a", "b", "c"}).String(),
|
2015-05-03 16:53:33 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// List + string
|
|
|
|
{
|
|
|
|
`${concat(split(",", "a,b"), "c")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"a", "b", "c"}).String(),
|
2015-05-03 16:53:33 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Single list
|
|
|
|
{
|
|
|
|
`${concat(split(",", ",foo,"))}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"", "foo", ""}).String(),
|
2015-05-03 16:53:33 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${concat(split(",", "a,b,c"))}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"a", "b", "c"}).String(),
|
2015-05-03 16:53:33 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Two lists
|
|
|
|
{
|
|
|
|
`${concat(split(",", "a,b,c"), split(",", "d,e"))}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"a", "b", "c", "d", "e"}).String(),
|
2015-05-03 16:53:33 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
// Two lists with different separators
|
|
|
|
{
|
|
|
|
`${concat(split(",", "a,b,c"), split(" ", "d e"))}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"a", "b", "c", "d", "e"}).String(),
|
2015-05-03 16:53:33 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// More lists
|
|
|
|
{
|
|
|
|
`${concat(split(",", "a,b"), split(",", "c,d"), split(",", "e,f"), split(",", "0,1"))}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"a", "b", "c", "d", "e", "f", "0", "1"}).String(),
|
2015-05-03 16:53:33 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-23 03:35:36 +02:00
|
|
|
func TestInterpolateFuncFile(t *testing.T) {
|
|
|
|
tf, err := ioutil.TempFile("", "tf")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
path := tf.Name()
|
|
|
|
tf.Write([]byte("foo"))
|
|
|
|
tf.Close()
|
|
|
|
defer os.Remove(path)
|
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
fmt.Sprintf(`${file("%s")}`, path),
|
|
|
|
"foo",
|
|
|
|
false,
|
|
|
|
},
|
2014-07-23 03:35:36 +02:00
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
// Invalid path
|
|
|
|
{
|
|
|
|
`${file("/i/dont/exist")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
2014-07-23 03:35:36 +02:00
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
// Too many args
|
|
|
|
{
|
|
|
|
`${file("foo", "bar")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
2014-07-23 03:35:36 +02:00
|
|
|
},
|
2015-01-13 20:50:44 +01:00
|
|
|
})
|
2014-07-23 03:35:36 +02:00
|
|
|
}
|
2014-07-23 03:35:53 +02:00
|
|
|
|
2015-03-02 19:26:06 +01:00
|
|
|
func TestInterpolateFuncFormat(t *testing.T) {
|
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
`${format("hello")}`,
|
|
|
|
"hello",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`${format("hello %s", "world")}`,
|
|
|
|
"hello world",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`${format("hello %d", 42)}`,
|
|
|
|
"hello 42",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`${format("hello %05d", 42)}`,
|
|
|
|
"hello 00042",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`${format("hello %05d", 12345)}`,
|
|
|
|
"hello 12345",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-05-06 05:34:40 +02:00
|
|
|
func TestInterpolateFuncFormatList(t *testing.T) {
|
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
// formatlist requires at least one list
|
|
|
|
{
|
|
|
|
`${formatlist("hello")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${formatlist("hello %s", "world")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
// formatlist applies to each list element in turn
|
|
|
|
{
|
|
|
|
`${formatlist("<%s>", split(",", "A,B"))}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"<A>", "<B>"}).String(),
|
2015-05-06 05:34:40 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
// formatlist repeats scalar elements
|
|
|
|
{
|
|
|
|
`${join(", ", formatlist("%s=%s", "x", split(",", "A,B,C")))}`,
|
|
|
|
"x=A, x=B, x=C",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
// Multiple lists are walked in parallel
|
|
|
|
{
|
|
|
|
`${join(", ", formatlist("%s=%s", split(",", "A,B,C"), split(",", "1,2,3")))}`,
|
|
|
|
"A=1, B=2, C=3",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
// Mismatched list lengths generate an error
|
|
|
|
{
|
|
|
|
`${formatlist("%s=%2s", split(",", "A,B,C,D"), split(",", "1,2,3"))}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
2015-06-26 01:45:17 +02:00
|
|
|
// Works with lists of length 1 [GH-2240]
|
|
|
|
{
|
|
|
|
`${formatlist("%s.id", split(",", "demo-rest-elb"))}`,
|
|
|
|
NewStringList([]string{"demo-rest-elb.id"}).String(),
|
|
|
|
false,
|
|
|
|
},
|
2015-05-06 05:34:40 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-07-12 21:55:19 +02:00
|
|
|
func TestInterpolateFuncIndex(t *testing.T) {
|
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
`${index("test", "")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
fmt.Sprintf(`${index("%s", "foo")}`,
|
|
|
|
NewStringList([]string{"notfoo", "stillnotfoo", "bar"}).String()),
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
fmt.Sprintf(`${index("%s", "foo")}`,
|
|
|
|
NewStringList([]string{"foo"}).String()),
|
|
|
|
"0",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
fmt.Sprintf(`${index("%s", "bar")}`,
|
|
|
|
NewStringList([]string{"foo", "spam", "bar", "eggs"}).String()),
|
|
|
|
"2",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-10-10 06:22:35 +02:00
|
|
|
func TestInterpolateFuncJoin(t *testing.T) {
|
2015-01-13 21:06:04 +01:00
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
`${join(",")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
2014-10-10 06:22:35 +02:00
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
{
|
2015-06-26 00:55:51 +02:00
|
|
|
fmt.Sprintf(`${join(",", "%s")}`,
|
|
|
|
NewStringList([]string{"foo"}).String()),
|
2015-01-13 21:06:04 +01:00
|
|
|
"foo",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
/*
|
|
|
|
TODO
|
|
|
|
{
|
|
|
|
`${join(",", "foo", "bar")}`,
|
|
|
|
"foo,bar",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
*/
|
2014-10-10 06:22:35 +02:00
|
|
|
|
2015-01-13 20:50:44 +01:00
|
|
|
{
|
2015-01-13 21:06:04 +01:00
|
|
|
fmt.Sprintf(`${join(".", "%s")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"foo", "bar", "baz"}).String()),
|
2015-01-13 21:06:04 +01:00
|
|
|
"foo.bar.baz",
|
2015-01-13 20:50:44 +01:00
|
|
|
false,
|
|
|
|
},
|
2014-10-10 06:22:35 +02:00
|
|
|
},
|
2015-01-13 20:50:44 +01:00
|
|
|
})
|
2014-10-10 06:22:35 +02:00
|
|
|
}
|
|
|
|
|
2015-03-02 18:37:40 +01:00
|
|
|
func TestInterpolateFuncReplace(t *testing.T) {
|
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
// Regular search and replace
|
|
|
|
{
|
|
|
|
`${replace("hello", "hel", "bel")}`,
|
|
|
|
"bello",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Search string doesn't match
|
|
|
|
{
|
|
|
|
`${replace("hello", "nope", "bel")}`,
|
|
|
|
"hello",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Regular expression
|
|
|
|
{
|
|
|
|
`${replace("hello", "/l/", "L")}`,
|
|
|
|
"heLLo",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`${replace("helo", "/(l)/", "$1$1")}`,
|
|
|
|
"hello",
|
|
|
|
false,
|
|
|
|
},
|
2015-03-02 18:44:45 +01:00
|
|
|
|
|
|
|
// Bad regexp
|
|
|
|
{
|
|
|
|
`${replace("helo", "/(l/", "$1$1")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
2015-03-02 18:37:40 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-04-12 16:17:26 +02:00
|
|
|
func TestInterpolateFuncLength(t *testing.T) {
|
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
// Raw strings
|
|
|
|
{
|
|
|
|
`${length("")}`,
|
|
|
|
"0",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${length("a")}`,
|
|
|
|
"1",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${length(" ")}`,
|
|
|
|
"1",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${length(" a ,")}`,
|
|
|
|
"4",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${length("aaa")}`,
|
|
|
|
"3",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Lists
|
|
|
|
{
|
|
|
|
`${length(split(",", "a"))}`,
|
|
|
|
"1",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${length(split(",", "foo,"))}`,
|
|
|
|
"2",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${length(split(",", ",foo,"))}`,
|
|
|
|
"3",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${length(split(",", "foo,bar"))}`,
|
|
|
|
"2",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
`${length(split(".", "one.two.three.four.five"))}`,
|
|
|
|
"5",
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-01-28 22:59:16 +01:00
|
|
|
func TestInterpolateFuncSplit(t *testing.T) {
|
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
`${split(",")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2015-06-26 00:55:51 +02:00
|
|
|
{
|
|
|
|
`${split(",", "")}`,
|
|
|
|
NewStringList([]string{""}).String(),
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
2015-01-28 22:59:16 +01:00
|
|
|
{
|
|
|
|
`${split(",", "foo")}`,
|
2015-06-26 00:55:51 +02:00
|
|
|
NewStringList([]string{"foo"}).String(),
|
2015-01-28 22:59:16 +01:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
2015-04-12 16:17:26 +02:00
|
|
|
{
|
|
|
|
`${split(",", ",,,")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"", "", "", ""}).String(),
|
2015-04-12 16:17:26 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`${split(",", "foo,")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"foo", ""}).String(),
|
2015-04-12 16:17:26 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
`${split(",", ",foo,")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"", "foo", ""}).String(),
|
2015-04-12 16:17:26 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
2015-01-28 22:59:16 +01:00
|
|
|
{
|
|
|
|
`${split(".", "foo.bar.baz")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"foo", "bar", "baz"}).String(),
|
2015-01-28 22:59:16 +01:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-21 22:12:43 +02:00
|
|
|
func TestInterpolateFuncLookup(t *testing.T) {
|
2015-01-13 21:06:04 +01:00
|
|
|
testFunction(t, testFunctionConfig{
|
2015-01-15 07:01:42 +01:00
|
|
|
Vars: map[string]ast.Variable{
|
|
|
|
"var.foo.bar": ast.Variable{
|
2015-01-14 19:40:43 +01:00
|
|
|
Value: "baz",
|
|
|
|
Type: ast.TypeString,
|
|
|
|
},
|
|
|
|
},
|
2015-01-13 21:06:04 +01:00
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
`${lookup("foo", "bar")}`,
|
|
|
|
"baz",
|
|
|
|
false,
|
2014-07-21 22:12:43 +02:00
|
|
|
},
|
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
// Invalid key
|
|
|
|
{
|
|
|
|
`${lookup("foo", "baz")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
2014-07-21 22:12:43 +02:00
|
|
|
},
|
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
// Too many args
|
|
|
|
{
|
|
|
|
`${lookup("foo", "bar", "baz")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
2014-07-21 22:12:43 +02:00
|
|
|
},
|
|
|
|
},
|
2015-01-13 21:06:04 +01:00
|
|
|
})
|
2014-07-21 22:12:43 +02:00
|
|
|
}
|
2014-11-07 19:23:02 +01:00
|
|
|
|
2015-06-02 23:48:38 +02:00
|
|
|
func TestInterpolateFuncKeys(t *testing.T) {
|
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Vars: map[string]ast.Variable{
|
|
|
|
"var.foo.bar": ast.Variable{
|
|
|
|
Value: "baz",
|
|
|
|
Type: ast.TypeString,
|
|
|
|
},
|
|
|
|
"var.foo.qux": ast.Variable{
|
|
|
|
Value: "quack",
|
|
|
|
Type: ast.TypeString,
|
|
|
|
},
|
|
|
|
"var.str": ast.Variable{
|
|
|
|
Value: "astring",
|
|
|
|
Type: ast.TypeString,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
`${keys("foo")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"bar", "qux"}).String(),
|
2015-06-02 23:48:38 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Invalid key
|
|
|
|
{
|
|
|
|
`${keys("not")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Too many args
|
|
|
|
{
|
|
|
|
`${keys("foo", "bar")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Not a map
|
|
|
|
{
|
|
|
|
`${keys("str")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestInterpolateFuncValues(t *testing.T) {
|
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Vars: map[string]ast.Variable{
|
|
|
|
"var.foo.bar": ast.Variable{
|
|
|
|
Value: "quack",
|
|
|
|
Type: ast.TypeString,
|
|
|
|
},
|
|
|
|
"var.foo.qux": ast.Variable{
|
|
|
|
Value: "baz",
|
|
|
|
Type: ast.TypeString,
|
|
|
|
},
|
|
|
|
"var.str": ast.Variable{
|
|
|
|
Value: "astring",
|
|
|
|
Type: ast.TypeString,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
`${values("foo")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"quack", "baz"}).String(),
|
2015-06-02 23:48:38 +02:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Invalid key
|
|
|
|
{
|
|
|
|
`${values("not")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Too many args
|
|
|
|
{
|
|
|
|
`${values("foo", "bar")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Not a map
|
|
|
|
{
|
|
|
|
`${values("str")}`,
|
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-11-07 19:23:02 +01:00
|
|
|
func TestInterpolateFuncElement(t *testing.T) {
|
2015-01-13 21:06:04 +01:00
|
|
|
testFunction(t, testFunctionConfig{
|
|
|
|
Cases: []testFunctionCase{
|
|
|
|
{
|
|
|
|
fmt.Sprintf(`${element("%s", "1")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"foo", "baz"}).String()),
|
2015-01-13 21:06:04 +01:00
|
|
|
"baz",
|
|
|
|
false,
|
|
|
|
},
|
2014-11-07 19:23:02 +01:00
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
{
|
2015-06-26 00:55:51 +02:00
|
|
|
fmt.Sprintf(`${element("%s", "0")}`,
|
|
|
|
NewStringList([]string{"foo"}).String()),
|
2015-01-13 21:06:04 +01:00
|
|
|
"foo",
|
|
|
|
false,
|
|
|
|
},
|
2014-11-07 19:23:02 +01:00
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
// Invalid index should wrap vs. out-of-bounds
|
|
|
|
{
|
|
|
|
fmt.Sprintf(`${element("%s", "2")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"foo", "baz"}).String()),
|
2015-01-13 21:06:04 +01:00
|
|
|
"foo",
|
|
|
|
false,
|
|
|
|
},
|
2014-11-07 19:23:02 +01:00
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
// Too many args
|
|
|
|
{
|
|
|
|
fmt.Sprintf(`${element("%s", "0", "2")}`,
|
2015-06-25 16:48:37 +02:00
|
|
|
NewStringList([]string{"foo", "baz"}).String()),
|
2015-01-13 21:06:04 +01:00
|
|
|
nil,
|
|
|
|
true,
|
|
|
|
},
|
2014-11-07 19:23:02 +01:00
|
|
|
},
|
2015-01-13 20:50:44 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
type testFunctionConfig struct {
|
|
|
|
Cases []testFunctionCase
|
2015-01-15 07:01:42 +01:00
|
|
|
Vars map[string]ast.Variable
|
2015-01-13 21:06:04 +01:00
|
|
|
}
|
|
|
|
|
2015-01-13 20:50:44 +01:00
|
|
|
type testFunctionCase struct {
|
|
|
|
Input string
|
|
|
|
Result interface{}
|
|
|
|
Error bool
|
|
|
|
}
|
2014-11-07 19:23:02 +01:00
|
|
|
|
2015-01-13 21:06:04 +01:00
|
|
|
func testFunction(t *testing.T, config testFunctionConfig) {
|
|
|
|
for i, tc := range config.Cases {
|
2015-01-13 20:50:44 +01:00
|
|
|
ast, err := lang.Parse(tc.Input)
|
|
|
|
if err != nil {
|
2015-05-03 16:53:58 +02:00
|
|
|
t.Fatalf("Case #%d: input: %#v\nerr: %s", i, tc.Input, err)
|
2015-01-13 20:50:44 +01:00
|
|
|
}
|
|
|
|
|
2015-01-15 07:01:42 +01:00
|
|
|
out, _, err := lang.Eval(ast, langEvalConfig(config.Vars))
|
2014-11-07 19:23:02 +01:00
|
|
|
if (err != nil) != tc.Error {
|
2015-05-03 16:53:58 +02:00
|
|
|
t.Fatalf("Case #%d:\ninput: %#v\nerr: %s", i, tc.Input, err)
|
2014-11-07 19:23:02 +01:00
|
|
|
}
|
|
|
|
|
2015-01-13 20:50:44 +01:00
|
|
|
if !reflect.DeepEqual(out, tc.Result) {
|
2015-03-02 18:37:40 +01:00
|
|
|
t.Fatalf(
|
2015-04-13 15:12:43 +02:00
|
|
|
"%d: bad output for input: %s\n\nOutput: %#v\nExpected: %#v",
|
|
|
|
i, tc.Input, out, tc.Result)
|
2014-11-07 19:23:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|