-
Notifications
You must be signed in to change notification settings - Fork 5
/
rubbish_test.go
299 lines (287 loc) · 7.42 KB
/
rubbish_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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
package aklapi
import (
_ "embed"
"encoding/json"
"io"
"net/http"
"net/http/httptest"
"reflect"
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
//go:generate curl -L https://www.aucklandcouncil.govt.nz/rubbish-recycling/rubbish-recycling-collections/Pages/collection-day-detail.aspx?an=12342478585 -o test_assets/500-queen-street.html
//go:generate curl -L https://www.aucklandcouncil.govt.nz/rubbish-recycling/rubbish-recycling-collections/Pages/collection-day-detail.aspx?an=12341511281 -o test_assets/1-luanda-drive.html
// Test data, run go:generate to update, then update dates in tests
// accordingly.
var (
//go:embed "test_assets/1-luanda-drive.html"
taRsd1LuandaDrive string
//go:embed "test_assets/500-queen-street.html"
taCom500QueenStreet string
)
func Test_parse(t *testing.T) {
type args struct {
r io.Reader
}
tests := []struct {
name string
args args
want *CollectionDayDetailResult
wantErr bool
}{
{"1 Luanda Drive, Ranui",
args{strings.NewReader(taRsd1LuandaDrive)},
&CollectionDayDetailResult{
Collections: []RubbishCollection{
{
Day: "Tuesday 27 August",
Date: adjustYear(time.Date(0, 8, 27, 0, 0, 0, 0, defaultLoc)),
Rubbish: true,
Recycle: false,
FoodScraps: false,
},
{
Day: "Tuesday 27 August",
Date: adjustYear(time.Date(0, 8, 27, 0, 0, 0, 0, defaultLoc)),
Rubbish: false,
Recycle: false,
FoodScraps: true,
},
{
Day: "Tuesday 3 September",
Date: adjustYear(time.Date(0, 9, 3, 0, 0, 0, 0, defaultLoc)),
Rubbish: false,
Recycle: true,
FoodScraps: false,
},
},
Address: nil,
},
false},
{"500 Queen Street, CBD",
args{strings.NewReader(taCom500QueenStreet)},
&CollectionDayDetailResult{
Collections: []RubbishCollection{
{
Day: "Thursday 22 August",
Date: adjustYear(time.Date(0, 8, 22, 0, 0, 0, 0, defaultLoc)),
Rubbish: true,
Recycle: false,
},
{
Day: "Thursday 22 August",
Date: adjustYear(time.Date(0, 8, 22, 0, 0, 0, 0, defaultLoc)),
Rubbish: false,
Recycle: true,
},
},
Address: nil,
},
false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := parse(tt.args.r)
if (err != nil) != tt.wantErr {
t.Errorf("parse() error = %v, wantErr %v", err, tt.wantErr)
return
}
assert.Equal(t, tt.want, got)
})
}
}
func TestCollectionDayDetail(t *testing.T) {
type args struct {
addr string
}
tests := []struct {
name string
testSrv *httptest.Server
args args
want *CollectionDayDetailResult
wantErr bool
}{
{"main branch",
httptest.NewServer(testMux()),
args{addr: "xxx"},
&CollectionDayDetailResult{
Collections: []RubbishCollection{
{
Day: "Tuesday 27 August",
Date: adjustYear(time.Date(0, 8, 27, 0, 0, 0, 0, defaultLoc)),
Rubbish: true,
Recycle: false,
FoodScraps: false,
},
{
Day: "Tuesday 27 August",
Date: adjustYear(time.Date(0, 8, 27, 0, 0, 0, 0, defaultLoc)),
Rubbish: false,
Recycle: false,
FoodScraps: true,
},
{
Day: "Tuesday 3 September",
Date: adjustYear(time.Date(0, 9, 3, 0, 0, 0, 0, defaultLoc)),
Rubbish: false,
Recycle: true,
FoodScraps: false,
},
},
Address: &Address{
ACRateAccountKey: "42",
Address: "Red Square",
Suggestion: "Red Square",
},
},
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
defer tt.testSrv.Close()
oldAddrURI := addrURI
oldcollectionDayURI := collectionDayURI
defer func() { addrURI = oldAddrURI; collectionDayURI = oldcollectionDayURI }()
addrURI = tt.testSrv.URL + "/addr/"
collectionDayURI = tt.testSrv.URL + "/rubbish/?an=%s"
got, err := CollectionDayDetail(tt.args.addr)
if (err != nil) != tt.wantErr {
t.Errorf("CollectionDayDetail() error = %v, wantErr %v", err, tt.wantErr)
return
}
assert.Equal(t, tt.want, got)
})
}
}
func TestCollectionDayDetailResult_NextRubbish(t *testing.T) {
type fields struct {
Collections []RubbishCollection
Address *Address
}
tests := []struct {
name string
fields fields
want time.Time
}{
{"rubbish",
fields{
Collections: []RubbishCollection{
{Day: "Someday",
Date: time.Date(2000, 2, 1, 0, 0, 0, 0, defaultLoc),
Rubbish: false,
Recycle: true,
FoodScraps: false,
},
{Day: "This is the day",
Date: time.Date(1991, 9, 16, 0, 0, 0, 0, defaultLoc),
Rubbish: true,
Recycle: false,
FoodScraps: false,
},
},
},
time.Date(1991, 9, 16, 0, 0, 0, 0, defaultLoc),
},
{"not found", fields{Collections: []RubbishCollection{}}, time.Time{}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
res := &CollectionDayDetailResult{
Collections: tt.fields.Collections,
Address: tt.fields.Address,
}
if got := res.NextRubbish(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("CollectionDayDetailResult.NextRubbish() = %v, want %v", got, tt.want)
}
})
}
}
func TestCollectionDayDetailResult_NextRecycle(t *testing.T) {
type fields struct {
Collections []RubbishCollection
Address *Address
}
tests := []struct {
name string
fields fields
want time.Time
}{
{"rubbish",
fields{
Collections: []RubbishCollection{
{Day: "Someday",
Date: time.Date(2000, 2, 1, 0, 0, 0, 0, defaultLoc),
Rubbish: true,
Recycle: false,
FoodScraps: false,
},
{Day: "This is the day",
Date: time.Date(1991, 9, 16, 0, 0, 0, 0, defaultLoc),
Rubbish: true,
Recycle: true,
FoodScraps: false,
},
},
},
time.Date(1991, 9, 16, 0, 0, 0, 0, defaultLoc),
},
{"not found", fields{Collections: []RubbishCollection{}}, time.Time{}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
res := &CollectionDayDetailResult{
Collections: tt.fields.Collections,
Address: tt.fields.Address,
}
if got := res.NextRecycle(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("CollectionDayDetailResult.NextRecycle() = %v, want %v", got, tt.want)
}
})
}
}
func TestRubbishCollection_parseDate(t *testing.T) {
type fields struct {
Day string
Date time.Time
Rubbish bool
Recycle bool
}
tests := []struct {
name string
fields fields
wantErr bool
}{
{"some date", fields{Day: "Monday 16 September"}, false},
{"invalid date", fields{Day: "16 September"}, true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
r := &RubbishCollection{
Day: tt.fields.Day,
Date: tt.fields.Date,
Rubbish: tt.fields.Rubbish,
Recycle: tt.fields.Recycle,
}
if err := r.parseDate(); (err != nil) != tt.wantErr {
t.Errorf("RubbishCollection.parseDate() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func testMux() http.Handler {
mux := http.NewServeMux()
mux.HandleFunc("/addr/", func(w http.ResponseWriter, r *http.Request) {
data, err := json.Marshal(AddrResponse{*testAddr})
if err != nil {
panic(err)
}
w.Write(data)
})
mux.HandleFunc("/rubbish/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(taRsd1LuandaDrive))
})
return mux
}