95 lines
3.7 KiB
Python
95 lines
3.7 KiB
Python
from __future__ import annotations
|
|
|
|
import unittest
|
|
|
|
from mobilede_scraper.parsing.mapper import CarMapper
|
|
|
|
|
|
class TestCarMapper(unittest.TestCase):
|
|
def setUp(self) -> None:
|
|
self.mapper = CarMapper()
|
|
|
|
def test_deduplicates_images_by_image_key(self) -> None:
|
|
urls = [
|
|
"https://vis.MOBILEDE.com/resizer?imageKeys=1&width=200&height=150",
|
|
"https://vis.MOBILEDE.com/resizer?imageKeys=1&width=845&height=633",
|
|
"https://vis.MOBILEDE.com/resizer?imageKeys=2&width=400&height=300",
|
|
]
|
|
|
|
record = self.mapper.map_to_car_record(
|
|
vehicle_url="https://www.MOBILEDE.com/VehicleDetail/123~US",
|
|
vehicle_summary={"make": "Honda", "model": "Civic", "image_urls": urls},
|
|
payload_insights={"vehicle_core": {}, "pricing": {}, "damage": {}, "auction": {}, "images": {}},
|
|
)
|
|
|
|
self.assertEqual(len(record.images), 2)
|
|
self.assertIn("width=845", record.images[0].fullres_image)
|
|
self.assertIn("height=633", record.images[0].fullres_image)
|
|
|
|
def test_no_damage_marker_is_not_damaged(self) -> None:
|
|
record = self.mapper.map_to_car_record(
|
|
vehicle_url="https://www.MOBILEDE.com/VehicleDetail/123~US",
|
|
vehicle_summary={"make": "Ford", "model": "Focus"},
|
|
payload_insights={
|
|
"vehicle_core": {},
|
|
"pricing": {},
|
|
"damage": {"primary": "normal wear"},
|
|
"auction": {},
|
|
"images": {},
|
|
},
|
|
)
|
|
|
|
self.assertFalse(record.is_damaged)
|
|
|
|
def test_unknown_empty_values_and_normalization(self) -> None:
|
|
record = self.mapper.map_to_car_record(
|
|
vehicle_url="https://www.MOBILEDE.com/VehicleDetail/999~US",
|
|
vehicle_summary={"make": " ", "model": None, "drive": "???", "gearbox": "unknown"},
|
|
payload_insights={"vehicle_core": {}, "pricing": {}, "damage": {}, "auction": {}, "images": {}},
|
|
)
|
|
self.assertEqual(record.brand, "UNKNOWN")
|
|
self.assertEqual(record.model, "UNKNOWN")
|
|
self.assertEqual(record.drive, "NA")
|
|
self.assertEqual(record.gearbox, "NA")
|
|
|
|
# Нормализация регистра и пробелов.
|
|
record2 = self.mapper.map_to_car_record(
|
|
vehicle_url="https://www.MOBILEDE.com/VehicleDetail/888~US",
|
|
vehicle_summary={"make": "Honda", "model": "Civic", "drive": " Front Wheel Drive ", "gearbox": " AUTOMATIC "},
|
|
payload_insights={"vehicle_core": {}, "pricing": {}, "damage": {}, "auction": {}, "images": {}},
|
|
)
|
|
self.assertEqual(record2.drive, "FWD")
|
|
self.assertEqual(record2.gearbox, "AT")
|
|
|
|
def test_price_and_currency_parsing(self) -> None:
|
|
record = self.mapper.map_to_car_record(
|
|
vehicle_url="https://www.MOBILEDE.com/VehicleDetail/777~US",
|
|
vehicle_summary={"make": "Toyota", "model": "Corolla"},
|
|
payload_insights={
|
|
"vehicle_core": {},
|
|
"pricing": {"buy_now": "USD 4,500 - 5,200"},
|
|
"damage": {},
|
|
"auction": {},
|
|
"images": {},
|
|
},
|
|
)
|
|
self.assertEqual(record.price, 5200)
|
|
|
|
record2 = self.mapper.map_to_car_record(
|
|
vehicle_url="https://www.MOBILEDE.com/VehicleDetail/778~US",
|
|
vehicle_summary={"make": "Toyota", "model": "Corolla"},
|
|
payload_insights={
|
|
"vehicle_core": {},
|
|
"pricing": {"buy_now": "€4.500,00"},
|
|
"damage": {},
|
|
"auction": {},
|
|
"images": {},
|
|
},
|
|
)
|
|
self.assertEqual(record2.currency, "EUR")
|
|
self.assertEqual(record2.price, 4500)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|