1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-02-03 13:11:45 +02:00
ferret/pkg/runtime/values/string_test.go
Tim Voronov 2baac62d1e
Bugfix/#559 html escaping (#573)
Added jettison for json encoding
2020-11-23 20:12:04 -05:00

68 lines
1.4 KiB
Go

package values_test
import (
"encoding/json"
"fmt"
"github.com/MontFerret/ferret/pkg/runtime/values"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestString(t *testing.T) {
Convey(".Hash", t, func() {
Convey("It should calculate hash", func() {
v := values.NewString("a")
h := v.Hash()
So(h, ShouldBeGreaterThan, 0)
v2 := values.NewString("b")
So(h, ShouldNotEqual, v2.Hash())
})
Convey("Hash sum should be consistent", func() {
v := values.NewString("foobar")
So(v.Hash(), ShouldEqual, v.Hash())
})
})
Convey(".Length", t, func() {
Convey("Should return unicode length", func() {
str := values.NewString("Спутник")
So(str.Length(), ShouldEqual, 7)
})
})
Convey(".MarshalJSON", t, func() {
Convey("It should correctly serialize value", func() {
value := "foobar"
json1, err := json.Marshal(value)
So(err, ShouldBeNil)
json2, err := values.NewString(value).MarshalJSON()
So(err, ShouldBeNil)
So(json1, ShouldResemble, json2)
})
Convey("It should NOT escape HTML", func() {
value := "<div><span>Foobar</span></div>"
json1, err := json.Marshal(value)
So(err, ShouldBeNil)
json2, err := values.NewString(value).MarshalJSON()
So(err, ShouldBeNil)
So(json1, ShouldNotResemble, json2)
So(string(json2), ShouldEqual, fmt.Sprintf(`"%s"`, value))
})
})
}