forked from peterbe/autocompeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.py
718 lines (635 loc) · 22.2 KB
/
tests.py
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
# -*- coding: utf-8 -*-
"""
End-to-end tests that flush the Redis database (number 8).
These tests expect to be able to talk to the running server on
localhost:8000.
"""
import datetime
import json
import unittest
from nose.tools import ok_, eq_
import redis
import requests
class E2E(unittest.TestCase):
_base = 'http://localhost:3000'
@classmethod
def setUpClass(cls):
cls.c = redis.StrictRedis(host='localhost', port=6379, db=8)
def setUp(self):
self.c.flushdb()
assert self.c.dbsize() == 0, self.c.dbsize()
self._set_domain_key('xyz123', 'peterbecom')
def _set_domain_key(self, key, domain):
self.c.hset('$domainkeys', key, domain)
def get(self, url, *args, **kwargs):
return requests.get(self._base + url, *args, **kwargs)
def post(self, url, *args, **kwargs):
return requests.post(self._base + url, *args, **kwargs)
def delete(self, url, *args, **kwargs):
return requests.delete(self._base + url, *args, **kwargs)
def test_homepage(self):
r = self.get('/')
eq_(r.status_code, 200)
def test_ping(self):
r = self.get('/v1/ping')
eq_(r.status_code, 200)
eq_(r.content, 'pong\n')
eq_(r.headers['Access-Control-Allow-Origin'], '*')
def test_404(self):
r = self.get('/gobblygook')
eq_(r.status_code, 404)
def test_post_bad_number(self):
r = self.post('/v1', {
'url': ' /plog/something ',
'popularity': "1.2.x",
'title': "This is a blog about something",
"group": "public",
}, headers={'Auth-Key': 'xyz123'})
ok_(r.status_code >= 400 and r.status_code < 500)
def test_bad_key(self):
r = self.post('/v1', {
'url': '/plog/something',
'title': "This is a blog about something",
}, headers={}) # not set at all
eq_(r.status_code, 403)
r = self.post('/v1', {
'url': '/plog/something',
'title': "This is a blog about something",
}, headers={'Auth-Key': ''}) # empty
eq_(r.status_code, 403)
r = self.post('/v1', {
'url': '/plog/something',
'title': "This is a blog about something",
}, headers={'Auth-Key': 'junkjunk'}) # junk
eq_(r.status_code, 403)
def test_post_ok(self):
r = self.post('/v1', {
'url': ' /plog/something ',
'popularity': "12",
'title': "This is a blog about something",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=blo&d=peterbecom')
eq_(
r.json(),
{
'terms': [u'blo'],
'results': [
[
u'/plog/something',
u'This is a blog about something'
]
]
}
)
eq_(r.headers['Access-Control-Allow-Origin'], '*')
def test_search_on_numbers(self):
r = self.post('/v1', {
'url': '/plog/2015',
'title': "Monday Meeting 2015",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.post('/v1', {
'url': '/plog/2014',
'title': "Monday Meeting 2014",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=monday&d=peterbecom')
terms = r.json()['terms']
eq_(terms, ['monday'])
results = r.json()['results']
eq_(len(results), 2)
r = self.get('/v1?q=monday%202015&d=peterbecom')
terms = r.json()['terms']
eq_(terms, ['monday', '2015'])
results = r.json()['results']
eq_(len(results), 1)
def test_search_too_short(self):
r = self.get('/v1?q=,&d=peterbecom')
eq_(
r.json(),
{'terms': [], 'results': []}
)
def test_different_domains(self):
r = self.post('/v1', {
'url': ' /plog/something ',
'popularity': "12",
'title': "This is a blog about something",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
# need a new auth key for this different domain
self._set_domain_key('abc987', 'air.mozilla.org')
r = self.post('/v1', {
'url': ' /some/page',
'title': "Also about the word blog",
}, headers={'Auth-Key': 'abc987'})
eq_(r.status_code, 201)
r = self.get('/v1?q=blo&d=peterbecom')
eq_(
r.json(),
{
'terms': [u'blo'],
'results': [
[
u'/plog/something',
u'This is a blog about something'
]
]
}
)
r = self.get('/v1?q=blo&d=air.mozilla.org')
eq_(
r.json(),
{
'terms': [u'blo'],
'results': [
[
u'/some/page',
u'Also about the word blog'
]
]
}
)
def test_unidecode(self):
r = self.post('/v1', {
'url': ' /some/page',
'title': u"Blögged about something else",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=blog&d=peterbecom')
eq_(r.status_code, 200)
eq_(
r.json(),
{
'terms': [u'blog'],
'results': [
[
u'/some/page',
u'Blögged about something else'
]
]
}
)
r = self.get(u'/v1?q=bl\xf6g&d=peterbecom')
eq_(r.status_code, 200)
eq_(
r.json(),
{
'terms': [u'blög', u'blog'],
'results': [
[
u'/some/page',
u'Blögged about something else'
]
]
}
)
def test_search_with_apostrophes(self):
r = self.post('/v1', {
'url': '/some/page',
'title': u"The word 'watch'",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=watc&d=peterbecom')
eq_(r.status_code, 200)
eq_(
r.json(),
{
'terms': ['watc'],
'results': [
[
u'/some/page',
u"The word 'watch'"
]
]
}
)
r = self.post('/v1', {
'url': '/some/page2',
'title': u"At 1 o'clock there's a game",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=o&d=peterbecom')
eq_(r.status_code, 200)
eq_(
r.json(),
{
'terms': ['o'],
'results': [
[
u'/some/page2',
u"At 1 o'clock there's a game"
]
]
}
)
r = self.get("/v1?q=o'&d=peterbecom")
eq_(r.status_code, 200)
eq_(
r.json(),
{
'terms': ['o'],
'results': [
[
u'/some/page2',
u"At 1 o'clock there's a game"
]
]
}
)
r = self.get("/v1?q=o'c&d=peterbecom")
eq_(r.status_code, 200)
eq_(
r.json(),
{
'terms': ["o'c"],
'results': [
[
u'/some/page2',
u"At 1 o'clock there's a game"
]
]
}
)
def test_fetch_with_dfferent_n(self):
self._set_domain_key('xyz123', 'peterbecom')
for i in range(1, 20):
r = self.post('/v1', {
'url': '/%d' % i,
'popularity': i,
'title': u"Page %d" % i,
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=pag&d=peterbecom')
eq_(len(r.json()['results']), 10)
r = self.get('/v1?q=pag&d=peterbecom&n=2')
eq_(len(r.json()['results']), 2)
r = self.get('/v1?q=pag&d=peterbecom&n=0')
eq_(len(r.json()['results']), 10)
r = self.get('/v1?q=pag&d=peterbecom&n=-1')
eq_(len(r.json()['results']), 10)
r = self.get('/v1?q=pag&d=peterbecom&n=x')
ok_(r.status_code >= 400 and r.status_code < 500)
def test_fetch_without_domain(self):
r = self.get('/v1?q=pag')
ok_(r.status_code >= 400 and r.status_code < 500)
def test_sorted_by_popularity(self):
self._set_domain_key('xyz123', 'peterbecom')
r = self.post('/v1', {
'url': '/minor',
'popularity': "1.1",
'title': u"Page Minor",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.post('/v1', {
'url': '/major',
'popularity': "2.7",
'title': u"Page Major",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=pag&d=peterbecom')
eq_(r.status_code, 200)
eq_(
r.json()['results'],
[[u'/major', u'Page Major'], [u'/minor', u'Page Minor']]
)
# insert the Minor one again but this time with a high popularity
r = self.post('/v1', {
'url': '/minor',
'popularity': "3.0",
'title': u"Page Minor",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=pag&d=peterbecom')
eq_(r.status_code, 200)
eq_(
r.json()['results'],
[[u'/minor', u'Page Minor'], [u'/major', u'Page Major']]
)
def test_match_multiple_words(self):
r = self.post('/v1', {
'url': ' /plog/something ',
'title': "This is a blog about something",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=blog%20ab&d=peterbecom')
eq_(r.status_code, 200)
eq_(
r.json()['terms'],
['blog', 'ab']
)
eq_(
r.json()['results'],
[[u'/plog/something', u'This is a blog about something']]
)
def test_clean_junk(self):
r = self.get('/v1', params={
'q': '[{(";.!peter?-.")}]',
'd': 'peterbecom'
})
eq_(r.status_code, 200)
eq_(
r.json()['terms'],
[u'peter']
)
eq_(r.json()['results'], [])
def test_delete_bad_auth_key(self):
# not even set
r = self.delete('/v1', params={
'url': ' /plog/something ',
})
eq_(r.status_code, 403)
# set but not recognized
r = self.delete('/v1', params={
'url': ' /plog/something ',
}, headers={'Auth-Key': 'junkjunkjunk'})
eq_(r.status_code, 403)
def test_delete_row(self):
self._set_domain_key('xyz123', 'peterbecom')
r = self.post('/v1', {
'url': '/plog/something',
'title': "This is a blog about something",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=ab&d=peterbecom')
eq_(r.status_code, 200)
ok_(r.json()['results'])
r = self.delete('/v1', params={
'url': ' /plog/something ',
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 204)
r = self.get('/v1?q=ab&d=peterbecom')
eq_(r.status_code, 200)
ok_(not r.json()['results'])
def test_delete_row_belonging_a_group(self):
self._set_domain_key('xyz123', 'peterbecom')
r = self.post('/v1', {
'url': '/plog/something',
'title': "This is a blog about something",
'group': 'private'
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=ab&d=peterbecom')
eq_(r.status_code, 200)
ok_(not r.json()['results'])
r = self.get('/v1?q=ab&d=peterbecom&g=private')
eq_(r.status_code, 200)
ok_(r.json()['results'])
r = self.delete('/v1', params={
'url': ' /plog/something ',
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 204)
r = self.get('/v1?q=ab&d=peterbecom')
eq_(r.status_code, 200)
ok_(not r.json()['results'])
r = self.get('/v1?q=ab&d=peterbecom&g=private')
eq_(r.status_code, 200)
ok_(not r.json()['results'])
def test_delete_invalid_url(self):
self._set_domain_key('xyz123', 'peterbecom')
r = self.post('/v1', {
'url': '/plog/something',
'title': "This is a blog about something",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.delete('/v1', params={
'url': 'neverheardof',
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 404)
def test_delete_row_carefully(self):
"""deleting one item, by URL, shouldn't affect other entries"""
self._set_domain_key('xyz123', 'peterbecom')
# first one
r = self.post('/v1', {
'url': '/plog/something',
'title': "This is a blog about something",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
# second one
r = self.post('/v1', {
'url': '/other/url',
'title': "Another blog post about nothing",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=ab&d=peterbecom')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 2)
r = self.delete('/v1', params={
'url': ' /plog/something ',
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 204)
r = self.get('/v1?q=ab&d=peterbecom')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 1)
eq_(r.json()['results'], [
[u'/other/url', u'Another blog post about nothing']
])
def test_delete_domain(self):
self._set_domain_key('xyz123', 'peterbecom')
r = self.post('/v1', {
'url': '/plog/something',
'title': "blog something",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.post('/v1', {
'url': '/plog/other',
'title': "Another blog",
'group': 'private'
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
eq_(stats['documents'], 2)
r = self.get('/v1?q=blog&d=peterbecom')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 1)
r = self.get('/v1?q=blog&d=peterbecom&g=private')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 2)
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
ok_(stats['fetches'].values()[0])
r = self.delete('/v1/flush')
eq_(r.status_code, 403)
r = self.delete('/v1/flush', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 204)
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
eq_(stats['documents'], 0)
ok_(stats['fetches'].values()[0])
r = self.get('/v1?q=blo&d=peterbecom')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 0)
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
eq_(stats['documents'], 0)
def test_search_with_groups(self):
r = self.post('/v1', {
'url': '/page/public',
'popularity': 10,
'title': 'This is a PUBLIC sample',
'group': '',
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.post('/v1', {
'url': '/page/private',
'popularity': 20,
'title': 'This is a PRIVATE page',
'group': 'private'
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.post('/v1', {
'url': '/page/semi',
'popularity': 20,
'title': 'This is a SEMI private sample',
'group': 'semi-private'
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=thi&d=peterbecom')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 1)
r = self.get('/v1?q=thi&d=peterbecom&g=private')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 2)
r = self.get('/v1?q=samp&d=peterbecom&g=semi-private')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 2)
r = self.get('/v1?q=thi&d=peterbecom&g=private,semi-private')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 3)
def test_search_with_whole_words(self):
"""if you search for 'four thi' it should find 'Four things'
and 'this is four items'.
But should it really find 'fourier thinking'?
"""
r = self.post('/v1', {
'url': '/page/first',
'popularity': 1,
'title': 'Four special things',
}, headers={'Auth-Key': 'xyz123'})
r = self.post('/v1', {
'url': '/page/second',
'popularity': 2,
'title': 'This is four items',
}, headers={'Auth-Key': 'xyz123'})
r = self.post('/v1', {
'url': '/page/third',
'popularity': 3,
'title': 'Fourier thinking',
}, headers={'Auth-Key': 'xyz123'})
r = self.get('/v1?q=four&d=peterbecom')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 3)
r = self.get('/v1?q=four%20thin&d=peterbecom')
eq_(r.status_code, 200)
eq_(len(r.json()['results']), 1)
def test_domain_counter_increments(self):
r = self.post('/v1', {
'url': ' /plog/something ',
'popularity': "12",
'title': "This is a blog about something",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=b&d=peterbecom')
assert r.json()['results']
now = datetime.datetime.utcnow()
year_key = '$domainfetches$%s' % now.year
month_key = year_key + '$%s' % now.month
eq_(int(self.c.hget(month_key, 'peterbecom')), 1)
r = self.get('/v1?q=bl&d=peterbecom')
assert r.json()['results']
eq_(int(self.c.hget(month_key, 'peterbecom')), 2)
def test_get_stats(self):
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
now = datetime.datetime.utcnow()
eq_(stats['fetches'], {str(now.year): {}})
eq_(stats['documents'], 0)
r = self.post('/v1', {
'url': ' /plog/something ',
'popularity': "12",
'title': "This is a blog about something",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1?q=b&d=peterbecom')
assert r.json()['results']
r = self.get('/v1?q=bl&d=peterbecom')
assert r.json()['results']
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
now = datetime.datetime.utcnow()
eq_(stats['fetches'][str(now.year)][str(now.month)], 2)
eq_(stats['documents'], 1)
# do an edit. different title same url
r = self.post('/v1', {
'url': '/plog/something',
'popularity': "13",
'title': "This is a blog about something extra",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
eq_(stats['documents'], 1)
# new document
r = self.post('/v1', {
'url': '/plog/different',
'popularity': "99",
'title': "Something different",
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 201)
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
eq_(stats['documents'], 2)
# remove that last one
r = self.delete('/v1', params={
'url': '/plog/different',
}, headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 204)
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
eq_(stats['documents'], 1)
def test_bulk_upload(self):
documents = [
{
'url': '/some/page',
'title': 'Some title',
'popularity': 10
},
{
'url': '/other/page',
'title': 'Other title',
},
{
'url': '/private/page',
'title': 'Other private page',
'group': 'private'
},
]
r = self.post(
'/v1/bulk',
data=json.dumps({'documents': documents}),
headers={
'Auth-Key': 'xyz123',
# 'content-type': 'application/json'
}
)
eq_(r.status_code, 201)
r = self.get('/v1/stats', headers={'Auth-Key': 'xyz123'})
eq_(r.status_code, 200)
stats = r.json()
eq_(stats['documents'], 3)
r = self.get('/v1?q=titl&d=peterbecom')
eq_(len(r.json()['results']), 2)
urls = [x[0] for x in r.json()['results']]
eq_(urls, ['/some/page', '/other/page'])
r = self.get('/v1?q=other&d=peterbecom&g=private')
eq_(len(r.json()['results']), 2)