Files
wehub-resource-sync 247153575d
Tests / tests (map[TOXENV:py310], macos-latest, 3.10) (push) Has been cancelled
Tests / tests (map[TOXENV:py311], macos-latest, 3.11) (push) Has been cancelled
Tests / tests (map[TOXENV:py312], macos-latest, 3.12) (push) Has been cancelled
Tests / tests (map[TOXENV:py313], macos-latest, 3.13) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:01:50 +08:00

507 lines
17 KiB
Python

"""Tests for RobotsTxtManager."""
import asyncio
import pytest
from scrapling.spiders.robotstxt import RobotsTxtManager
# ---------------------------------------------------------------------------
# Fixtures and helpers
# ---------------------------------------------------------------------------
class MockResponse:
"""Minimal response stub matching the shape _get_parser expects."""
def __init__(self, status: int = 200, body: bytes = b"", encoding: str = "utf-8"):
self.status = status
self.body = body
self.encoding = encoding
def make_fetch_fn(status: int = 200, content: str = "", encoding: str = "utf-8"):
"""Return an async fetch callable that returns a fixed response.
Attaches a `.calls` list so tests can assert how many times it was invoked
and with which arguments.
"""
calls: list[tuple] = []
async def _fetch(url: str, sid: str) -> MockResponse:
calls.append((url, sid))
return MockResponse(status=status, body=content.encode(encoding), encoding=encoding)
_fetch.calls = calls # type: ignore[attr-defined]
return _fetch
# ---------------------------------------------------------------------------
# Shared robots.txt fixtures
# ---------------------------------------------------------------------------
ROBOTS_BASIC = """\
User-agent: *
Disallow: /admin/
Crawl-delay: 2
"""
ROBOTS_WITH_RATE = """\
User-agent: *
Request-rate: 1/10
Disallow: /private/
"""
ROBOTS_ALLOW_OVERRIDE = """\
User-agent: *
Disallow: /secret/
Allow: /secret/public.html
"""
ROBOTS_DISALLOW_ALL = """\
User-agent: *
Disallow: /
"""
# ---------------------------------------------------------------------------
# Tests: can_fetch
# ---------------------------------------------------------------------------
class TestCanFetch:
@pytest.mark.asyncio
async def test_allowed_url_returns_true(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_BASIC))
assert await mgr.can_fetch("https://example.com/products", "s1") is True
@pytest.mark.asyncio
async def test_disallowed_url_returns_false(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_BASIC))
assert await mgr.can_fetch("https://example.com/admin/", "s1") is False
@pytest.mark.asyncio
async def test_disallowed_subpath_returns_false(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_BASIC))
assert await mgr.can_fetch("https://example.com/admin/users", "s1") is False
@pytest.mark.asyncio
async def test_root_url_is_allowed(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_BASIC))
assert await mgr.can_fetch("https://example.com/", "s1") is True
@pytest.mark.asyncio
async def test_allow_directive_overrides_disallow(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_ALLOW_OVERRIDE))
assert await mgr.can_fetch("https://example.com/secret/public.html", "s1") is True
assert await mgr.can_fetch("https://example.com/secret/private.html", "s1") is False
@pytest.mark.asyncio
async def test_disallow_all_blocks_every_path(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_DISALLOW_ALL))
assert await mgr.can_fetch("https://example.com/", "s1") is False
assert await mgr.can_fetch("https://example.com/page", "s1") is False
assert await mgr.can_fetch("https://example.com/a/b/c", "s1") is False
@pytest.mark.asyncio
async def test_empty_robots_allows_everything(self):
mgr = RobotsTxtManager(make_fetch_fn(content=""))
assert await mgr.can_fetch("https://example.com/anything", "s1") is True
assert await mgr.can_fetch("https://example.com/admin/secret", "s1") is True
@pytest.mark.asyncio
async def test_non_200_response_allows_everything(self):
for status in [403, 404, 500, 503]:
mgr = RobotsTxtManager(make_fetch_fn(status=status))
result = await mgr.can_fetch("https://example.com/page", "s1")
assert result is True, f"Expected True for HTTP {status}"
@pytest.mark.asyncio
async def test_fetch_error_allows_everything(self):
async def failing_fetch(url: str, sid: str) -> MockResponse:
raise ConnectionError("network failure")
mgr = RobotsTxtManager(failing_fetch)
assert await mgr.can_fetch("https://example.com/page", "s1") is True
@pytest.mark.asyncio
async def test_wildcard_path_pattern(self):
content = "User-agent: *\nDisallow: /*.pdf$"
mgr = RobotsTxtManager(make_fetch_fn(content=content))
assert await mgr.can_fetch("https://example.com/report.pdf", "s1") is False
assert await mgr.can_fetch("https://example.com/report.html", "s1") is True
@pytest.mark.asyncio
async def test_returns_bool(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_BASIC))
result = await mgr.can_fetch("https://example.com/", "s1")
assert isinstance(result, bool)
# ---------------------------------------------------------------------------
# Tests: get_delay_directives
# ---------------------------------------------------------------------------
class TestGetDelayDirectives:
@pytest.mark.asyncio
async def test_returns_crawl_delay_when_set(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_BASIC))
c_delay, r_rate = await mgr.get_delay_directives("https://example.com/", "s1")
assert c_delay == 2.0
assert isinstance(c_delay, float)
assert r_rate is None
@pytest.mark.asyncio
async def test_returns_request_rate_when_set(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_WITH_RATE))
c_delay, r_rate = await mgr.get_delay_directives("https://example.com/", "s1")
assert c_delay is None
assert r_rate is not None
assert r_rate == (1, 10)
@pytest.mark.asyncio
async def test_returns_both_none_when_not_set(self):
content = "User-agent: *\nDisallow: /admin/"
mgr = RobotsTxtManager(make_fetch_fn(content=content))
c_delay, r_rate = await mgr.get_delay_directives("https://example.com/", "s1")
assert c_delay is None
assert r_rate is None
@pytest.mark.asyncio
async def test_returns_both_none_for_empty_robots(self):
mgr = RobotsTxtManager(make_fetch_fn(content=""))
c_delay, r_rate = await mgr.get_delay_directives("https://example.com/", "s1")
assert c_delay is None
assert r_rate is None
@pytest.mark.asyncio
async def test_returns_both_none_on_fetch_error(self):
async def failing_fetch(url: str, sid: str) -> MockResponse:
raise ConnectionError("network failure")
mgr = RobotsTxtManager(failing_fetch)
c_delay, r_rate = await mgr.get_delay_directives("https://example.com/", "s1")
assert c_delay is None
assert r_rate is None
@pytest.mark.asyncio
async def test_fractional_crawl_delay(self):
content = "User-agent: *\nCrawl-delay: 0.5"
mgr = RobotsTxtManager(make_fetch_fn(content=content))
c_delay, _ = await mgr.get_delay_directives("https://example.com/", "s1")
assert c_delay == 0.5
@pytest.mark.asyncio
async def test_url_path_does_not_affect_result(self):
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_BASIC))
r1 = await mgr.get_delay_directives("https://example.com/", "s1")
r2 = await mgr.get_delay_directives("https://example.com/deep/path/page.html", "s1")
assert r1 == r2
# ---------------------------------------------------------------------------
# Tests: caching behaviour
# ---------------------------------------------------------------------------
class TestCachingBehaviour:
@pytest.mark.asyncio
async def test_second_call_same_domain_uses_cache(self):
fetch_fn = make_fetch_fn(content=ROBOTS_BASIC)
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("https://example.com/page1", "s1")
await mgr.can_fetch("https://example.com/page2", "s1")
assert len(fetch_fn.calls) == 1
@pytest.mark.asyncio
async def test_all_methods_share_cache(self):
fetch_fn = make_fetch_fn(content=ROBOTS_BASIC)
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("https://example.com/", "s1")
await mgr.get_delay_directives("https://example.com/", "s1")
assert len(fetch_fn.calls) == 1
@pytest.mark.asyncio
async def test_different_sids_share_cache_entry(self):
"""robots.txt is domain-level — different sessions share the same cached parser."""
fetch_fn = make_fetch_fn(content=ROBOTS_BASIC)
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("https://example.com/", "s1")
await mgr.can_fetch("https://example.com/", "s2")
assert len(fetch_fn.calls) == 1
@pytest.mark.asyncio
async def test_different_domains_use_separate_cache_entries(self):
fetch_fn = make_fetch_fn(content=ROBOTS_BASIC)
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("https://example.com/", "s1")
await mgr.can_fetch("https://other.com/", "s1")
assert len(fetch_fn.calls) == 2
@pytest.mark.asyncio
async def test_cache_keyed_by_domain_not_path(self):
fetch_fn = make_fetch_fn(content=ROBOTS_BASIC)
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("https://example.com/a/b/c", "s1")
await mgr.can_fetch("https://example.com/x/y/z", "s1")
await mgr.can_fetch("https://example.com/admin/", "s1")
assert len(fetch_fn.calls) == 1
@pytest.mark.asyncio
async def test_sid_is_passed_to_fetch_fn(self):
fetch_fn = make_fetch_fn(content=ROBOTS_BASIC)
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("https://example.com/", "my_session")
_, received_sid = fetch_fn.calls[0]
assert received_sid == "my_session"
# ---------------------------------------------------------------------------
# Tests: robots.txt URL construction
# ---------------------------------------------------------------------------
class TestRobotsTxtUrlConstruction:
@pytest.mark.asyncio
async def test_http_scheme_preserved(self):
fetch_fn = make_fetch_fn(content="")
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("http://example.com/page", "s1")
fetched_url, _ = fetch_fn.calls[0]
assert fetched_url == "http://example.com/robots.txt"
@pytest.mark.asyncio
async def test_https_scheme_preserved(self):
fetch_fn = make_fetch_fn(content="")
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("https://example.com/page", "s1")
fetched_url, _ = fetch_fn.calls[0]
assert fetched_url == "https://example.com/robots.txt"
@pytest.mark.asyncio
async def test_fetched_at_domain_root_regardless_of_request_path(self):
fetch_fn = make_fetch_fn(content="")
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("https://example.com/deep/nested/path/page.html", "s1")
fetched_url, _ = fetch_fn.calls[0]
assert fetched_url == "https://example.com/robots.txt"
@pytest.mark.asyncio
async def test_port_included_in_url(self):
fetch_fn = make_fetch_fn(content="")
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("http://example.com:8080/page", "s1")
fetched_url, _ = fetch_fn.calls[0]
assert fetched_url == "http://example.com:8080/robots.txt"
@pytest.mark.asyncio
async def test_different_ports_treated_as_different_domains(self):
fetch_fn = make_fetch_fn(content="")
mgr = RobotsTxtManager(fetch_fn)
await mgr.can_fetch("http://example.com:8000/page", "s1")
await mgr.can_fetch("http://example.com:9000/page", "s1")
assert len(fetch_fn.calls) == 2
urls = [call[0] for call in fetch_fn.calls]
assert "http://example.com:8000/robots.txt" in urls
assert "http://example.com:9000/robots.txt" in urls
# ---------------------------------------------------------------------------
# Tests: encoding
# ---------------------------------------------------------------------------
class TestEncoding:
@pytest.mark.asyncio
async def test_non_utf8_body_decoded_with_response_encoding(self):
content = "User-agent: *\nDisallow: /admin/\nCrawl-delay: 3"
body = content.encode("latin-1")
async def fetch_fn(url: str, sid: str) -> MockResponse:
return MockResponse(status=200, body=body, encoding="latin-1")
mgr = RobotsTxtManager(fetch_fn)
c_delay, _ = await mgr.get_delay_directives("https://example.com/", "s1")
assert c_delay == 3.0
@pytest.mark.asyncio
async def test_bytes_body_decoded_correctly(self):
content = "User-agent: *\nDisallow: /private/"
body = content.encode("utf-8")
async def fetch_fn(url: str, sid: str) -> MockResponse:
return MockResponse(status=200, body=body, encoding="utf-8")
mgr = RobotsTxtManager(fetch_fn)
assert await mgr.can_fetch("https://example.com/private/", "s1") is False
assert await mgr.can_fetch("https://example.com/public/", "s1") is True
# ---------------------------------------------------------------------------
# Tests: concurrent access
# ---------------------------------------------------------------------------
class TestCacheAndConcurrency:
@pytest.mark.asyncio
async def test_cached_domain_not_refetched(self):
"""Once a domain is cached, subsequent calls return the cached parser without fetching."""
fetch_count = 0
async def counting_fetch(url: str, sid: str) -> MockResponse:
nonlocal fetch_count
fetch_count += 1
return MockResponse(status=200, body=ROBOTS_BASIC.encode(), encoding="utf-8")
mgr = RobotsTxtManager(counting_fetch)
# First call fetches and caches
await mgr.can_fetch("https://example.com/page1", "s1")
# Subsequent calls hit the cache
for i in range(7):
await mgr.can_fetch(f"https://example.com/page{i + 2}", "s1")
assert fetch_count == 1
@pytest.mark.asyncio
async def test_concurrent_calls_different_domains_fetch_independently(self):
fetch_count = 0
async def slow_fetch(url: str, sid: str) -> MockResponse:
nonlocal fetch_count
fetch_count += 1
await asyncio.sleep(0.01)
return MockResponse(status=200, body=b"", encoding="utf-8")
mgr = RobotsTxtManager(slow_fetch)
await asyncio.gather(
mgr.can_fetch("https://alpha.com/", "s1"),
mgr.can_fetch("https://beta.com/", "s1"),
mgr.can_fetch("https://gamma.com/", "s1"),
)
assert fetch_count == 3
@pytest.mark.asyncio
async def test_concurrent_calls_consistent_results(self):
"""All concurrent callers should see the same allow/disallow result."""
mgr = RobotsTxtManager(make_fetch_fn(content=ROBOTS_BASIC))
results = await asyncio.gather(*[
mgr.can_fetch("https://example.com/admin/", "s1")
for _ in range(6)
])
assert all(r is False for r in results)
@pytest.mark.asyncio
async def test_different_sids_share_cache_after_first_fetch(self):
"""After the first fetch, all sessions share the cached parser regardless of sid."""
fetch_count = 0
async def counting_fetch(url: str, sid: str) -> MockResponse:
nonlocal fetch_count
fetch_count += 1
return MockResponse(status=200, body=b"", encoding="utf-8")
mgr = RobotsTxtManager(counting_fetch)
# First call fetches and caches
await mgr.can_fetch("https://example.com/", "s1")
# s2 and s3 hit the cache — no additional fetches
await mgr.can_fetch("https://example.com/", "s2")
await mgr.can_fetch("https://example.com/", "s3")
assert fetch_count == 1
# ---------------------------------------------------------------------------
# Tests: prefetch
# ---------------------------------------------------------------------------
class TestPrefetch:
@pytest.mark.asyncio
async def test_prefetch_fetches_all_domains(self):
fetch_fn = make_fetch_fn(content=ROBOTS_BASIC)
mgr = RobotsTxtManager(fetch_fn)
await mgr.prefetch(["https://a.com/", "https://b.com/", "https://c.com/"], "s1")
assert len(fetch_fn.calls) == 3
fetched = {url for url, _ in fetch_fn.calls}
assert fetched == {"https://a.com/robots.txt", "https://b.com/robots.txt", "https://c.com/robots.txt"}
@pytest.mark.asyncio
async def test_prefetch_warms_cache_for_subsequent_calls(self):
fetch_fn = make_fetch_fn(content=ROBOTS_BASIC)
mgr = RobotsTxtManager(fetch_fn)
await mgr.prefetch(["https://example.com/"], "s1")
assert len(fetch_fn.calls) == 1
# Any subsequent call for the same domain hits the cache
await mgr.can_fetch("https://example.com/products", "s1")
await mgr.can_fetch("https://example.com/products", "s2")
assert len(fetch_fn.calls) == 1
@pytest.mark.asyncio
async def test_prefetch_empty_list_is_noop(self):
fetch_fn = make_fetch_fn(content=ROBOTS_BASIC)
mgr = RobotsTxtManager(fetch_fn)
await mgr.prefetch([], "s1")
assert len(fetch_fn.calls) == 0