mirror of https://github.com/scrapy/scrapy.git
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
from unittest import TestCase
|
|
|
|
from testfixtures import LogCapture
|
|
|
|
from scrapy.spidermiddlewares.urllength import UrlLengthMiddleware
|
|
from scrapy.http import Response, Request
|
|
from scrapy.spiders import Spider
|
|
from scrapy.utils.test import get_crawler
|
|
from scrapy.settings import Settings
|
|
|
|
|
|
class TestUrlLengthMiddleware(TestCase):
|
|
|
|
def setUp(self):
|
|
self.maxlength = 25
|
|
settings = Settings({'URLLENGTH_LIMIT': self.maxlength})
|
|
|
|
crawler = get_crawler(Spider)
|
|
self.spider = crawler._create_spider('foo')
|
|
self.stats = crawler.stats
|
|
self.mw = UrlLengthMiddleware.from_settings(settings)
|
|
|
|
self.response = Response('http://scrapytest.org')
|
|
self.short_url_req = Request('http://scrapytest.org/')
|
|
self.long_url_req = Request('http://scrapytest.org/this_is_a_long_url')
|
|
self.reqs = [self.short_url_req, self.long_url_req]
|
|
|
|
def process_spider_output(self):
|
|
return list(self.mw.process_spider_output(self.response, self.reqs, self.spider))
|
|
|
|
def test_middleware_works(self):
|
|
self.assertEqual(self.process_spider_output(), [self.short_url_req])
|
|
|
|
def test_logging(self):
|
|
with LogCapture() as log:
|
|
self.process_spider_output()
|
|
|
|
ric = self.stats.get_value('urllength/request_ignored_count', spider=self.spider)
|
|
self.assertEqual(ric, 1)
|
|
|
|
self.assertIn(f'Ignoring link (url length > {self.maxlength})', str(log))
|