mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-06 11:00:46 +00:00
23 lines
636 B
Python
23 lines
636 B
Python
import unittest
|
|
from urllib.parse import urlparse
|
|
|
|
from scrapy.http import Request
|
|
from scrapy.utils.httpobj import urlparse_cached
|
|
|
|
|
|
class HttpobjUtilsTest(unittest.TestCase):
|
|
def test_urlparse_cached(self):
|
|
url = "http://www.example.com/index.html"
|
|
request1 = Request(url)
|
|
request2 = Request(url)
|
|
req1a = urlparse_cached(request1)
|
|
req1b = urlparse_cached(request1)
|
|
req2 = urlparse_cached(request2)
|
|
urlp = urlparse(url)
|
|
|
|
assert req1a == req2
|
|
assert req1a == urlp
|
|
assert req1a is req1b
|
|
assert req1a is not req2
|
|
assert req1a is not req2
|