-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathtest_dedupe.py
More file actions
477 lines (393 loc) · 13.8 KB
/
test_dedupe.py
File metadata and controls
477 lines (393 loc) · 13.8 KB
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
import time
import pytest
import requests
import random
import string
from .conftest import API_PREFIX
last_saved_at = None
orig_stats = None
suffix = "".join(random.choices(string.ascii_letters + string.digits, k=3))
@pytest.fixture(scope="session")
def dedupe_coll_id(crawler_auth_headers, default_org_id):
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections",
headers=crawler_auth_headers,
json={"name": "Dedupe Collection " + suffix},
)
assert r.status_code == 200
return r.json()["id"]
@pytest.fixture(scope="session")
def dedupe_coll_id_2(crawler_auth_headers, default_org_id):
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections",
headers=crawler_auth_headers,
json={"name": "Dedupe Collection Copy " + suffix},
)
assert r.status_code == 200
return r.json()["id"]
@pytest.fixture(scope="session")
def dedupe_workflow_id(crawler_auth_headers, default_org_id, dedupe_coll_id):
# Start crawl
crawl_data = {
"runNow": False,
"name": "Crawl with dedupe",
"config": {
"seeds": [{"url": "https://old.webrecorder.net/"}],
"scopeType": "domain",
"limit": 10,
"exclude": "community",
},
"crawlerChannel": "dedupe",
"dedupeCollId": dedupe_coll_id,
}
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/crawlconfigs/",
headers=crawler_auth_headers,
json=crawl_data,
)
assert r.status_code == 200
data = r.json()
return data["id"]
def start_and_wait_for_crawl(workflow_id, org_id, headers):
r = requests.post(
f"{API_PREFIX}/orgs/{org_id}/crawlconfigs/{workflow_id}/run",
headers=headers,
)
crawl_id = r.json()["started"]
# Wait for it to complete and then return crawl ID
while True:
r = requests.get(
f"{API_PREFIX}/orgs/{org_id}/crawls/{crawl_id}/replay.json", headers=headers
)
data = r.json()
if data["state"] in ("complete", "failed"):
return crawl_id
time.sleep(5)
def find_crawl_in_collection(
default_org_id, dedupe_coll_id, crawl_id, crawler_auth_headers
):
r = requests.get(
f"{API_PREFIX}/orgs/{default_org_id}/crawls?collectionId={dedupe_coll_id}",
headers=crawler_auth_headers,
)
assert r.json()["total"] >= 1
found = False
for crawl in r.json()["items"]:
if crawl["id"] == crawl_id:
found = True
break
assert found
def wait_index_status(
default_org_id, dedupe_coll_id, crawler_auth_headers, status, max_wait=30
):
count = 0
while count < max_wait:
coll = requests.get(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}",
headers=crawler_auth_headers,
)
data = coll.json()
if data.get("indexState") != status or (
status == "idle" and not data.get("indexLastSavedAt")
):
count += 1
time.sleep(5)
continue
break
return data
@pytest.fixture(scope="session")
def dedupe_first_crawl(
dedupe_workflow_id, default_org_id, dedupe_coll_id, crawler_auth_headers
):
return start_and_wait_for_crawl(
dedupe_workflow_id, default_org_id, crawler_auth_headers
)
@pytest.fixture(scope="session")
def dedupe_second_crawl(
dedupe_workflow_id, default_org_id, dedupe_coll_id, crawler_auth_headers
):
return start_and_wait_for_crawl(
dedupe_workflow_id, default_org_id, crawler_auth_headers
)
def test_first_crawl_stats(
default_org_id, dedupe_coll_id, dedupe_first_crawl, crawler_auth_headers
):
find_crawl_in_collection(
default_org_id, dedupe_coll_id, dedupe_first_crawl, crawler_auth_headers
)
data = wait_index_status(
default_org_id, dedupe_coll_id, crawler_auth_headers, "ready"
)
assert data.get("indexLastSavedAt") == None
stats = data.get("indexStats")
print(stats)
assert stats["conservedSize"] > 2500
assert stats["dupeUrls"] == 2
assert stats["totalCrawlSize"] > 51000000
assert stats["totalCrawls"] == 1
assert stats["totalUrls"] == 50
assert stats["uniqueHashes"] == 48
assert stats["updateProgress"] == 0
assert stats["estimatedRedundantSize"] == 0
assert stats["removedCrawlSize"] == 0
assert stats["removedCrawls"] == 0
def test_index_idle_after_first(default_org_id, dedupe_coll_id, crawler_auth_headers):
global last_saved_at
data = wait_index_status(
default_org_id, dedupe_coll_id, crawler_auth_headers, "idle"
)
last_saved_at = data.get("indexLastSavedAt")
assert last_saved_at
def test_second_crawl_stats(
default_org_id, dedupe_coll_id, dedupe_second_crawl, crawler_auth_headers
):
find_crawl_in_collection(
default_org_id, dedupe_coll_id, dedupe_second_crawl, crawler_auth_headers
)
data = wait_index_status(
default_org_id, dedupe_coll_id, crawler_auth_headers, "ready"
)
assert data.get("indexLastSavedAt") == last_saved_at
stats = data.get("indexStats")
print(stats)
assert stats["conservedSize"] > 49000000
assert stats["dupeUrls"] == 52
assert stats["totalCrawlSize"] > 53000000
assert stats["totalCrawls"] == 2
assert stats["totalUrls"] == 100
assert stats["uniqueHashes"] == 48
assert stats["updateProgress"] == 0
assert stats["estimatedRedundantSize"] == 0
assert stats["removedCrawlSize"] == 0
assert stats["removedCrawls"] == 0
global orig_stats
orig_stats = stats
def test_index_idle_after_second(default_org_id, dedupe_coll_id, crawler_auth_headers):
data = wait_index_status(
default_org_id, dedupe_coll_id, crawler_auth_headers, "idle"
)
saved_at = data.get("indexLastSavedAt")
assert saved_at > last_saved_at
def test_crawl_dependency_links(
default_org_id,
dedupe_coll_id,
crawler_auth_headers,
dedupe_first_crawl,
dedupe_second_crawl,
):
resp = requests.get(
f"{API_PREFIX}/orgs/{default_org_id}/crawls/{dedupe_first_crawl}/replay.json",
headers=crawler_auth_headers,
)
first = resp.json()
assert first["fileSize"] >= 51000000
assert first["dedupeCollId"] == dedupe_coll_id
assert first["requiredByCrawls"] == [dedupe_second_crawl]
assert first["requiresCrawls"] == []
stats = first["dedupeStats"]
assert stats["conservedSize"] >= 2500
assert stats["dupeUrls"] == 2
assert stats["totalUrls"] == 50
resp = requests.get(
f"{API_PREFIX}/orgs/{default_org_id}/crawls/{dedupe_second_crawl}/replay.json",
headers=crawler_auth_headers,
)
second = resp.json()
assert second["fileSize"] < 2100000
assert second["dedupeCollId"] == dedupe_coll_id
assert second["requiredByCrawls"] == []
assert second["requiresCrawls"] == [dedupe_first_crawl]
stats = second["dedupeStats"]
assert stats["conservedSize"] >= 49000000
assert stats["dupeUrls"] == 50
assert stats["totalUrls"] == 50
def test_import_into_another_coll(
default_org_id,
dedupe_first_crawl,
dedupe_second_crawl,
dedupe_coll_id_2,
crawler_auth_headers,
):
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id_2}/add",
json={"crawlIds": [dedupe_first_crawl, dedupe_second_crawl]},
headers=crawler_auth_headers,
)
assert r.status_code == 200
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id_2}/dedupeIndex/create",
headers=crawler_auth_headers,
)
assert r.status_code == 200
data = wait_index_status(
default_org_id, dedupe_coll_id_2, crawler_auth_headers, "idle"
)
stats = data.get("indexStats")
print(stats)
assert stats == {**orig_stats, "updateProgress": 1.0}
def test_cant_remove_dependency_crawl(
default_org_id, dedupe_coll_id, crawler_auth_headers, dedupe_first_crawl
):
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}/remove",
json={"crawlIds": [dedupe_first_crawl]},
headers=crawler_auth_headers,
)
assert r.status_code == 400
assert r.json()["detail"] == "cant_remove_required_crawls"
def test_remove_crawl_from_collection(
default_org_id, dedupe_coll_id, crawler_auth_headers, dedupe_second_crawl
):
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}/remove",
json={"crawlIds": [dedupe_second_crawl]},
headers=crawler_auth_headers,
)
assert r.status_code == 200
data = wait_index_status(
default_org_id, dedupe_coll_id, crawler_auth_headers, "idle"
)
stats = data.get("indexStats")
print(stats)
assert stats["conservedSize"] > 49000000
assert stats["dupeUrls"] == 52
assert stats["totalCrawlSize"] > 53000000
assert stats["totalCrawls"] == 2
assert stats["totalUrls"] == 100
assert stats["uniqueHashes"] == 48
assert stats["updateProgress"] == 1.0
assert stats["estimatedRedundantSize"] == 0
assert stats["removedCrawlSize"] < 2100000
assert stats["removedCrawls"] == 1
def test_purge_index(
default_org_id, dedupe_coll_id, admin_auth_headers, crawler_auth_headers
):
# requires admin
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}/dedupeIndex/purge",
headers=crawler_auth_headers,
)
assert r.status_code == 403
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}/dedupeIndex/purge",
headers=admin_auth_headers,
)
assert r.status_code == 200
data = wait_index_status(
default_org_id, dedupe_coll_id, crawler_auth_headers, "idle"
)
# back to stats after only 1 crawl
stats = data.get("indexStats")
print(stats)
assert stats["conservedSize"] > 2500
assert stats["conservedSize"] <= 3000
assert stats["dupeUrls"] == 2
assert stats["totalCrawlSize"] > 51000000
assert stats["totalCrawlSize"] <= 52000000
assert stats["totalCrawls"] == 1
assert stats["totalUrls"] == 50
assert stats["uniqueHashes"] == 48
assert stats["updateProgress"] == 1.0
assert stats["estimatedRedundantSize"] == 0
assert stats["removedCrawlSize"] == 0
assert stats["removedCrawls"] == 0
def test_cant_delete_while_crawling(
default_org_id, dedupe_workflow_id, dedupe_coll_id, admin_auth_headers
):
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/crawlconfigs/{dedupe_workflow_id}/run",
headers=admin_auth_headers,
)
crawl_id = r.json()["started"]
data = wait_index_status(
default_org_id, dedupe_coll_id, admin_auth_headers, "crawling"
)
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}/dedupeIndex/delete",
json={"removeFromWorkflows": True},
headers=admin_auth_headers,
)
assert r.status_code == 400
assert r.json()["detail"] == "dedupe_index_is_in_use"
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/crawls/{crawl_id}/cancel",
headers=admin_auth_headers,
)
data = r.json()
assert data["success"]
def test_can_delete_while_indexing(
default_org_id,
dedupe_coll_id,
dedupe_first_crawl,
crawler_auth_headers,
admin_auth_headers,
):
data = wait_index_status(
default_org_id, dedupe_coll_id, crawler_auth_headers, "idle"
)
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}/remove",
json={"crawlIds": [dedupe_first_crawl]},
headers=crawler_auth_headers,
)
assert r.status_code == 200
time.sleep(1)
res = requests.get(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}",
headers=crawler_auth_headers,
)
data = res.json()
state = data.get("indexState")
assert state == "importing"
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}/dedupeIndex/delete",
json={"removeFromWorkflows": True},
headers=admin_auth_headers,
)
assert r.status_code == 200
def test_index_data_deleted(default_org_id, dedupe_coll_id, crawler_auth_headers):
res = requests.get(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id}",
headers=crawler_auth_headers,
)
data = res.json()
assert data["indexStats"] is None
assert data["indexState"] is None
assert data["indexLastSavedAt"] is None
def test_delete_coll(
default_org_id, dedupe_coll_id_2, admin_auth_headers, crawler_auth_headers
):
# need to delete index first
r = requests.delete(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id_2}",
headers=admin_auth_headers,
)
assert r.status_code == 400
assert r.json()["detail"] == "not_allowed_while_dedupe_index_exists"
# not allowed for crawler
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id_2}/dedupeIndex/delete",
json={"removeFromWorkflows": True},
headers=crawler_auth_headers,
)
assert r.status_code == 403
r = requests.post(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id_2}/dedupeIndex/delete",
json={"removeFromWorkflows": True},
headers=admin_auth_headers,
)
assert r.status_code == 200
r = requests.delete(
f"{API_PREFIX}/orgs/{default_org_id}/collections/{dedupe_coll_id_2}",
headers=admin_auth_headers,
)
assert r.status_code == 200
assert r.json()["success"]
def test_removed_from_workflow(
default_org_id, dedupe_workflow_id, crawler_auth_headers
):
res = requests.get(
f"{API_PREFIX}/orgs/{default_org_id}/crawlconfigs/{dedupe_workflow_id}",
headers=crawler_auth_headers,
)
assert res.json()["dedupeCollId"] == None