-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathtest.py
160 lines (146 loc) · 5.53 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
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
import json
import os
from pathlib import Path
from cerberus import Validator
import domaincom
import pytest
import pprint
pp = pprint.PrettyPrinter(indent=4)
# enable scrapfly cache
domaincom.BASE_CONFIG["cache"] = os.getenv("SCRAPFLY_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}"
)
property_schema = {
"schema": {
"type": "dict",
"schema": {
"listingId": {"type": "integer"},
"listingUrl": {"type": "string"},
"unitNumber": {"type": "string"},
"street": {"type": "string"},
"suburb": {"type": "string"},
"postcode": {"type": "string"},
"createdOn": {"type": "string"},
"propertyType": {"type": "string"},
"beds": {"type": "integer"},
"phone": {"type": "string"},
"agencyName": {"type": "string"},
"propertyDeveloperName": {"type": "string"},
"agencyProfileUrl": {"type": "string"},
"propertyDeveloperUrl": {"type": "string"},
"description": {
"type": "list",
"schema": {
"type": "string"
}
},
"listingSummary": {
"type": "dict",
"schema": {
"beds": {"type": "integer"},
"baths": {"type": "integer"},
"parking": {"type": "integer"},
"title": {"type": "string"},
"price": {"type": "string"},
"address": {"type": "string"},
"listingType": {"type": "string"},
"propertyType": {"type": "string"},
"status": {"type": "string"},
"mode": {"type": "string"},
}
},
"agents": {
"type": "list",
"schema": {
"type": "dict",
"schema": {
"name": {"type": "string"},
"photo": {"type": "string"},
"phone": {"type": "string", "nullable": True},
"mobile": {"type": "string", "nullable": True},
"agentProfileUrl": {"type": "string"},
}
}
}
}
}
}
search_schema = {
"schmea": {
"type": "dict",
"schema": {
"id": {"type": "integer"},
"listingType": {"type": "string"},
"listingModel": {
"type": "dict",
"schema": {
"promoType": {"type": "string"},
"url": {"type": "string"},
"projectName": {"type": "string"},
"displayAddress": {"type": "string"},
"images": {
"type": "list",
"schema": {
"type": "string"
}
},
"branding": {
"type": "dict",
"schema": {
"agencyId": {"type": "string"},
"agentNames": {"type": "string"},
"brandName": {"type": "string"}
}
},
"childListingIds": {
"type": "list",
"schema": {
"type": "integer"
}
},
"address": {
"type": "dict",
"schema": {
"street": {"type": "string"},
"suburb": {"type": "string"},
"state": {"type": "string"},
"postcode": {"type": "string"},
"lat": {"type": "integer"},
"lng": {"type": "integer"},
}
}
}
}
}
}
}
@pytest.mark.asyncio
async def test_properties_scraping():
properties_data = await domaincom.scrape_properties(
urls = [
"https://www.domain.com.au/type-10c-250-spencer-street-melbourne-vic-3000-2018950519",
"https://www.domain.com.au/property-profile/308-9-degraves-street-melbourne-vic-3000",
"https://www.domain.com.au/1223-422-collins-street-melbourne-vic-3000-2019894035",
]
)
validator = Validator(property_schema, allow_unknown=True)
# for item in properties_data:
validate_or_fail(properties_data[0], validator)
assert len(properties_data) >= 1
if os.getenv("SAVE_TEST_RESULTS") == "true":
(Path(__file__).parent / 'results/properties.json').write_text(json.dumps(properties_data, indent=2, ensure_ascii=False))
@pytest.mark.asyncio
async def test_search_scraping():
search_data = await domaincom.scrape_search(
url="https://www.domain.com.au/sale/melbourne-vic-3000", max_scrape_pages=1
)
validator = Validator(search_schema, allow_unknown=True)
for item in search_data:
validate_or_fail(item, validator)
assert len(search_data) >= 2
if os.getenv("SAVE_TEST_RESULTS") == "true":
(Path(__file__).parent / 'results/search.json').write_text(json.dumps(search_data, indent=2, ensure_ascii=False))