@@ -44,38 +44,48 @@ def test_sends_headers():
44
44
assert req .headers ['User-Agent' ] == 'PythonClient/' + VERSION
45
45
46
46
def test_can_use_http_proxy_via_environment_var (monkeypatch ):
47
- store = InMemoryFeatureStore ()
48
- ready = Event ()
49
- fake_stream_uri = 'http://not-real'
50
-
51
47
with start_server () as server :
48
+ config = Config (sdk_key = 'sdk-key' , stream_uri = 'http://not-real' )
52
49
monkeypatch .setenv ('http_proxy' , server .uri )
53
- config = Config (sdk_key = 'sdk-key' , stream_uri = fake_stream_uri )
54
- server .setup_response (fake_stream_uri + '/all' , 200 , fake_event , { 'Content-Type' : 'text/event-stream' })
55
-
56
- with StreamingUpdateProcessor (config , None , store , ready ) as sp :
57
- sp .start ()
58
- # For an insecure proxy request, our stub server behaves enough like the real thing to satisfy the
59
- # HTTP client, so we should be able to see the request go through. Note that the URI path will
60
- # actually be an absolute URI for a proxy request.
61
- req = server .await_request ()
62
- assert req .method == 'GET'
63
- ready .wait (1 )
64
- assert sp .initialized ()
50
+ _verify_http_proxy_is_used (server , config )
65
51
66
52
def test_can_use_https_proxy_via_environment_var (monkeypatch ):
67
- store = InMemoryFeatureStore ()
68
- ready = Event ()
69
- fake_stream_uri = 'https://not-real'
70
-
71
53
with start_server () as server :
54
+ config = Config (sdk_key = 'sdk-key' , stream_uri = 'https://not-real' )
72
55
monkeypatch .setenv ('https_proxy' , server .uri )
73
- config = Config (sdk_key = 'sdk-key' , stream_uri = fake_stream_uri )
74
- server .setup_response (fake_stream_uri + '/all' , 200 , fake_event , { 'Content-Type' : 'text/event-stream' })
56
+ _verify_https_proxy_is_used (server , config )
75
57
76
- with StreamingUpdateProcessor (config , None , store , ready ) as sp :
77
- sp .start ()
78
- # Our simple stub server implementation can't really do HTTPS proxying, so the request will fail, but
79
- # it can still record that it *got* the request, which proves that the request went to the proxy.
80
- req = server .await_request ()
81
- assert req .method == 'CONNECT'
58
+ def test_can_use_http_proxy_via_config ():
59
+ with start_server () as server :
60
+ config = Config (sdk_key = 'sdk-key' , stream_uri = 'http://not-real' , http_proxy = server .uri )
61
+ _verify_http_proxy_is_used (server , config )
62
+
63
+ def test_can_use_https_proxy_via_config ():
64
+ with start_server () as server :
65
+ config = Config (sdk_key = 'sdk-key' , stream_uri = 'https://not-real' , http_proxy = server .uri )
66
+ _verify_https_proxy_is_used (server , config )
67
+
68
+ def _verify_http_proxy_is_used (server , config ):
69
+ store = InMemoryFeatureStore ()
70
+ ready = Event ()
71
+ server .setup_response (config .stream_base_uri + '/all' , 200 , fake_event , { 'Content-Type' : 'text/event-stream' })
72
+ with StreamingUpdateProcessor (config , None , store , ready ) as sp :
73
+ sp .start ()
74
+ # For an insecure proxy request, our stub server behaves enough like the real thing to satisfy the
75
+ # HTTP client, so we should be able to see the request go through. Note that the URI path will
76
+ # actually be an absolute URI for a proxy request.
77
+ req = server .await_request ()
78
+ assert req .method == 'GET'
79
+ ready .wait (1 )
80
+ assert sp .initialized ()
81
+
82
+ def _verify_https_proxy_is_used (server , config ):
83
+ store = InMemoryFeatureStore ()
84
+ ready = Event ()
85
+ server .setup_response (config .stream_base_uri + '/all' , 200 , fake_event , { 'Content-Type' : 'text/event-stream' })
86
+ with StreamingUpdateProcessor (config , None , store , ready ) as sp :
87
+ sp .start ()
88
+ # Our simple stub server implementation can't really do HTTPS proxying, so the request will fail, but
89
+ # it can still record that it *got* the request, which proves that the request went to the proxy.
90
+ req = server .await_request ()
91
+ assert req .method == 'CONNECT'
0 commit comments