123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package sft
- import (
- "testing"
- )
- type Something struct {
- First int
- Second string
- }
- const expected = `Something here 15
- And something else here and the string`
- func TestToString(t *testing.T) {
- const templateString = `Something here {{.First}}
- And something else here {{.Second}}`
- test := Something{First: 15, Second: "and the string"}
- result := ToString(templateString, test)
- if expected != result {
- t.Errorf("Wrong result: %v", result)
- }
- }
- func TestToStringBadTemplate(t *testing.T) {
- const templateString = `Something here {{.First()}}
- And something else here {{.Second}}`
- test := Something{First: 15, Second: "and the string"}
- result := ToString(templateString, test)
- if expected == result {
- t.Error("It should fail on template parsing!")
- }
- }
- func TestToStringBadObject(t *testing.T) {
- const templateString = `Something here {{.First}}
- And something else here {{.Second}}`
- type Something struct {
- Third int
- Second string
- }
- test := Something{Third: 15, Second: "and the string"}
- result := ToString(templateString, test)
- if expected == result {
- t.Error("It should fail!")
- }
- }
|