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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
package escape
import (
"reflect"
"testing"
)
func TestIsFencedCode(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: "only two",
chars: []byte{placeholderByte, '`', placeholderByte, '`', 'a'},
expected: []int{-1, -1, -1, -1, -1},
},
{
name: "other chars before",
chars: []byte{'a', ' ', placeholderByte, '`', placeholderByte, '`', placeholderByte, '`', 'a'},
expected: []int{-1, -1, -1, -1, -1, -1, -1, -1, -1},
},
{
name: "just beginning",
chars: []byte{placeholderByte, '`', placeholderByte, '`', placeholderByte, '`', 'a'},
expected: []int{-1, 5, -1, -1, -1, -1, -1},
},
{
name: "just beginning (with tilde)",
chars: []byte{placeholderByte, '~', placeholderByte, '~', placeholderByte, '~', 'a'},
expected: []int{-1, 5, -1, -1, -1, -1, -1},
},
{
name: "just beginning (with space before)",
chars: []byte{' ', placeholderByte, '`', placeholderByte, '`', placeholderByte, '`', 'a'},
expected: []int{-1, -1, 5, -1, -1, -1, -1, -1},
},
{
name: "just beginning (with newline before)",
chars: []byte{'\n', placeholderByte, '`', placeholderByte, '`', placeholderByte, '`', 'a'},
expected: []int{-1, -1, 5, -1, -1, -1, -1, -1},
},
{
name: "simple",
chars: []byte{placeholderByte, '`', placeholderByte, '`', placeholderByte, '`', '\n', 'a', '\n', placeholderByte, '`', placeholderByte, '`', placeholderByte, '`'},
expected: []int{-1, 5, -1, -1, -1, -1, -1, -1, -1, -1, 5, -1, -1, -1, -1},
},
{
name: "only one end delimiter",
chars: []byte{placeholderByte, '`', placeholderByte, '`', placeholderByte, '`', '\n', 'a', '\n', placeholderByte, '`'},
expected: []int{-1, 5, -1, -1, -1, -1, -1, -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 := IsFencedCode(run.chars, index)
actual = append(actual, output)
}
if !reflect.DeepEqual(actual, run.expected) {
t.Errorf("expected %+v (l:%d) but got %+v (l:%d)", run.expected, len(run.expected), actual, len(actual))
}
})
}
}
func TestIsInlineCode(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: "one delimiter inside text, no end delimiter",
// chars: []byte{'a', '`', 'b', ' ', '\n', '\n', 'a'},
// expected: []int{-1, -1, -1},
// },
{
name: "simple",
chars: []byte{'`', 'a', '`'},
// expected: []int{1, -1, -1},
expected: []int{1, -1, 1},
},
// {
// name: "without content",
// chars: []byte{'`', '`'},
// expected: []int{1, -1},
// },
// {
// name: "code inside normal text",
// chars: []byte{'a', '`', 'b', '`', 'a'},
// expected: []int{-1, 3, -1, -1, -1},
// },
// TODO: also nested: ``some `code` text``
}
for _, run := range runs {
t.Run(run.name, func(t *testing.T) {
var actual []int
for index := range run.chars {
output := IsInlineCode(run.chars, index)
actual = append(actual, output)
}
if !reflect.DeepEqual(actual, run.expected) {
t.Errorf("expected %+v but got %+v", run.expected, actual)
}
})
}
}
|