mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
45 lines
1.2 KiB
Go
45 lines
1.2 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/debug/gdebug"
|
|
"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(gdebug.TestDataPath("tpl"))
|
|
v.SetAutoEncode(true)
|
|
result, err := v.Parse(context.TODO(), "encode.tpl", g.Map{
|
|
"title": "<b>my title</b>",
|
|
})
|
|
t.Assert(err, nil)
|
|
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(gdebug.TestDataPath("tpl", "encode.tpl"))
|
|
v.SetAutoEncode(true)
|
|
result, err := v.ParseContent(context.TODO(), tplContent, g.Map{
|
|
"title": "<b>my title</b>",
|
|
})
|
|
t.Assert(err, nil)
|
|
t.Assert(result, "<div><b>my title</b></div>")
|
|
})
|
|
}
|