-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_web_scrape.py
40 lines (31 loc) ยท 1.12 KB
/
test_web_scrape.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
from unittest.mock import MagicMock, patch
import pytest
from web_scrape import WebScrape
@pytest.fixture
def mock_response():
"""Create a mock response for requests.get"""
mock = MagicMock()
mock.text = """
<div class="elementor-element elementor-element-1234567 elementor-widget elementor-widget-text-editor">
<div><p>ืืืืช ืืขื</p></div>
<div><p>ืืืื ืืืคื</p></div>
<div><p>20-03-2024 20:30</p></div>
<div><p>ืืคืืขื ืืืคื</p></div>
</div>
"""
mock.raise_for_status.return_value = None
return mock
@patch("requests.get")
def test_scrape(mock_get, mock_response):
"""Test the scrape method of WebScrape class"""
mock_get.return_value = mock_response
scraper = WebScrape()
result = scraper.scrape()
print(result)
assert isinstance(result, dict)
assert "game_1" in result
assert len(result["game_1"]) == 4
assert result["game_1"][0] == "ืืืืช ืืขื"
assert result["game_1"][1] == "ืืืื ืืืคื"
assert result["game_1"][2] == "20-03-2024 20:30"
assert result["game_1"][3] == "ืืคืืขื ืืืคื"