-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparser_test.go
123 lines (119 loc) · 2.98 KB
/
parser_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
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
package table_restorer
import (
"bytes"
"os"
"testing"
)
func TestLineParser(t *testing.T) {
cases := []struct {
lines []byte
expected []interface{}
}{
{
lines: []byte(`1050,,29,"yellowbot\"","2013-04-28 22:47:31\\\\",2,"Old: \"God sends food","Richard A\\","tap.\nI","","b0405f762ccefbc2bcf27b0a8522ea6ee76f5be4","\\\\tripadvisor 2",
`),
expected: []interface{}{
float64(1050), // 0
nil, // 1
float64(29), // 2
"yellowbot\"", // 3
`2013-04-28 22:47:31\\`, // 4
float64(2), // 5
`Old: "God sends food`, // 6
"Richard A\\", // 7
"tap.\nI", // 8
"", // 9
"b0405f762ccefbc2bcf27b0a8522ea6ee76f5be4", // 10
`\\tripadvisor 2`, // 11
nil,
},
},
{
lines: []byte("`field`,`field2`\n" + `1050,,29,"yellowbot\"","2013-04-28 22:47:31\\\\",2,"Old: \"God sends food","Richard A\\","tap.\nI","","b0405f762ccefbc2bcf27b0a8522ea6ee76f5be4","\\\\tripadvisor 2",
`),
expected: []interface{}{
float64(1050), // 0
nil, // 1
float64(29), // 2
"yellowbot\"", // 3
`2013-04-28 22:47:31\\`, // 4
float64(2), // 5
`Old: "God sends food`, // 6
"Richard A\\", // 7
"tap.\nI", // 8
"", // 9
"b0405f762ccefbc2bcf27b0a8522ea6ee76f5be4", // 10
`\\tripadvisor 2`, // 11
nil,
},
},
{
lines: []byte(`"one value"` + "\n"),
expected: []interface{}{
"one value",
},
},
{
lines: []byte(`"` + "`" + `one value"` + "\n"),
expected: []interface{}{
"`one value",
},
},
{
lines: []byte("`header`\n" + `"` + "`" + `one value"` + "\n"),
expected: []interface{}{
"`one value",
},
},
}
for _, item := range cases {
t.Run("", func(t *testing.T) {
r := NewReader(bytes.NewReader(item.lines))
c := make(chan []interface{})
go r.Parse(c)
total := 0
for row := range c {
total++
if len(row) != len(item.expected) {
t.Logf("got row of %d cols", len(row))
t.Error()
} else {
for i, column := range row {
t.Logf("got column %d: %v", i, column)
if i > 20 {
t.Fatal()
}
if column != item.expected[i] {
t.Errorf("Expected (%d) %v, got %v", i, item.expected[i], column)
}
}
}
}
t.Logf("Total %d", total)
})
}
}
func TestLineParser2(t *testing.T) {
f, _ := os.Open("../test/rf.csv")
r := NewReader(f)
c := make(chan []interface{})
go r.Parse(c)
total := 0
for row := range c {
total++
if len(row) != 13 {
t.Logf("got row of %d cols", len(row))
for i, column := range row {
t.Logf("got column %d: %s", i, column)
if i > 20 {
t.Fatal()
}
//if column != expected[i] {
// t.Errorf("Expected %q, got %q", expected[i], column)
//}
}
t.Error()
}
}
t.Logf("Total %d", total)
}