1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-26 22:34:44 +01:00
liquid/engine_test.go

84 lines
2.1 KiB
Go
Raw Normal View History

package liquid
import (
2017-07-22 14:04:09 +02:00
"bytes"
"fmt"
2017-07-22 14:04:09 +02:00
"io"
"testing"
"github.com/stretchr/testify/require"
)
2017-07-04 22:48:38 +02:00
var emptyBindings = map[string]interface{}{}
2017-06-30 14:45:22 +02:00
// There's a lot more tests in the filters and tags sub-packages.
// This collects a minimal set for testing end-to-end.
var liquidTests = []struct{ in, expected string }{
2017-06-30 14:45:22 +02:00
{`{{ page.title }}`, "Introduction"},
2017-06-30 22:13:18 +02:00
{`{% if x %}true{% endif %}`, "true"},
{`{{ "upper" | upcase }}`, "UPPER"},
}
2017-07-03 03:17:04 +02:00
var testBindings = map[string]interface{}{
"x": 123,
"ar": []string{"first", "second", "third"},
"page": map[string]interface{}{
"title": "Introduction",
},
2017-07-03 03:17:04 +02:00
}
2017-07-04 22:48:38 +02:00
func TestEngine_ParseAndRenderString(t *testing.T) {
engine := NewEngine()
for i, test := range liquidTests {
2017-06-30 22:13:18 +02:00
t.Run(fmt.Sprint(i+1), func(t *testing.T) {
2017-07-03 03:17:04 +02:00
out, err := engine.ParseAndRenderString(test.in, testBindings)
require.NoErrorf(t, err, test.in)
2017-06-26 16:36:53 +02:00
require.Equalf(t, test.expected, out, test.in)
})
}
}
func TestEngine_ParseAndRenderString_ptr_to_hash(t *testing.T) {
params := map[string]interface{}{
"message": &map[string]interface{}{
"Text": "hello",
},
}
engine := NewEngine()
template := "{{ message.Text }}"
str, err := engine.ParseAndRenderString(template, params)
require.NoError(t, err)
require.Equal(t, "hello", str)
}
type testStruct struct{ Text string }
func TestEngine_ParseAndRenderString_struct(t *testing.T) {
params := map[string]interface{}{
"message": testStruct{
Text: "hello",
},
}
engine := NewEngine()
template := "{{ message.Text }}"
str, err := engine.ParseAndRenderString(template, params)
require.NoError(t, err)
require.Equal(t, "hello", str)
}
2017-07-22 14:04:09 +02:00
func BenchmarkEngine_Parse(b *testing.B) {
engine := NewEngine()
buf := new(bytes.Buffer)
for i := 0; i < 1000; i++ {
io.WriteString(buf, `if{% if true %}true{% elsif %}elsif{% else %}else{% endif %}`)
io.WriteString(buf, `loop{% for item in array %}loop{% break %}{% endfor %}`)
io.WriteString(buf, `case{% case value %}{% when a %}{% when b %{% endcase %}`)
io.WriteString(buf, `expr{{ a and b }}{{ a add: b }}`)
}
s := buf.Bytes()
b.ResetTimer()
for i := 0; i < b.N; i++ {
engine.ParseTemplate(s)
}
}