-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreader_test.go
111 lines (74 loc) · 1.54 KB
/
reader_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
package csvdict
import (
"bufio"
"io"
"os"
"testing"
)
func TestReader(t *testing.T) {
path := "fixtures/test.csv"
r, err := os.Open(path)
if err != nil {
t.Fatalf("Failed to open %s, %v", path, err)
}
defer r.Close()
scanner := bufio.NewScanner(r)
count_lines := 0
for scanner.Scan() {
count_lines += 1
}
err = scanner.Err()
if err != nil {
t.Fatalf("Scanner reported an error, %v", err)
}
_, err = r.Seek(0, 0)
if err != nil {
t.Fatalf("Failed to seek file to 0, %v", err)
}
csv_r, err := NewReader(r)
if err != nil {
t.Fatalf("Failed to create reader, %v", err)
}
// Test the Read method
count_rows := 0
for {
row, err := csv_r.Read()
if err == io.EOF {
break
}
if err != nil {
t.Fatalf("Failed to read row, %v", err)
}
_, ok := row["label"]
if !ok {
t.Fatalf("Row is missing 'label' column")
}
count_rows += 1
}
if count_rows != count_lines-1 {
t.Fatalf("Expected %d rows, but got %d", count_lines-1, count_rows)
}
// Test the Iterator method
_, err = r.Seek(0, 0)
if err != nil {
t.Fatalf("Failed to seek file to 0, %v", err)
}
csv_r, err = NewReader(r)
if err != nil {
t.Fatalf("Failed to create reader, %v", err)
}
count_rows = 0
for row, err := range csv_r.Iterate() {
if err != nil {
t.Fatalf("Failed to iterate row, %v", err)
}
_, ok := row["label"]
if !ok {
t.Fatalf("Row is missing 'label' column")
}
count_rows += 1
}
if count_rows != count_lines-1 {
t.Fatalf("Expected %d rows, but got %d", count_lines-1, count_rows)
}
}