-
Notifications
You must be signed in to change notification settings - Fork 0
/
slice_reader.go
86 lines (65 loc) · 1.46 KB
/
slice_reader.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
package testmatrix
type sliceReader struct {
matrix [][]interface{}
position int
}
func NewMatrixReader(testMatrix [][]interface{}) *sliceReader {
return &sliceReader{matrix: testMatrix, position: 0}
}
func (reader *sliceReader) ReadHeaders() (Headers, error) {
matrix := reader.matrix
var headers Headers
if len(matrix) < 1 {
return headers, EOF
}
headers = make(Headers, len(matrix[0])-1)
if reader.position != 0 {
return headers, InvalidPositionErr
}
for index, header := range matrix[0] {
if index == 0 {
continue
}
textHeader, ok := header.(string)
if !ok {
return headers, UnparsableErr
}
headers[index-1] = textHeader
}
reader.position += 1
return headers, nil
}
func (reader *sliceReader) Read() (ResultsRow, error) {
matrix := reader.matrix
results := ResultsRow{}
expecteds := make([]bool, len(matrix)-1)
results.Expected = expecteds
if reader.position == 0 {
return results, InvalidPositionErr
}
pos := reader.position
if pos >= len(matrix) {
return results, EOF
}
for index, result := range matrix[pos] {
if index == 0 {
subject, ok := result.(string)
if !ok {
return results, UnparsableErr
}
results.Subject = subject
continue
}
expectedText, ok := result.(string)
if !ok {
return results, UnparsableErr
}
expected, ok := StringToBool(expectedText)
if !ok {
return results, UnparsableErr
}
expecteds[index-1] = expected
}
reader.position += 1
return results, nil
}