mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
eb76faa129
Unescaping post content after sanitizing it. This will prevent double escaping when summary is rendered by html/template package which does escaping by default. Fixes #340
35 lines
928 B
Go
35 lines
928 B
Go
package writefreely_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/guregu/null/zero"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/writeas/writefreely"
|
|
)
|
|
|
|
func TestPostSummary(t *testing.T) {
|
|
testCases := map[string]struct {
|
|
given writefreely.Post
|
|
expected string
|
|
}{
|
|
"no special chars": {givenPost("Content."), "Content."},
|
|
"HTML content": {givenPost("Content <p>with a</p> paragraph."), "Content with a paragraph."},
|
|
"content with escaped char": {givenPost("Content's all OK."), "Content's all OK."},
|
|
"multiline content": {givenPost(`Content
|
|
in
|
|
multiple
|
|
lines.`), "Content in multiple lines."},
|
|
}
|
|
|
|
for name, test := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
actual := test.given.Summary()
|
|
assert.Equal(t, test.expected, actual)
|
|
})
|
|
}
|
|
}
|
|
|
|
func givenPost(content string) writefreely.Post {
|
|
return writefreely.Post{Title: zero.StringFrom("Title"), Content: content}
|
|
}
|