mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
241b21b0fd
Primary motivation is documentation, but it will also hopefully simplify the code. Also, * Lower case the default output format names; this is in line with the custom ones (map keys) and how it's treated all the places. This avoids doing `stringds.EqualFold` everywhere. Closes #10896 Closes #10620
249 lines
5.6 KiB
Go
249 lines
5.6 KiB
Go
// Copyright 2017 The Hugo Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package transform_test
|
|
|
|
import (
|
|
"context"
|
|
"html/template"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/gohugoio/hugo/hugolib"
|
|
"github.com/gohugoio/hugo/tpl/transform"
|
|
|
|
qt "github.com/frankban/quicktest"
|
|
)
|
|
|
|
type tstNoStringer struct{}
|
|
|
|
func TestEmojify(t *testing.T) {
|
|
t.Parallel()
|
|
b := hugolib.NewIntegrationTestBuilder(
|
|
hugolib.IntegrationTestConfig{T: t},
|
|
).Build()
|
|
|
|
ns := transform.New(b.H.Deps)
|
|
|
|
for _, test := range []struct {
|
|
s any
|
|
expect any
|
|
}{
|
|
{":notamoji:", template.HTML(":notamoji:")},
|
|
{"I :heart: Hugo", template.HTML("I ❤️ Hugo")},
|
|
// errors
|
|
{tstNoStringer{}, false},
|
|
} {
|
|
|
|
result, err := ns.Emojify(test.s)
|
|
|
|
if bb, ok := test.expect.(bool); ok && !bb {
|
|
b.Assert(err, qt.Not(qt.IsNil))
|
|
continue
|
|
}
|
|
|
|
b.Assert(err, qt.IsNil)
|
|
b.Assert(result, qt.Equals, test.expect)
|
|
}
|
|
}
|
|
|
|
func TestHighlight(t *testing.T) {
|
|
t.Parallel()
|
|
b := hugolib.NewIntegrationTestBuilder(
|
|
hugolib.IntegrationTestConfig{T: t},
|
|
).Build()
|
|
|
|
ns := transform.New(b.H.Deps)
|
|
|
|
for _, test := range []struct {
|
|
s any
|
|
lang string
|
|
opts any
|
|
expect any
|
|
}{
|
|
{"func boo() {}", "go", "", "boo"},
|
|
{"func boo() {}", "go", nil, "boo"},
|
|
// Issue #4179
|
|
{`<Foo attr=" < "></Foo>`, "xml", "", `&lt;`},
|
|
{tstNoStringer{}, "go", "", false},
|
|
// Issue #9591
|
|
{strings.Repeat("AAA \n", 10), "bash", template.HTML("linenos=true,noClasses=false"), "line"},
|
|
} {
|
|
|
|
result, err := ns.Highlight(test.s, test.lang, test.opts)
|
|
|
|
if bb, ok := test.expect.(bool); ok && !bb {
|
|
b.Assert(err, qt.Not(qt.IsNil))
|
|
continue
|
|
}
|
|
|
|
b.Assert(err, qt.IsNil)
|
|
b.Assert(string(result), qt.Contains, test.expect.(string))
|
|
}
|
|
}
|
|
|
|
func TestCanHighlight(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
c := qt.New(t)
|
|
ns := &transform.Namespace{}
|
|
|
|
c.Assert(ns.CanHighlight("go"), qt.Equals, true)
|
|
c.Assert(ns.CanHighlight("foo"), qt.Equals, false)
|
|
}
|
|
|
|
func TestHTMLEscape(t *testing.T) {
|
|
t.Parallel()
|
|
b := hugolib.NewIntegrationTestBuilder(
|
|
hugolib.IntegrationTestConfig{T: t},
|
|
).Build()
|
|
|
|
ns := transform.New(b.H.Deps)
|
|
|
|
for _, test := range []struct {
|
|
s any
|
|
expect any
|
|
}{
|
|
{`"Foo & Bar's Diner" <y@z>`, `"Foo & Bar's Diner" <y@z>`},
|
|
{"Hugo & Caddy > Wordpress & Apache", "Hugo & Caddy > Wordpress & Apache"},
|
|
// errors
|
|
{tstNoStringer{}, false},
|
|
} {
|
|
|
|
result, err := ns.HTMLEscape(test.s)
|
|
|
|
if bb, ok := test.expect.(bool); ok && !bb {
|
|
b.Assert(err, qt.Not(qt.IsNil))
|
|
continue
|
|
}
|
|
|
|
b.Assert(err, qt.IsNil)
|
|
b.Assert(result, qt.Equals, test.expect)
|
|
}
|
|
}
|
|
|
|
func TestHTMLUnescape(t *testing.T) {
|
|
t.Parallel()
|
|
b := hugolib.NewIntegrationTestBuilder(
|
|
hugolib.IntegrationTestConfig{T: t},
|
|
).Build()
|
|
|
|
ns := transform.New(b.H.Deps)
|
|
|
|
for _, test := range []struct {
|
|
s any
|
|
expect any
|
|
}{
|
|
{`"Foo & Bar's Diner" <y@z>`, `"Foo & Bar's Diner" <y@z>`},
|
|
{"Hugo & Caddy > Wordpress & Apache", "Hugo & Caddy > Wordpress & Apache"},
|
|
// errors
|
|
{tstNoStringer{}, false},
|
|
} {
|
|
|
|
result, err := ns.HTMLUnescape(test.s)
|
|
|
|
if bb, ok := test.expect.(bool); ok && !bb {
|
|
b.Assert(err, qt.Not(qt.IsNil))
|
|
continue
|
|
}
|
|
|
|
b.Assert(err, qt.IsNil)
|
|
b.Assert(result, qt.Equals, test.expect)
|
|
}
|
|
}
|
|
|
|
func TestMarkdownify(t *testing.T) {
|
|
t.Parallel()
|
|
b := hugolib.NewIntegrationTestBuilder(
|
|
hugolib.IntegrationTestConfig{T: t},
|
|
).Build()
|
|
|
|
ns := transform.New(b.H.Deps)
|
|
|
|
for _, test := range []struct {
|
|
s any
|
|
expect any
|
|
}{
|
|
{"Hello **World!**", template.HTML("Hello <strong>World!</strong>")},
|
|
{[]byte("Hello Bytes **World!**"), template.HTML("Hello Bytes <strong>World!</strong>")},
|
|
{tstNoStringer{}, false},
|
|
} {
|
|
|
|
result, err := ns.Markdownify(context.Background(), test.s)
|
|
|
|
if bb, ok := test.expect.(bool); ok && !bb {
|
|
b.Assert(err, qt.Not(qt.IsNil))
|
|
continue
|
|
}
|
|
|
|
b.Assert(err, qt.IsNil)
|
|
b.Assert(result, qt.Equals, test.expect)
|
|
}
|
|
}
|
|
|
|
// Issue #3040
|
|
func TestMarkdownifyBlocksOfText(t *testing.T) {
|
|
t.Parallel()
|
|
b := hugolib.NewIntegrationTestBuilder(
|
|
hugolib.IntegrationTestConfig{T: t},
|
|
).Build()
|
|
|
|
ns := transform.New(b.H.Deps)
|
|
|
|
text := `
|
|
#First
|
|
|
|
This is some *bold* text.
|
|
|
|
## Second
|
|
|
|
This is some more text.
|
|
|
|
And then some.
|
|
`
|
|
|
|
result, err := ns.Markdownify(context.Background(), text)
|
|
b.Assert(err, qt.IsNil)
|
|
b.Assert(result, qt.Equals, template.HTML(
|
|
"<p>#First</p>\n<p>This is some <em>bold</em> text.</p>\n<h2 id=\"second\">Second</h2>\n<p>This is some more text.</p>\n<p>And then some.</p>\n"))
|
|
}
|
|
|
|
func TestPlainify(t *testing.T) {
|
|
t.Parallel()
|
|
b := hugolib.NewIntegrationTestBuilder(
|
|
hugolib.IntegrationTestConfig{T: t},
|
|
).Build()
|
|
|
|
ns := transform.New(b.H.Deps)
|
|
|
|
for _, test := range []struct {
|
|
s any
|
|
expect any
|
|
}{
|
|
{"<em>Note:</em> blah <b>blah</b>", "Note: blah blah"},
|
|
{"<div data-action='click->my-controller#doThing'>qwe</div>", "qwe"},
|
|
// errors
|
|
{tstNoStringer{}, false},
|
|
} {
|
|
|
|
result, err := ns.Plainify(test.s)
|
|
|
|
if bb, ok := test.expect.(bool); ok && !bb {
|
|
b.Assert(err, qt.Not(qt.IsNil))
|
|
continue
|
|
}
|
|
|
|
b.Assert(err, qt.IsNil)
|
|
b.Assert(result, qt.Equals, test.expect)
|
|
}
|
|
}
|