コード例 #1
0
    def test_get_connection(self):
        adapter = CloudflareAdapter()

        conn = adapter.get_connection("https://127.0.0.1", None)

        conn.conn_kw.should.be.a("dict")
        conn.conn_kw.should.have.key("ssl_context")
        ssl_context = conn.conn_kw["ssl_context"]

        # This should be ssl.SSLContext unless pyOpenSSL is installed.
        # If pyOpenSSL is injected into urllib3, this should still work.
        try:
            assert isinstance(ssl_context, urllib3.contrib.pyopenssl.PyOpenSSLContext)
        except BaseException:
            assert isinstance(ssl_context, ssl.SSLContext)

        adapter.close()
コード例 #2
0
    def __init__(self):
        self.CookieJar = None
        self.Logger = None
        self.PtpUploader = None
        self.SourceFactory = None
        self.PtpSubtitle = None
        self.TorrentClient = None

        self.session = requests.session()
        self.session.headers.update({
            "User-Agent":
            "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.45 Safari/537.36"
        })

        # Use cloudflare-scrape if installed.
        try:
            from cfscrape import CloudflareAdapter
            self.session.mount("http://", CloudflareAdapter())
            self.session.mount("https://", CloudflareAdapter())
        except ImportError:
            pass
コード例 #3
0
    def test_set_ciphers(self):
        adapter = CloudflareAdapter()

        # Reinitialize the pool manager with a different context
        ctx = ssl.create_default_context()
        adapter.init_poolmanager(1, 1, ssl_context=ctx)
        # Check to see if the context remains the same without error
        conn = adapter.get_connection('https://127.0.0.1', None)
        conn.conn_kw.should.be.a("dict")
        assert conn.conn_kw["ssl_context"] is ctx

        adapter.close()
コード例 #4
0
 def test_create_adapter(self):
     adapter = CloudflareAdapter()
     adapter.should.be.a("requests.adapters.HTTPAdapter")
     adapter.close()