from __future__ import annotations import asyncio from gzip import BadGzipFile from unittest import mock import pytest from twisted.internet.defer import Deferred, succeed from twisted.trial.unittest import TestCase from scrapy.core.downloader.middleware import DownloaderMiddlewareManager from scrapy.exceptions import _InvalidOutput from scrapy.http import Request, Response from scrapy.spiders import Spider from scrapy.utils.defer import deferred_f_from_coro_f, maybe_deferred_to_future from scrapy.utils.python import to_bytes from scrapy.utils.test import get_crawler, get_from_asyncio_queue class TestManagerBase(TestCase): settings_dict = None def setUp(self): self.crawler = get_crawler(Spider, self.settings_dict) self.spider = self.crawler._create_spider("foo") self.mwman = DownloaderMiddlewareManager.from_crawler(self.crawler) self.crawler.engine = self.crawler._create_engine() return self.crawler.engine.open_spider(self.spider) def tearDown(self): return self.crawler.engine.close_spider(self.spider) async def _download( self, request: Request, response: Response | None = None ) -> Response | Request: """Executes downloader mw manager's download method and returns the result (Request or Response) or raises exception in case of failure. """ if not response: response = Response(request.url) def download_func(request: Request, spider: Spider) -> Deferred[Response]: return succeed(response) return await maybe_deferred_to_future( self.mwman.download(download_func, request, self.spider) ) class TestDefaults(TestManagerBase): """Tests default behavior with default settings""" @deferred_f_from_coro_f async def test_request_response(self): req = Request("http://example.com/index.html") resp = Response(req.url, status=200) ret = await self._download(req, resp) assert isinstance(ret, Response), "Non-response returned" @deferred_f_from_coro_f async def test_3xx_and_invalid_gzipped_body_must_redirect(self): """Regression test for a failure when redirecting a compressed request. This happens when httpcompression middleware is executed before redirect middleware and attempts to decompress a non-compressed body. In particular when some website returns a 30x response with header 'Content-Encoding: gzip' giving as result the error below: BadGzipFile: Not a gzipped file (...) """ req = Request("http://example.com") body = b"
You are being redirected
" resp = Response( req.url, status=302, body=body, headers={ "Content-Length": str(len(body)), "Content-Type": "text/html", "Content-Encoding": "gzip", "Location": "http://example.com/login", }, ) ret = await self._download(req, resp) assert isinstance(ret, Request), f"Not redirected: {ret!r}" assert to_bytes(ret.url) == resp.headers["Location"], ( "Not redirected to location header" ) @deferred_f_from_coro_f async def test_200_and_invalid_gzipped_body_must_fail(self): req = Request("http://example.com") body = b"You are being redirected
" resp = Response( req.url, status=200, body=body, headers={ "Content-Length": str(len(body)), "Content-Type": "text/html", "Content-Encoding": "gzip", "Location": "http://example.com/login", }, ) with pytest.raises(BadGzipFile): await self._download(req, resp) class TestResponseFromProcessRequest(TestManagerBase): """Tests middleware returning a response from process_request.""" @deferred_f_from_coro_f async def test_download_func_not_called(self): resp = Response("http://example.com/index.html") class ResponseMiddleware: def process_request(self, request, spider): return resp self.mwman._add_middleware(ResponseMiddleware()) req = Request("http://example.com/index.html") download_func = mock.MagicMock() result = await maybe_deferred_to_future( self.mwman.download(download_func, req, self.spider) ) assert result is resp assert not download_func.called class TestInvalidOutput(TestManagerBase): @deferred_f_from_coro_f async def test_invalid_process_request(self): """Invalid return value for process_request method should raise an exception""" req = Request("http://example.com/index.html") class InvalidProcessRequestMiddleware: def process_request(self, request, spider): return 1 self.mwman._add_middleware(InvalidProcessRequestMiddleware()) with pytest.raises(_InvalidOutput): await self._download(req) @deferred_f_from_coro_f async def test_invalid_process_response(self): """Invalid return value for process_response method should raise an exception""" req = Request("http://example.com/index.html") class InvalidProcessResponseMiddleware: def process_response(self, request, response, spider): return 1 self.mwman._add_middleware(InvalidProcessResponseMiddleware()) with pytest.raises(_InvalidOutput): await self._download(req) @deferred_f_from_coro_f async def test_invalid_process_exception(self): """Invalid return value for process_exception method should raise an exception""" req = Request("http://example.com/index.html") class InvalidProcessExceptionMiddleware: def process_request(self, request, spider): raise RuntimeError def process_exception(self, request, exception, spider): return 1 self.mwman._add_middleware(InvalidProcessExceptionMiddleware()) with pytest.raises(_InvalidOutput): await self._download(req) class TestMiddlewareUsingDeferreds(TestManagerBase): """Middlewares using Deferreds should work""" @deferred_f_from_coro_f async def test_deferred(self): resp = Response("http://example.com/index.html") class DeferredMiddleware: def cb(self, result): return result def process_request(self, request, spider): d = Deferred() d.addCallback(self.cb) d.callback(resp) return d self.mwman._add_middleware(DeferredMiddleware()) req = Request("http://example.com/index.html") download_func = mock.MagicMock() result = await maybe_deferred_to_future( self.mwman.download(download_func, req, self.spider) ) assert result is resp assert not download_func.called @pytest.mark.usefixtures("reactor_pytest") class TestMiddlewareUsingCoro(TestManagerBase): """Middlewares using asyncio coroutines should work""" @deferred_f_from_coro_f async def test_asyncdef(self): resp = Response("http://example.com/index.html") class CoroMiddleware: async def process_request(self, request, spider): await succeed(42) return resp self.mwman._add_middleware(CoroMiddleware()) req = Request("http://example.com/index.html") download_func = mock.MagicMock() result = await maybe_deferred_to_future( self.mwman.download(download_func, req, self.spider) ) assert result is resp assert not download_func.called @pytest.mark.only_asyncio @deferred_f_from_coro_f async def test_asyncdef_asyncio(self): resp = Response("http://example.com/index.html") class CoroMiddleware: async def process_request(self, request, spider): await asyncio.sleep(0.1) return await get_from_asyncio_queue(resp) self.mwman._add_middleware(CoroMiddleware()) req = Request("http://example.com/index.html") download_func = mock.MagicMock() result = await maybe_deferred_to_future( self.mwman.download(download_func, req, self.spider) ) assert result is resp assert not download_func.called