Ejemplo n.º 1
0
def test_idna_with_version_attribute(mocker):
    """Verify we're actually setting idna version when it should be available."""
    mocker.patch("requests3.help.idna", new=VersionedPackage("2.6"))
    assert info()["idna"] == {"version": "2.6"}
Ejemplo n.º 2
0
def test_system_ssl():
    """Verify we're actually setting system_ssl when it should be available."""
    assert info()["system_ssl"]["version"] != ""
Ejemplo n.º 3
0
def test_idna_without_version_attribute(mocker):
    """Older versions of IDNA don't provide a __version__ attribute, verify
    that if we have such a package, we don't blow up.
    """
    mocker.patch("requests3.help.idna", new=None)
    assert info()["idna"] == {"version": ""}
Ejemplo n.º 4
0
def test_system_ssl_py26():
    """OPENSSL_VERSION_NUMBER isn't provided in Python 2.6, verify we don't
    blow up in this case.
    """
    assert info()["system_ssl"] == {"version": ""}