-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcrawler_nonmajor_test.go
492 lines (489 loc) · 27.8 KB
/
crawler_nonmajor_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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/* This file is auto-generated! Any changes to this file will be lost! */
package woothee
import (
"testing"
)
func Test_crawler_nonmajor(t *testing.T) {
var result *Result
var err error
result, err = Parse(`emBot-GalaBuzz/Nutch-1.0 (http://emining.jp/; [email protected])`)
if err != nil {
t.Errorf(`Failed to parse 'emBot-GalaBuzz/Nutch-1.0 (http://emining.jp/; [email protected])': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `emBot-GalaBuzz/Nutch-1.0 (http://emining.jp/; [email protected])`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `emBot-GalaBuzz/Nutch-1.0 (http://emining.jp/; [email protected])`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `emBot-GalaBuzz/Nutch-1.0 (http://emining.jp/; [email protected])`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `emBot-GalaBuzz/Nutch-1.0 (http://emining.jp/; [email protected])`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `emBot-GalaBuzz/Nutch-1.0 (http://emining.jp/; [email protected])`, result.Version)
}
}
result, err = Parse(`Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; aggregator VocusBot 0.4; +http://www.vocus.com/vnhs.html)`)
if err != nil {
t.Errorf(`Failed to parse 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; aggregator VocusBot 0.4; +http://www.vocus.com/vnhs.html)': %s`, err)
} else {
if result.Category != "pc" {
t.Errorf("Expected result.Category for '%s' to be 'pc', but got '%s'", `Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; aggregator VocusBot 0.4; +http://www.vocus.com/vnhs.html)`, result.Category)
}
if result.Name != "UNKNOWN" {
t.Errorf("Expected result.Name for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; aggregator VocusBot 0.4; +http://www.vocus.com/vnhs.html)`, result.Name)
}
if true && result.Os != "Windows Vista" {
t.Errorf("Expected result.Os for '%s' to be 'Windows Vista', but got '%s'", `Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; aggregator VocusBot 0.4; +http://www.vocus.com/vnhs.html)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; aggregator VocusBot 0.4; +http://www.vocus.com/vnhs.html)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; aggregator VocusBot 0.4; +http://www.vocus.com/vnhs.html)`, result.Version)
}
}
result, err = Parse(`Mozilla/5.0 (compatible; Ezooms/1.0; [email protected])`)
if err != nil {
t.Errorf(`Failed to parse 'Mozilla/5.0 (compatible; Ezooms/1.0; [email protected])': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Mozilla/5.0 (compatible; Ezooms/1.0; [email protected])`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Mozilla/5.0 (compatible; Ezooms/1.0; [email protected])`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; Ezooms/1.0; [email protected])`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; Ezooms/1.0; [email protected])`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; Ezooms/1.0; [email protected])`, result.Version)
}
}
result, err = Parse(`Mozilla/5.0 (compatible; Rakutenbot/1.0; +http://dynamic.rakuten.co.jp/bot.html)`)
if err != nil {
t.Errorf(`Failed to parse 'Mozilla/5.0 (compatible; Rakutenbot/1.0; +http://dynamic.rakuten.co.jp/bot.html)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Mozilla/5.0 (compatible; Rakutenbot/1.0; +http://dynamic.rakuten.co.jp/bot.html)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Mozilla/5.0 (compatible; Rakutenbot/1.0; +http://dynamic.rakuten.co.jp/bot.html)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; Rakutenbot/1.0; +http://dynamic.rakuten.co.jp/bot.html)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; Rakutenbot/1.0; +http://dynamic.rakuten.co.jp/bot.html)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; Rakutenbot/1.0; +http://dynamic.rakuten.co.jp/bot.html)`, result.Version)
}
}
result, err = Parse(`Flamingo_SearchEngine (+http://www.flamingosearch.com/bot)`)
if err != nil {
t.Errorf(`Failed to parse 'Flamingo_SearchEngine (+http://www.flamingosearch.com/bot)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Flamingo_SearchEngine (+http://www.flamingosearch.com/bot)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Flamingo_SearchEngine (+http://www.flamingosearch.com/bot)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Flamingo_SearchEngine (+http://www.flamingosearch.com/bot)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Flamingo_SearchEngine (+http://www.flamingosearch.com/bot)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Flamingo_SearchEngine (+http://www.flamingosearch.com/bot)`, result.Version)
}
}
result, err = Parse(`"mapion-news-bot/1.0 (http://www.mapion.co.jp/news/)"`)
if err != nil {
t.Errorf(`Failed to parse '"mapion-news-bot/1.0 (http://www.mapion.co.jp/news/)"': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `"mapion-news-bot/1.0 (http://www.mapion.co.jp/news/)"`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `"mapion-news-bot/1.0 (http://www.mapion.co.jp/news/)"`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `"mapion-news-bot/1.0 (http://www.mapion.co.jp/news/)"`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `"mapion-news-bot/1.0 (http://www.mapion.co.jp/news/)"`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `"mapion-news-bot/1.0 (http://www.mapion.co.jp/news/)"`, result.Version)
}
}
result, err = Parse(`Mozilla/5.0 (compatible; MJ12bot/v1.4.0; http://www.majestic12.co.uk/bot.php?+)`)
if err != nil {
t.Errorf(`Failed to parse 'Mozilla/5.0 (compatible; MJ12bot/v1.4.0; http://www.majestic12.co.uk/bot.php?+)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Mozilla/5.0 (compatible; MJ12bot/v1.4.0; http://www.majestic12.co.uk/bot.php?+)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Mozilla/5.0 (compatible; MJ12bot/v1.4.0; http://www.majestic12.co.uk/bot.php?+)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; MJ12bot/v1.4.0; http://www.majestic12.co.uk/bot.php?+)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; MJ12bot/v1.4.0; http://www.majestic12.co.uk/bot.php?+)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; MJ12bot/v1.4.0; http://www.majestic12.co.uk/bot.php?+)`, result.Version)
}
}
result, err = Parse(`Mozilla/5.0 (compatible; TweetmemeBot/2.11; +http://tweetmeme.com/)`)
if err != nil {
t.Errorf(`Failed to parse 'Mozilla/5.0 (compatible; TweetmemeBot/2.11; +http://tweetmeme.com/)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Mozilla/5.0 (compatible; TweetmemeBot/2.11; +http://tweetmeme.com/)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Mozilla/5.0 (compatible; TweetmemeBot/2.11; +http://tweetmeme.com/)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; TweetmemeBot/2.11; +http://tweetmeme.com/)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; TweetmemeBot/2.11; +http://tweetmeme.com/)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; TweetmemeBot/2.11; +http://tweetmeme.com/)`, result.Version)
}
}
result, err = Parse(`Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)`)
if err != nil {
t.Errorf(`Failed to parse 'Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; PaperLiBot/2.1; http://support.paper.li/entries/20023257-what-is-paper-li)`, result.Version)
}
}
result, err = Parse(`SearQuBot/SearQuBot v1.0`)
if err != nil {
t.Errorf(`Failed to parse 'SearQuBot/SearQuBot v1.0': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `SearQuBot/SearQuBot v1.0`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `SearQuBot/SearQuBot v1.0`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `SearQuBot/SearQuBot v1.0`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `SearQuBot/SearQuBot v1.0`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `SearQuBot/SearQuBot v1.0`, result.Version)
}
}
result, err = Parse(`Mozilla/5.0 (compatible; ADJUSTbot/2.0; +http://www.ad-just.jp/)`)
if err != nil {
t.Errorf(`Failed to parse 'Mozilla/5.0 (compatible; ADJUSTbot/2.0; +http://www.ad-just.jp/)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Mozilla/5.0 (compatible; ADJUSTbot/2.0; +http://www.ad-just.jp/)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Mozilla/5.0 (compatible; ADJUSTbot/2.0; +http://www.ad-just.jp/)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; ADJUSTbot/2.0; +http://www.ad-just.jp/)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; ADJUSTbot/2.0; +http://www.ad-just.jp/)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Mozilla/5.0 (compatible; ADJUSTbot/2.0; +http://www.ad-just.jp/)`, result.Version)
}
}
result, err = Parse(`FTRF: Friendly robot/1.3`)
if err != nil {
t.Errorf(`Failed to parse 'FTRF: Friendly robot/1.3': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `FTRF: Friendly robot/1.3`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `FTRF: Friendly robot/1.3`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `FTRF: Friendly robot/1.3`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `FTRF: Friendly robot/1.3`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `FTRF: Friendly robot/1.3`, result.Version)
}
}
result, err = Parse(`kizasi-spider/1.0 (+http://kizasi.jp/)`)
if err != nil {
t.Errorf(`Failed to parse 'kizasi-spider/1.0 (+http://kizasi.jp/)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `kizasi-spider/1.0 (+http://kizasi.jp/)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `kizasi-spider/1.0 (+http://kizasi.jp/)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `kizasi-spider/1.0 (+http://kizasi.jp/)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `kizasi-spider/1.0 (+http://kizasi.jp/)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `kizasi-spider/1.0 (+http://kizasi.jp/)`, result.Version)
}
}
result, err = Parse(`BlogramCrawler/1.0.1(+http://blogram.jp/)`)
if err != nil {
t.Errorf(`Failed to parse 'BlogramCrawler/1.0.1(+http://blogram.jp/)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `BlogramCrawler/1.0.1(+http://blogram.jp/)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `BlogramCrawler/1.0.1(+http://blogram.jp/)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `BlogramCrawler/1.0.1(+http://blogram.jp/)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `BlogramCrawler/1.0.1(+http://blogram.jp/)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `BlogramCrawler/1.0.1(+http://blogram.jp/)`, result.Version)
}
}
result, err = Parse(`www2.apserver.net ASP-Ranker Feed Crawler`)
if err != nil {
t.Errorf(`Failed to parse 'www2.apserver.net ASP-Ranker Feed Crawler': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `www2.apserver.net ASP-Ranker Feed Crawler`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `www2.apserver.net ASP-Ranker Feed Crawler`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `www2.apserver.net ASP-Ranker Feed Crawler`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `www2.apserver.net ASP-Ranker Feed Crawler`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `www2.apserver.net ASP-Ranker Feed Crawler`, result.Version)
}
}
result, err = Parse(`Rome Client (http://tinyurl.com/64t5n)`)
if err != nil {
t.Errorf(`Failed to parse 'Rome Client (http://tinyurl.com/64t5n)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Rome Client (http://tinyurl.com/64t5n)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Rome Client (http://tinyurl.com/64t5n)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Rome Client (http://tinyurl.com/64t5n)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Rome Client (http://tinyurl.com/64t5n)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Rome Client (http://tinyurl.com/64t5n)`, result.Version)
}
}
result, err = Parse(`UnwindFetchor/1.0 (+http://www.gnip.com/)`)
if err != nil {
t.Errorf(`Failed to parse 'UnwindFetchor/1.0 (+http://www.gnip.com/)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `UnwindFetchor/1.0 (+http://www.gnip.com/)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `UnwindFetchor/1.0 (+http://www.gnip.com/)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `UnwindFetchor/1.0 (+http://www.gnip.com/)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `UnwindFetchor/1.0 (+http://www.gnip.com/)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `UnwindFetchor/1.0 (+http://www.gnip.com/)`, result.Version)
}
}
result, err = Parse(`ia_archiver (+http://www.alexa.com/site/help/webmasters; [email protected])`)
if err != nil {
t.Errorf(`Failed to parse 'ia_archiver (+http://www.alexa.com/site/help/webmasters; [email protected])': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `ia_archiver (+http://www.alexa.com/site/help/webmasters; [email protected])`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `ia_archiver (+http://www.alexa.com/site/help/webmasters; [email protected])`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `ia_archiver (+http://www.alexa.com/site/help/webmasters; [email protected])`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `ia_archiver (+http://www.alexa.com/site/help/webmasters; [email protected])`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `ia_archiver (+http://www.alexa.com/site/help/webmasters; [email protected])`, result.Version)
}
}
result, err = Parse(`Summify (Summify/1.0.1; +http://summify.com)`)
if err != nil {
t.Errorf(`Failed to parse 'Summify (Summify/1.0.1; +http://summify.com)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Summify (Summify/1.0.1; +http://summify.com)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Summify (Summify/1.0.1; +http://summify.com)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Summify (Summify/1.0.1; +http://summify.com)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Summify (Summify/1.0.1; +http://summify.com)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Summify (Summify/1.0.1; +http://summify.com)`, result.Version)
}
}
result, err = Parse(`PostRank/2.0 (postrank.com; 1 subscribers)`)
if err != nil {
t.Errorf(`Failed to parse 'PostRank/2.0 (postrank.com; 1 subscribers)': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `PostRank/2.0 (postrank.com; 1 subscribers)`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `PostRank/2.0 (postrank.com; 1 subscribers)`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `PostRank/2.0 (postrank.com; 1 subscribers)`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `PostRank/2.0 (postrank.com; 1 subscribers)`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `PostRank/2.0 (postrank.com; 1 subscribers)`, result.Version)
}
}
result, err = Parse(`cloudforecastbot`)
if err != nil {
t.Errorf(`Failed to parse 'cloudforecastbot': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `cloudforecastbot`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `cloudforecastbot`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `cloudforecastbot`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `cloudforecastbot`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `cloudforecastbot`, result.Version)
}
}
result, err = Parse(`SimplePie/1.3-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20111118194710`)
if err != nil {
t.Errorf(`Failed to parse 'SimplePie/1.3-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20111118194710': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `SimplePie/1.3-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20111118194710`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `SimplePie/1.3-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20111118194710`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `SimplePie/1.3-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20111118194710`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `SimplePie/1.3-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20111118194710`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `SimplePie/1.3-dev (Feed Parser; http://simplepie.org; Allow like Gecko) Build/20111118194710`, result.Version)
}
}
result, err = Parse(`Rainmeter WebParser plugin`)
if err != nil {
t.Errorf(`Failed to parse 'Rainmeter WebParser plugin': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Rainmeter WebParser plugin`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Rainmeter WebParser plugin`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Rainmeter WebParser plugin`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Rainmeter WebParser plugin`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Rainmeter WebParser plugin`, result.Version)
}
}
result, err = Parse(`Data-Hotel-Watchdog/1.1`)
if err != nil {
t.Errorf(`Failed to parse 'Data-Hotel-Watchdog/1.1': %s`, err)
} else {
if result.Category != "crawler" {
t.Errorf("Expected result.Category for '%s' to be 'crawler', but got '%s'", `Data-Hotel-Watchdog/1.1`, result.Category)
}
if result.Name != "misc crawler" {
t.Errorf("Expected result.Name for '%s' to be 'misc crawler', but got '%s'", `Data-Hotel-Watchdog/1.1`, result.Name)
}
if false && result.Os != "UNKNOWN" {
t.Errorf("Expected result.Os for '%s' to be 'UNKNOWN', but got '%s'", `Data-Hotel-Watchdog/1.1`, result.Os)
}
if false && result.OsVersion != "UNKNOWN" {
t.Errorf("Expected result.OsVersion for '%s' to be 'UNKNOWN', but got '%s'", `Data-Hotel-Watchdog/1.1`, result.OsVersion)
}
if false && result.Version != "UNKNOWN" {
t.Errorf("Expected result.Version for '%s' to be 'UNKNOWN', but got '%s'", `Data-Hotel-Watchdog/1.1`, result.Version)
}
}
}