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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
package domutils
import (
"context"
"testing"
"github.com/JohannesKaufmann/html-to-markdown/v2/internal/tester"
)
func TestRenameFakeSpans(t *testing.T) {
runs := []struct {
desc string
input string
expected string
}{
{
desc: "don't change other tags",
input: `<p>a</p> <p>b</p>`,
expected: `
├─body
│ ├─p
│ │ ├─#text "a"
│ ├─#text " "
│ ├─p
│ │ ├─#text "b"
`,
},
{
desc: "don't change simple span",
input: `<span>a</span>`,
expected: `
├─body
│ ├─span
│ │ ├─#text "a"
`,
},
{
desc: "don't change span with inline element",
input: `<span><a>link content</a></span>`,
expected: `
├─body
│ ├─span
│ │ ├─a
│ │ │ ├─#text "link content"
`,
},
{
desc: "change span with block element",
input: `<span><p>paragraph content</p></span>`,
expected: `
├─body
│ ├─div
│ │ ├─p
│ │ │ ├─#text "paragraph content"
`,
},
{
desc: "change multiple spans with block element",
input: `<span><span><p>paragraph content</p></span></span>`,
expected: `
├─body
│ ├─div
│ │ ├─div
│ │ │ ├─p
│ │ │ │ ├─#text "paragraph content"
`,
},
}
for _, run := range runs {
t.Run(run.desc, func(t *testing.T) {
doc := tester.Parse(t, run.input, "")
RenameFakeSpans(context.TODO(), doc)
tester.ExpectRepresentation(t, doc, "output", run.expected)
})
}
}
|