-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathtest.py
102 lines (91 loc) · 3.04 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
94
95
96
97
98
99
100
101
102
from cerberus import Validator
import pytest
import walmart
import pprint
pp = pprint.PrettyPrinter(indent=4)
# enable scrapfly cache
walmart.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}"
)
product_schema = {
"product": {
"type": "dict",
"schema": {
"availabilityStatus": {"type": "string"},
"averageRating": {"type": "float"},
"brand": {"type": "string"},
"shortDescription": {"type": "string"},
"id": {"type": "string"},
"name": {"type": "string"},
"orderLimit": {"type": "integer"},
"type": {"type": "string"},
},
},
"reviews": {
"type": "dict",
"schema": {
"averageOverallRating": {"type": "float"},
"customerReviews": {
"type": "list",
"schema": {
"type": "dict",
"schema": {
"reviewId": {"type": "string"},
"rating": {"type": "float"},
"reviewSubmissionTime": {"type": "string"},
"reviewText": {"type": "string"},
"reviewTitle": {"type": "string", "nullable": True},
},
},
},
},
},
}
search_schema = {
"id": {"type": "string"},
"usItemId": {"type": "string"},
"name": {"type": "string"},
"type": {"type": "string"},
"imageInfo": {
"type": "dict",
"schema": {
"id": {"type": "string", "nullable": True},
"name": {"type": "string", "nullable": True},
"thumbnailUrl": {"type": "string", "nullable": True},
"size": {"type": "string", "nullable": True},
},
},
"canonicalUrl": {"type": "string"},
"classType": {"type": "string"},
"averageRating": {"type": "float", "nullable": True},
"numberOfReviews": {"type": "integer", "nullable": True},
"salesUnitType": {"type": "string"},
"sellerId": {"type": "string"},
"sellerName": {"type": "string"},
}
@pytest.mark.asyncio
async def test_product_scraping():
products_data = await walmart.scrape_products(
urls=[
"https://www.walmart.com/ip/1736740710",
"https://www.walmart.com/ip/715596133",
"https://www.walmart.com/ip/496918359",
]
)
validator = Validator(product_schema, allow_unknown=True)
for item in products_data:
validate_or_fail(item, validator)
assert len(product_schema) >= 1
@pytest.mark.asyncio
async def test_search_scraping():
search_data = await walmart.scrape_search(
query="laptop", sort="best_seller", max_pages=3
)
validator = Validator(search_schema, allow_unknown=True)
for item in search_data:
validate_or_fail(item, validator)
assert len(search_data) >= 40