File: add_space_test.go

package info (click to toggle)
golang-github-johanneskaufmann-html-to-markdown 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,084 kB
  • sloc: makefile: 3
file content (61 lines) | stat: -rw-r--r-- 1,263 bytes parent folder | download | duplicates (2)
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)
		})
	}
}