mirror of
https://github.com/danog/liquid.git
synced 2024-11-30 10:19:03 +01:00
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package liquid
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"testing"
|
|
|
|
"github.com/osteele/liquid/tags"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func init() {
|
|
tags.DefineStandardTags()
|
|
}
|
|
|
|
// 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 }{
|
|
{`{{ page.title }}`, "Introduction"},
|
|
{`{% if x%}true{%endif %}`, "true"},
|
|
}
|
|
|
|
var liquidTestScope = map[string]interface{}{
|
|
"x": 123,
|
|
"ar": []string{"first", "second", "third"},
|
|
"page": map[string]interface{}{
|
|
"title": "Introduction",
|
|
},
|
|
}
|
|
|
|
func TestChunkParser(t *testing.T) {
|
|
engine := NewEngine()
|
|
for i, test := range liquidTests {
|
|
t.Run(fmt.Sprint(i), func(t *testing.T) {
|
|
out, err := engine.ParseAndRenderString(test.in, liquidTestScope)
|
|
require.NoErrorf(t, err, test.in)
|
|
require.Equalf(t, test.expected, out, test.in)
|
|
})
|
|
}
|
|
}
|
|
|
|
func Example() {
|
|
engine := NewEngine()
|
|
template := `<h1>{{page.title}}</h1>`
|
|
bindings := map[string]interface{}{
|
|
"page": map[string]interface{}{
|
|
"title": "Introduction",
|
|
},
|
|
}
|
|
out, err := engine.ParseAndRenderString(template, bindings)
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
fmt.Println(out)
|
|
// Output: <h1>Introduction</h1>
|
|
}
|