-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathtest.py
93 lines (78 loc) · 2.72 KB
/
test.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
from cerberus import Validator
import pytest
import instagram
import pprint
pp = pprint.PrettyPrinter(indent=2)
# enable cache?
instagram.BASE_CONFIG["cache"] = True
def validate_or_fail(item, validator):
if not validator.validate(item):
pp.pformat(item)
pytest.fail(f"Validation failed for item: {pp.pformat(item)}\nErrors: {validator.errors}")
@pytest.mark.asyncio
@pytest.mark.flaky(reruns=3, reruns_delay=30)
async def test_user_scraping():
result = await instagram.scrape_user("google")
schema = {
"name": {"type": "string"},
"username": {"type": "string"},
"category": {"type": "string"},
"bio": {"type": "string"},
"followers": {"type": "integer"},
"follows": {"type": "integer"},
}
validator = Validator(schema, allow_unknown=True)
validate_or_fail(result, validator)
@pytest.mark.asyncio
@pytest.mark.flaky(reruns=3, reruns_delay=30)
async def test_post_scraping():
result = await instagram.scrape_post("https://www.instagram.com/p/Csthn7EO99u/")
schema = {
"id": {"type": "string"},
"shortcode": {"type": "string"},
"src": {"type": "string"},
"src_attached": {"type": "list", "schema": {"type": "string"}},
"likes": {"type": "integer"},
"taken_at": {"type": "integer"},
"comments_count": {"type": "integer"},
"captions": {"type": "list", "schema": {"type": "string"}},
"comments": {
"type": "list",
"schema": {
"type": "dict",
"schema": {
"id": {"type": "string"},
"text": {"type": "string"},
"owner": {"type": "string"},
"created_at": {"type": "integer"},
},
},
},
}
validator = Validator(schema, allow_unknown=True)
validate_or_fail(result, validator)
@pytest.mark.asyncio
@pytest.mark.flaky(reruns=3, reruns_delay=30)
async def test_user_post_scraping():
schema = {
"id": {"type": "string"},
"shortcode": {"type": "string"},
"caption": {
"type": "dict",
"schema": {
"created_at": {"type": "integer"},
"text": {"type": "string"},
"pk": {"type": "string"}
},
},
"taken_at": {"type": "integer"},
"comment_count": {"type": "integer"},
"like_count": {"type": "integer"}
}
posts_all = []
async for post in instagram.scrape_user_posts("google", max_pages=2):
posts_all.append(post)
for post in posts_all:
validator = Validator(schema, allow_unknown=True)
validate_or_fail(post, validator)
assert len(posts_all) > 12