mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gview_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gfile"
|
|
"github.com/gogf/gf/v2/os/gview"
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
)
|
|
|
|
func Test_Encode_Parse(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
v := gview.New()
|
|
v.SetPath(gtest.DataPath("tpl"))
|
|
v.SetAutoEncode(true)
|
|
result, err := v.Parse(context.TODO(), "encode.tpl", g.Map{
|
|
"title": "<b>my title</b>",
|
|
})
|
|
t.AssertNil(err)
|
|
t.Assert(result, "<div><b>my title</b></div>")
|
|
})
|
|
}
|
|
|
|
func Test_Encode_ParseContent(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
v := gview.New()
|
|
tplContent := gfile.GetContents(gtest.DataPath("tpl", "encode.tpl"))
|
|
v.SetAutoEncode(true)
|
|
result, err := v.ParseContent(context.TODO(), tplContent, g.Map{
|
|
"title": "<b>my title</b>",
|
|
})
|
|
t.AssertNil(err)
|
|
t.Assert(result, "<div><b>my title</b></div>")
|
|
})
|
|
}
|