zclsyntax: public-facing ParseTemplate function
This allows calling applications to deal with bare templates, e.g. loaded from separate files referenced in a main configuration.
This commit is contained in:
parent
8532fe32e6
commit
8004488042
119
zcl/zclsyntax/expression_template_test.go
Normal file
119
zcl/zclsyntax/expression_template_test.go
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
package zclsyntax
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/zclconf/go-cty/cty"
|
||||||
|
"github.com/zclconf/go-zcl/zcl"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestTemplateExprParseAndValue(t *testing.T) {
|
||||||
|
// This is a combo test that exercises both the parser and the Value
|
||||||
|
// method, with the focus on the latter but indirectly testing the former.
|
||||||
|
tests := []struct {
|
||||||
|
input string
|
||||||
|
ctx *zcl.EvalContext
|
||||||
|
want cty.Value
|
||||||
|
diagCount int
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
`1`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("1"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`(1)`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("(1)"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`true`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("true"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`
|
||||||
|
hello world
|
||||||
|
`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("\nhello world\n"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`hello ${"world"}`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("hello world"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`hello\nworld`, // backslash escapes not supported in bare templates
|
||||||
|
nil,
|
||||||
|
cty.StringVal("hello\\nworld"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`hello ${12.5}`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("hello 12.5"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`silly ${"${"nesting"}"}`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("silly nesting"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`silly ${"${true}"}`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("silly true"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`hello $${escaped}`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("hello ${escaped}"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`hello $$nonescape`,
|
||||||
|
nil,
|
||||||
|
cty.StringVal("hello $$nonescape"),
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
`${true}`,
|
||||||
|
nil,
|
||||||
|
cty.True, // any single expression is unwrapped without stringification
|
||||||
|
0,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
|
t.Run(test.input, func(t *testing.T) {
|
||||||
|
expr, parseDiags := ParseTemplate([]byte(test.input), "", zcl.Pos{Line: 1, Column: 1, Byte: 0})
|
||||||
|
|
||||||
|
got, valDiags := expr.Value(test.ctx)
|
||||||
|
|
||||||
|
diagCount := len(parseDiags) + len(valDiags)
|
||||||
|
|
||||||
|
if diagCount != test.diagCount {
|
||||||
|
t.Errorf("wrong number of diagnostics %d; want %d", diagCount, test.diagCount)
|
||||||
|
for _, diag := range parseDiags {
|
||||||
|
t.Logf(" - %s", diag.Error())
|
||||||
|
}
|
||||||
|
for _, diag := range valDiags {
|
||||||
|
t.Logf(" - %s", diag.Error())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !got.RawEquals(test.want) {
|
||||||
|
t.Errorf("wrong result\ngot: %#v\nwant: %#v", got, test.want)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -48,8 +48,11 @@ func ParseExpression(src []byte, filename string, start zcl.Pos) (Expression, zc
|
|||||||
|
|
||||||
// ParseTemplate parses the given buffer as a standalone zcl template,
|
// ParseTemplate parses the given buffer as a standalone zcl template,
|
||||||
// returning it as an instance of Expression.
|
// returning it as an instance of Expression.
|
||||||
func ParseTemplate(src []byte, filename string, start zcl.Pos) (*Expression, zcl.Diagnostics) {
|
func ParseTemplate(src []byte, filename string, start zcl.Pos) (Expression, zcl.Diagnostics) {
|
||||||
panic("ParseTemplate is not yet implemented")
|
tokens := LexTemplate(src, filename, start)
|
||||||
|
peeker := newPeeker(tokens, false)
|
||||||
|
parser := &parser{peeker: peeker}
|
||||||
|
return parser.ParseTemplate(TokenEOF)
|
||||||
}
|
}
|
||||||
|
|
||||||
// LexConfig performs lexical analysis on the given buffer, treating it as a
|
// LexConfig performs lexical analysis on the given buffer, treating it as a
|
||||||
|
Loading…
x
Reference in New Issue
Block a user