-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
119 lines (96 loc) · 3.91 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
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
// Copyright © 2024 Genome Research Limited
// Authors:
// Sendu Bala <sb10@sanger.ac.uk>.
// Dan Elia <de7@sanger.ac.uk>.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package main
import (
"compress/gzip"
"os"
"strings"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestParseStats(t *testing.T) {
Convey("Given a parser and reader", t, func() {
f, err := os.Open("test.stats.gz")
So(err, ShouldBeNil)
defer f.Close()
gr, err := gzip.NewReader(f)
So(err, ShouldBeNil)
defer gr.Close()
p := NewStatsParser(gr, "prefix")
So(p, ShouldNotBeNil)
Convey("you can get extract info for all entries", func() {
i := 0
for p.Scan() {
if i == 0 {
So(string(p.Path), ShouldEqual, "/lustre/scratch122") //nolint:lll
So(p.EntryType, ShouldEqual, dirType)
} else if i == 1 {
So(string(p.Path), ShouldEqual, "/lustre/scratch122/tol/scratch/prefect_test/d084946a-8577-4ffe-aafd-f93ba8c704e0") //nolint:lll
}
i++
}
So(i, ShouldEqual, 18890)
So(p.Err(), ShouldBeNil)
})
})
Convey("Scan generates Err() when", t, func() {
prefix := "prefix"
Convey("first column is not base64 encoded", func() {
p := NewStatsParser(strings.NewReader("this is invalid since it has spaces\t1\t1\t1\t1\t1\t1\tf\t1\t1\td\n"), prefix)
So(p.Scan(), ShouldBeFalse)
So(p.Err(), ShouldEqual, ErrBadPath)
})
Convey("there are not enough tab separated columns", func() {
encodedPath := "L2x1c3RyZS9zY3JhdGNoMTIyL3RvbC90ZWFtcy9ibGF4dGVyL3VzZXJzL2FtNzUvYXNzZW1ibGllcy9kYXRhc2V0L2lsWGVzU2V4czEuMl9nZW5vbWljLmZuYQ==" //nolint:lll
p := NewStatsParser(strings.NewReader(encodedPath+"\t1\t1\t1\t1\t1\t1\tf\t1\t1\td\n"), prefix)
So(p.Scan(), ShouldBeTrue)
So(p.Err(), ShouldBeNil)
p = NewStatsParser(strings.NewReader(encodedPath+"\t1\t1\t1\t1\t1\n"), prefix)
So(p.Scan(), ShouldBeFalse)
So(p.Err(), ShouldEqual, ErrTooFewColumns)
p = NewStatsParser(strings.NewReader(encodedPath+"\t1\t1\t1\t1\n"), prefix)
So(p.Scan(), ShouldBeFalse)
So(p.Err(), ShouldEqual, ErrTooFewColumns)
p = NewStatsParser(strings.NewReader(encodedPath+"\t1\t1\t1\n"), prefix)
So(p.Scan(), ShouldBeFalse)
So(p.Err(), ShouldEqual, ErrTooFewColumns)
p = NewStatsParser(strings.NewReader(encodedPath+"\t1\t1\n"), prefix)
So(p.Scan(), ShouldBeFalse)
So(p.Err(), ShouldEqual, ErrTooFewColumns)
p = NewStatsParser(strings.NewReader(encodedPath+"\t1\n"), prefix)
So(p.Scan(), ShouldBeFalse)
So(p.Err(), ShouldEqual, ErrTooFewColumns)
p = NewStatsParser(strings.NewReader(encodedPath+"\n"), prefix)
So(p.Scan(), ShouldBeFalse)
So(p.Err(), ShouldEqual, ErrTooFewColumns)
Convey("but not for blank lines", func() {
p = NewStatsParser(strings.NewReader("\n"), "prefix")
So(p.Scan(), ShouldBeTrue)
So(p.Err(), ShouldBeNil)
p := NewStatsParser(strings.NewReader(""), "prefix")
So(p.Scan(), ShouldBeFalse)
So(p.Err(), ShouldBeNil)
})
})
})
}