2016-03-06 10:42:35 +01:00
|
|
|
import pytest
|
2018-06-09 11:59:34 +02:00
|
|
|
from pytest_httpbin import certs
|
2016-03-06 10:42:35 +01:00
|
|
|
|
|
|
|
|
2018-06-09 11:59:34 +02:00
|
|
|
@pytest.fixture(scope='function', autouse=True)
|
|
|
|
def httpbin_add_ca_bundle(monkeypatch):
|
|
|
|
"""
|
|
|
|
Make pytest-httpbin's CA trusted by default.
|
|
|
|
|
|
|
|
(Same as `httpbin_ca_bundle`, just auto-used.).
|
|
|
|
|
|
|
|
"""
|
|
|
|
monkeypatch.setenv('REQUESTS_CA_BUNDLE', certs.where())
|
2016-03-06 10:42:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope='function')
|
|
|
|
def httpbin_secure_untrusted(monkeypatch, httpbin_secure):
|
2018-06-09 11:59:34 +02:00
|
|
|
"""
|
|
|
|
Like the `httpbin_secure` fixture, but without the
|
|
|
|
make-CA-trusted-by-default.
|
|
|
|
|
|
|
|
"""
|
2016-03-06 10:42:35 +01:00
|
|
|
monkeypatch.delenv('REQUESTS_CA_BUNDLE')
|
|
|
|
return httpbin_secure
|