File: elem_divider_test.go

package info (click to toggle)
golang-github-johanneskaufmann-html-to-markdown 2.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,080 kB
  • sloc: makefile: 3
file content (79 lines) | stat: -rw-r--r-- 1,607 bytes parent folder | download
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
package escape

import (
	"reflect"
	"testing"
)

func TestIsDivider(t *testing.T) {
	runs := []struct {
		name  string
		chars []byte

		expected []int
	}{
		{
			name:     "not needed",
			chars:    []byte{'a', 'b', 'c'},
			expected: []int{-1, -1, -1},
		},
		{
			name:     "two dashes",
			chars:    []byte{'-', '-'},
			expected: []int{-1, -1},
		},
		{
			name:     "char afterwards",
			chars:    []byte{'-', '-', '-', ' ', 'a'},
			expected: []int{-1, -1, -1, -1, -1},
		},

		{
			name:     "three dashes",
			chars:    []byte{'-', '-', '-'},
			expected: []int{3, -1, -1},
		},
		{
			name:     "five dashes",
			chars:    []byte{'-', '-', '-', '-', '-'},
			expected: []int{5, -1, -1, -1, -1},
		},
		{
			name:     "space after",
			chars:    []byte{'-', '-', '-', ' '},
			expected: []int{4, -1, -1, -1},
		},
		{
			name:     "newline after",
			chars:    []byte{'-', '-', '-', '\n'},
			expected: []int{3, -1, -1, -1},
		},

		{
			name:     "newline and space before",
			chars:    []byte{'\n', ' ', '-', '-', '-'},
			expected: []int{-1, -1, 3, -1, -1},
		},
		{
			name:     "with placeholders",
			chars:    []byte{'\n', ' ', placeholderByte, '-', placeholderByte, '-', placeholderByte, '-'},
			expected: []int{-1, -1, -1, 5, -1, -1, -1, -1},
		},
	}
	for _, run := range runs {

		t.Run(run.name, func(t *testing.T) {
			var actual []int
			for index := range run.chars {
				output := IsDivider(run.chars, index)

				actual = append(actual, output)
			}

			if !reflect.DeepEqual(actual, run.expected) {
				t.Errorf("expected %+v but got %+v", run.expected, actual)
			}
		})

	}
}