2017-06-26 16:15:01 +02:00
|
|
|
package liquid
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-06-26 16:36:53 +02:00
|
|
|
"log"
|
2017-06-26 16:15:01 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
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.
|
2017-06-26 16:15:01 +02:00
|
|
|
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-06-26 16:15:01 +02:00
|
|
|
}
|
|
|
|
|
2017-07-02 05:52:38 +02:00
|
|
|
var testContext = NewContext(map[string]interface{}{
|
2017-06-26 16:15:01 +02:00
|
|
|
"x": 123,
|
|
|
|
"ar": []string{"first", "second", "third"},
|
|
|
|
"page": map[string]interface{}{
|
|
|
|
"title": "Introduction",
|
|
|
|
},
|
2017-07-02 05:52:38 +02:00
|
|
|
})
|
2017-06-26 16:15:01 +02:00
|
|
|
|
2017-06-30 22:13:18 +02:00
|
|
|
func TestLiquid(t *testing.T) {
|
2017-06-26 16:15:01 +02:00
|
|
|
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-02 05:52:38 +02:00
|
|
|
out, err := engine.ParseAndRenderString(test.in, testContext)
|
2017-06-26 16:15:01 +02:00
|
|
|
require.NoErrorf(t, err, test.in)
|
2017-06-26 16:36:53 +02:00
|
|
|
require.Equalf(t, test.expected, out, test.in)
|
2017-06-26 16:15:01 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2017-06-26 16:36:53 +02:00
|
|
|
|
|
|
|
func Example() {
|
|
|
|
engine := NewEngine()
|
|
|
|
template := `<h1>{{page.title}}</h1>`
|
2017-06-29 19:08:25 +02:00
|
|
|
bindings := map[string]interface{}{
|
2017-06-26 16:36:53 +02:00
|
|
|
"page": map[string]interface{}{
|
|
|
|
"title": "Introduction",
|
|
|
|
},
|
|
|
|
}
|
2017-07-02 05:52:38 +02:00
|
|
|
context := NewContext(bindings)
|
|
|
|
out, err := engine.ParseAndRenderString(template, context)
|
2017-06-26 16:36:53 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
fmt.Println(out)
|
|
|
|
// Output: <h1>Introduction</h1>
|
|
|
|
}
|