-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscraper_test.go
412 lines (303 loc) · 7.41 KB
/
scraper_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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
package main
import (
"os"
"strings"
"testing"
"time"
"github.com/PuerkitoBio/goquery"
)
func Test_getRaceIDfromHTML(t *testing.T) {
hb := &Horsebase{}
hb = hb.New()
url := getRaceIDfromHTML("http://db.netkeiba.com/race/201703010103")
expected := "201703010103"
if url != expected {
t.Fatalf("RaceID is not expected:%s", url)
}
}
func Test_calcDifTime(t *testing.T) {
var result RaceResultData
var ftime time.Time
var text string
text = "0:20.8"
var racedata RaceData
fp, err := os.Open("./test/201709030109.html")
if err != nil {
t.Fatalf("%s", err)
}
defer fp.Close()
doc, err := goquery.NewDocumentFromReader(fp)
if err != nil {
t.Fatalf("%s", err)
}
s := doc.Find("title").First()
title := strings.Split(s.Text(), "|")
racedata.Date = getRaceDate(title[1])
s = doc.Find("td").First().Next().Next().Next().Next().Next().Next().Next()
ftime = racedata.getRaceTime(text)
result.Time = racedata.getRaceTime(s.Text())
result.DifTime = calcDifTime(result, ftime)
if 0 > result.DifTime {
t.Fatalf("calcDifTime error:%s", err)
t.Fatalf("Diftime:%f", result.DifTime)
}
}
func Test_checkOldestData(t *testing.T) {
hb := &Horsebase{}
hb = hb.New()
if !hb.checkOldestData("/?pid=race_top&date=20170506") {
t.Fatalf("checkOldestData error")
}
}
func Test_convAgeGr(t *testing.T) {
agegr := convAgeGr("2歳")
if agegr != AgeGrTwo {
t.Fatalf("convAgeGr error:%d", agegr)
}
agegr = convAgeGr("3歳")
if agegr != AgeGrThree {
t.Fatalf("convAgeGr error:%d", agegr)
}
agegr = convAgeGr("3歳以上")
if agegr != AgeGrThreeOver {
t.Fatalf("convAgeGr error:%d", agegr)
}
agegr = convAgeGr("4歳以上")
if agegr != AgeGrFourOver {
t.Fatalf("convAgeGr error:%d", agegr)
}
agegr = convAgeGr("5歳以上")
if agegr != -1 {
t.Fatalf("convAgeGr error:%d", agegr)
}
}
func Test_convBelonging(t *testing.T) {
belonging := convBelonging("東")
if belonging != BelongingEast {
t.Fatalf("convBelonging error:%d", belonging)
}
belonging = convBelonging("西")
if belonging != BelongingWest {
t.Fatalf("convBelonging error:%d", belonging)
}
belonging = convBelonging("地")
if belonging != BelongingLocal {
t.Fatalf("convBelonging error:%d", belonging)
}
belonging = convBelonging("外")
if belonging != BelongingForeign {
t.Fatalf("convBelonging error:%d", belonging)
}
belonging = convBelonging("他")
if belonging != -1 {
t.Fatalf("convBelonging error:%d", belonging)
}
}
func Test_convCond(t *testing.T) {
cond := convCond("良")
if cond != ConditionGood {
t.Fatalf("convCond error:%d", cond)
}
cond = convCond("稍重")
if cond != ConditionYielding {
t.Fatalf("convCond error:%d", cond)
}
cond = convCond("重")
if cond != ConditionSoft {
t.Fatalf("convCond error:%d", cond)
}
cond = convCond("不良")
if cond != ConditionHeavy {
t.Fatalf("convCond error:%d", cond)
}
cond = convCond("他")
if cond != -1 {
t.Fatalf("convCond error:%d", cond)
}
}
func Test_convCorner(t *testing.T) {
corner := convCorner("内")
if corner != InnerCourse {
t.Fatalf("convCorner error:%d", corner)
}
corner = convCorner("外")
if corner != OuterCourse {
t.Fatalf("convCorner error:%d", corner)
}
corner = convCorner("他")
if corner != -1 {
t.Fatalf("convCorner error:%d", corner)
}
}
func Test_convCourse(t *testing.T) {
course := convCourse("右")
if course != RightTurn {
t.Fatalf("convCourse error:%d", course)
}
course = convCourse("左")
if course != LeftTurn {
t.Fatalf("convCourse error:%d", course)
}
course = convCourse("直線")
if course != Straight {
t.Fatalf("convCourse error:%d", course)
}
course = convCourse("他")
if course != -1 {
t.Fatalf("convCourse error:%d", course)
}
}
func Test_convGrade(t *testing.T) {
grade := convGrade("新馬")
if grade != GradeDebut {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("未勝利")
if grade != GradeNoWin {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("500万下")
if grade != Grade500 {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("1000万下")
if grade != Grade1000 {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("1600万下")
if grade != Grade1600 {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("オープン")
if grade != GradeOP {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("G")
if grade != GradeG {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("G3")
if grade != GradeG3 {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("G2")
if grade != GradeG2 {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("G1")
if grade != GradeG1 {
t.Fatalf("convGrade error:%d", grade)
}
grade = convGrade("他")
if grade != -1 {
t.Fatalf("convGrade error:%d", grade)
}
}
func Test_convSex(t *testing.T) {
sex := convSex("牡")
if sex != Male {
t.Fatalf("convSex error:%d", sex)
}
sex = convSex("牝")
if sex != Female {
t.Fatalf("convSex error:%d", sex)
}
sex = convSex("セ")
if sex != Gelding {
t.Fatalf("convSex error:%d", sex)
}
sex = convSex("他")
if sex != -1 {
t.Fatalf("convSex error:%d", sex)
}
}
func Test_convSurface(t *testing.T) {
surface := convSurface("芝")
if surface != Turf {
t.Fatalf("convSurface error:%d", surface)
}
surface = convSurface("ダ")
if surface != Dirt {
t.Fatalf("convSurface error:%d", surface)
}
surface = convSurface("障")
if surface != Hurdle {
t.Fatalf("convSurface error:%d", surface)
}
surface = convSurface("他")
if surface != -1 {
t.Fatalf("convSurface error:%d", surface)
}
}
func Test_convWeather(t *testing.T) {
weather := convWeather("晴")
if weather != Sunny {
t.Fatalf("convWeather error:%d", weather)
}
weather = convWeather("雨")
if weather != Rainy {
t.Fatalf("convWeather error:%d", weather)
}
weather = convWeather("雪")
if weather != Snowy {
t.Fatalf("convWeather error:%d", weather)
}
weather = convWeather("曇")
if weather != Cloudy {
t.Fatalf("convWeather error:%d", weather)
}
weather = convWeather("小雨")
if weather != Drizzle {
t.Fatalf("convWeather error:%d", weather)
}
weather = convWeather("他")
if weather != -1 {
t.Fatalf("convWeather error:%d", weather)
}
}
func Test_getGradeStr(t *testing.T) {
data := strings.Split("2007年9月1日 3回新潟7日目 サラ系3歳以上500万下", "回")
grade := getGradeStr(data)
if grade != "3歳以上500万下" {
t.Fatalf("getGradeStr error:%s", grade)
}
data = strings.Split("2007年12月1日 5回阪神1日目 障害3歳以上未勝利", "回")
grade = getGradeStr(data)
if grade != "3歳以上未勝利" {
t.Fatalf("getGradeStr error:%s", grade)
}
}
func Test_getAgeGr(t *testing.T) {
grade := "3歳以上1600万下"
ageGr, index := getAgeGr(grade)
if ageGr != AgeGrThreeOver {
t.Fatalf("getAgeGr error ageGr:%d", ageGr)
}
if index != 10 {
t.Fatalf("getAgeGr index:%d", index)
}
grade = "2歳"
ageGr, index = getAgeGr(grade)
if ageGr != AgeGrTwo {
t.Fatalf("getAgeGr error ageGr:%d", ageGr)
}
if index != 4 {
t.Fatalf("getAgeGr index:%d", index)
}
grade = "3歳"
ageGr, index = getAgeGr(grade)
if ageGr != AgeGrThree {
t.Fatalf("getAgeGr error ageGr:%d", ageGr)
}
if index != 4 {
t.Fatalf("getAgeGr index:%d", index)
}
grade = "4歳以上"
ageGr, index = getAgeGr(grade)
if ageGr != AgeGrFourOver {
t.Fatalf("getAgeGr error ageGr:%d", ageGr)
}
if index != 10 {
t.Fatalf("getAgeGr index:%d", index)
}
}