-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain_test.go
78 lines (72 loc) · 1.81 KB
/
main_test.go
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
package main
import (
"testing"
"github.com/gomarkdown/markdown/parser"
)
func TestSampleTable(t *testing.T) {
input := `
| foo | bar | boo |
|-----|-----|-----|
| 1 | 3 | 5 |
| 2 | 4 | 6 |`
inputByte := []byte(input)
parser := parser.New()
output := parser.Parse(inputByte)
results := extractTextFromTableDocument(output)
expected := [][]string{
{"foo", "bar", "boo"},
{"1", "3", "5"},
{"2", "4", "6"}}
for i := 0; i < len(expected); i++ {
for j := 0; j < len(expected[i]); j++ {
if results[i][j] != expected[i][j] {
t.Errorf("results[%d][%d] is expected %s, but got=%s", i, j, results[i][j], expected[i][j])
}
}
}
}
func TestContainText(t *testing.T) {
input := `
This node is unrelated.
| foo | bar | boo |
|-----|-----|-----|
| 1 | 3 | 5 |
| 2 | 4 | 6 |`
inputByte := []byte(input)
parser := parser.New()
output := parser.Parse(inputByte)
results := extractTextFromTableDocument(output)
expected := [][]string{
{"foo", "bar", "boo"},
{"1", "3", "5"},
{"2", "4", "6"}}
for i := 0; i < len(expected); i++ {
for j := 0; j < len(expected[i]); j++ {
if results[i][j] != expected[i][j] {
t.Errorf("results[%d][%d] is expected %s, but got=%s", i, j, results[i][j], expected[i][j])
}
}
}
}
func TestEmptyCell(t *testing.T) {
input := `
| foo | bar | boo |
|-----|-----|-----|
| 1 | | 5 |
| 2 | 4 | |`
inputByte := []byte(input)
parser := parser.New()
output := parser.Parse(inputByte)
results := extractTextFromTableDocument(output)
expected := [][]string{
{"foo", "bar", "boo"},
{"1", "", "5"},
{"2", "4", ""}}
for i := 0; i < len(expected); i++ {
for j := 0; j < len(expected[i]); j++ {
if results[i][j] != expected[i][j] {
t.Errorf("results[%d][%d] is expected %s, but got=%s", i, j, results[i][j], expected[i][j])
}
}
}
}