1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
package domutils
import (
"context"
"testing"
"github.com/JohannesKaufmann/dom"
"github.com/JohannesKaufmann/html-to-markdown/v2/internal/tester"
"golang.org/x/net/html"
)
func TestAddSpace(t *testing.T) {
runs := []struct {
desc string
input string
expected string
}{
{
desc: "space needed before & after",
input: `before<strong><code>inline code</code></strong>after`,
expected: `
├─body
│ ├─#text "before "
│ ├─strong
│ │ ├─code
│ │ │ ├─#text "inline code"
│ ├─#text " after"
`,
},
{
desc: "no surrounding text",
input: `<strong><code>inline code</code></strong>`,
expected: `
├─body
│ ├─strong
│ │ ├─code
│ │ │ ├─#text "inline code"
`,
},
}
for _, run := range runs {
t.Run(run.desc, func(t *testing.T) {
doc := tester.Parse(t, run.input, "")
AddSpace(context.Background(), doc, func(n *html.Node) bool {
name := dom.NodeName(n)
if name == "strong" || name == "b" {
return true
}
if name == "em" || name == "i" {
return true
}
return false
}, func(n *html.Node) bool {
return dom.NodeName(n) == "code"
})
tester.ExpectRepresentation(t, doc, "output", run.expected)
})
}
}
|