aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/util/stream_context_factory_test.rs
blob: ad123aa091d126795bc8e0550c0d4c2cb3bf3d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
//! ref: composer/tests/Composer/Test/Util/StreamContextFactoryTest.php

// These build a stream context and assert proxy/option handling driven by HTTP(S)_PROXY /
// no_proxy environment variables; the env-dependent setup (without its setUp/tearDown
// isolation) is not ported.
use indexmap::IndexMap;
use shirabe::util::http::proxy_manager::ProxyManager;
use shirabe::util::platform::Platform;
use shirabe::util::stream_context_factory::StreamContextFactory;
use shirabe_php_shim::{
    PhpMixed, base64_encode, extension_loaded, implode, stream_context_get_options, stripos,
};

fn s(value: &str) -> PhpMixed {
    PhpMixed::String(value.to_string())
}

fn arr(entries: Vec<(&str, PhpMixed)>) -> PhpMixed {
    PhpMixed::Array(
        entries
            .into_iter()
            .map(|(k, v)| (k.to_string(), v))
            .collect(),
    )
}

fn list(items: Vec<PhpMixed>) -> PhpMixed {
    PhpMixed::List(items)
}

fn map(entries: Vec<(&str, PhpMixed)>) -> IndexMap<String, PhpMixed> {
    entries
        .into_iter()
        .map(|(k, v)| (k.to_string(), v))
        .collect()
}

fn set_up() {
    Platform::clear_env("HTTP_PROXY");
    Platform::clear_env("http_proxy");
    Platform::clear_env("HTTPS_PROXY");
    Platform::clear_env("https_proxy");
    Platform::clear_env("NO_PROXY");
    Platform::clear_env("no_proxy");
    ProxyManager::reset();
}

fn tear_down() {
    Platform::clear_env("HTTP_PROXY");
    Platform::clear_env("http_proxy");
    Platform::clear_env("HTTPS_PROXY");
    Platform::clear_env("https_proxy");
    Platform::clear_env("NO_PROXY");
    Platform::clear_env("no_proxy");
    ProxyManager::reset();
}

struct TearDown;

impl Drop for TearDown {
    fn drop(&mut self) {
        tear_down();
    }
}

// PHP's dataGetContext second data set passes a `notification` closure in both the default and
// expected params; PhpMixed has no closure variant, so that data set (and thus the all-or-nothing
// testGetContext) cannot be expressed.
#[test]
#[ignore = "dataGetContext passes a notification closure in params; PhpMixed cannot represent a PHP closure, so the data set is unportable"]
fn test_get_context() {
    let _tear_down = TearDown;
    set_up();
    todo!()
}

#[test]
#[ignore]
fn test_http_proxy() {
    let _tear_down = TearDown;
    set_up();
    Platform::put_env(
        "http_proxy",
        "http://username:p%40ssword@proxyserver.net:3128/",
    );
    Platform::put_env("HTTP_PROXY", "http://proxyserver/");

    let default_options = map(vec![(
        "http",
        arr(vec![("method", s("GET")), ("header", s("User-Agent: foo"))]),
    )]);
    let context =
        StreamContextFactory::get_context("http://example.org", default_options, IndexMap::new())
            .unwrap();
    let options = stream_context_get_options(&context);

    let expected = map(vec![(
        "http",
        arr(vec![
            ("proxy", s("tcp://proxyserver.net:3128")),
            ("request_fulluri", PhpMixed::Bool(true)),
            ("method", s("GET")),
            (
                "header",
                list(vec![
                    s("User-Agent: foo"),
                    s(&format!(
                        "Proxy-Authorization: Basic {}",
                        base64_encode("username:p@ssword")
                    )),
                ]),
            ),
            ("max_redirects", PhpMixed::Int(20)),
            ("follow_location", PhpMixed::Int(1)),
        ]),
    )]);
    assert_eq!(expected, options);
}

#[test]
#[ignore]
fn test_http_proxy_with_no_proxy() {
    let _tear_down = TearDown;
    set_up();
    Platform::put_env(
        "http_proxy",
        "http://username:password@proxyserver.net:3128/",
    );
    Platform::put_env("no_proxy", "foo,example.org");

    let default_options = map(vec![(
        "http",
        arr(vec![("method", s("GET")), ("header", s("User-Agent: foo"))]),
    )]);
    let context =
        StreamContextFactory::get_context("http://example.org", default_options, IndexMap::new())
            .unwrap();
    let options = stream_context_get_options(&context);

    let expected = map(vec![(
        "http",
        arr(vec![
            ("method", s("GET")),
            ("max_redirects", PhpMixed::Int(20)),
            ("follow_location", PhpMixed::Int(1)),
            ("header", list(vec![s("User-Agent: foo")])),
        ]),
    )]);
    assert_eq!(expected, options);
}

#[test]
#[ignore]
fn test_http_proxy_with_no_proxy_wildcard() {
    let _tear_down = TearDown;
    set_up();
    Platform::put_env(
        "http_proxy",
        "http://username:password@proxyserver.net:3128/",
    );
    Platform::put_env("no_proxy", "*");

    let default_options = map(vec![(
        "http",
        arr(vec![("method", s("GET")), ("header", s("User-Agent: foo"))]),
    )]);
    let context =
        StreamContextFactory::get_context("http://example.org", default_options, IndexMap::new())
            .unwrap();
    let options = stream_context_get_options(&context);

    let expected = map(vec![(
        "http",
        arr(vec![
            ("method", s("GET")),
            ("max_redirects", PhpMixed::Int(20)),
            ("follow_location", PhpMixed::Int(1)),
            ("header", list(vec![s("User-Agent: foo")])),
        ]),
    )]);
    assert_eq!(expected, options);
}

#[test]
#[ignore]
fn test_options_are_preserved() {
    let _tear_down = TearDown;
    set_up();
    Platform::put_env(
        "http_proxy",
        "http://username:password@proxyserver.net:3128/",
    );

    let default_options = map(vec![(
        "http",
        arr(vec![
            ("method", s("GET")),
            ("header", list(vec![s("User-Agent: foo"), s("X-Foo: bar")])),
            ("request_fulluri", PhpMixed::Bool(false)),
        ]),
    )]);
    let context =
        StreamContextFactory::get_context("http://example.org", default_options, IndexMap::new())
            .unwrap();
    let options = stream_context_get_options(&context);

    let expected = map(vec![(
        "http",
        arr(vec![
            ("proxy", s("tcp://proxyserver.net:3128")),
            ("request_fulluri", PhpMixed::Bool(false)),
            ("method", s("GET")),
            (
                "header",
                list(vec![
                    s("User-Agent: foo"),
                    s("X-Foo: bar"),
                    s(&format!(
                        "Proxy-Authorization: Basic {}",
                        base64_encode("username:password")
                    )),
                ]),
            ),
            ("max_redirects", PhpMixed::Int(20)),
            ("follow_location", PhpMixed::Int(1)),
        ]),
    )]);
    assert_eq!(expected, options);
}

#[test]
#[ignore]
fn test_http_proxy_without_port() {
    let _tear_down = TearDown;
    set_up();
    Platform::put_env("https_proxy", "http://username:password@proxyserver.net");

    let default_options = map(vec![(
        "http",
        arr(vec![("method", s("GET")), ("header", s("User-Agent: foo"))]),
    )]);
    let context =
        StreamContextFactory::get_context("https://example.org", default_options, IndexMap::new())
            .unwrap();
    let options = stream_context_get_options(&context);

    let expected = map(vec![(
        "http",
        arr(vec![
            ("proxy", s("tcp://proxyserver.net:80")),
            ("method", s("GET")),
            (
                "header",
                list(vec![
                    s("User-Agent: foo"),
                    s(&format!(
                        "Proxy-Authorization: Basic {}",
                        base64_encode("username:password")
                    )),
                ]),
            ),
            ("max_redirects", PhpMixed::Int(20)),
            ("follow_location", PhpMixed::Int(1)),
        ]),
    )]);
    assert_eq!(expected, options);
}

#[test]
#[ignore]
fn test_https_proxy_override() {
    let _tear_down = TearDown;
    set_up();
    if !extension_loaded("openssl") {
        // markTestSkipped('Requires openssl')
        return;
    }

    Platform::put_env("http_proxy", "http://username:password@proxyserver.net");
    Platform::put_env("https_proxy", "https://woopproxy.net");

    // Pointless test replaced by ProxyHelperTest.php
    // expectException('Composer\Downloader\TransportException')
    let result = StreamContextFactory::get_context(
        "https://example.org",
        map(vec![(
            "http",
            arr(vec![("method", s("GET")), ("header", s("User-Agent: foo"))]),
        )]),
        IndexMap::new(),
    );
    assert!(result.is_err());
}

#[test]
#[ignore]
fn test_ssl_proxy() {
    let _tear_down = TearDown;
    for (expected, proxy) in [
        ("ssl://proxyserver:443", "https://proxyserver/"),
        ("ssl://proxyserver:8443", "https://proxyserver:8443"),
    ] {
        set_up();
        Platform::put_env("http_proxy", proxy);

        if extension_loaded("openssl") {
            let context = StreamContextFactory::get_context(
                "http://example.org",
                map(vec![("http", arr(vec![("header", s("User-Agent: foo"))]))]),
                IndexMap::new(),
            )
            .unwrap();
            let options = stream_context_get_options(&context);

            let expected_options = map(vec![(
                "http",
                arr(vec![
                    ("proxy", s(expected)),
                    ("request_fulluri", PhpMixed::Bool(true)),
                    ("max_redirects", PhpMixed::Int(20)),
                    ("follow_location", PhpMixed::Int(1)),
                    ("header", list(vec![s("User-Agent: foo")])),
                ]),
            )]);
            assert_eq!(expected_options, options);
        } else {
            match StreamContextFactory::get_context(
                "http://example.org",
                IndexMap::new(),
                IndexMap::new(),
            ) {
                // The catch in PHP asserts the exception is a TransportException; the return type
                // here already guarantees that.
                Ok(_) => panic!(),
                Err(_) => {}
            }
        }
    }
}

#[test]
fn test_ensure_thatfix_http_header_field_moves_content_type_to_end_of_options() {
    let _tear_down = TearDown;
    set_up();
    let options = map(vec![(
        "http",
        arr(vec![(
            "header",
            s(
                "User-agent: foo\r\nX-Foo: bar\r\nContent-Type: application/json\r\nAuthorization: Basic aW52YWxpZA==",
            ),
        )]),
    )]);
    let expected_header = vec![
        s("User-agent: foo"),
        s("X-Foo: bar"),
        s("Authorization: Basic aW52YWxpZA=="),
        s("Content-Type: application/json"),
    ];
    let context =
        StreamContextFactory::get_context("http://example.org", options, IndexMap::new()).unwrap();
    let ctxoptions = stream_context_get_options(&context);
    let ctx_header = ctxoptions
        .get("http")
        .and_then(|v| v.as_array())
        .and_then(|a| a.get("header"))
        .and_then(|v| v.as_list())
        .unwrap();
    assert_eq!(expected_header.last().unwrap(), ctx_header.last().unwrap());
}

#[test]
#[ignore]
fn test_init_options_does_include_proxy_auth_headers() {
    let _tear_down = TearDown;
    set_up();
    Platform::put_env(
        "https_proxy",
        "http://username:password@proxyserver.net:3128/",
    );

    let options: IndexMap<String, PhpMixed> = IndexMap::new();
    let options =
        StreamContextFactory::init_options("https://example.org", options, false).unwrap();
    let header_list: Vec<String> = options
        .get("http")
        .and_then(|v| v.as_array())
        .and_then(|a| a.get("header"))
        .and_then(|v| v.as_list())
        .unwrap()
        .iter()
        .filter_map(|item| item.as_string().map(|s| s.to_string()))
        .collect();
    let headers = implode(" ", &header_list);

    assert!(stripos(&headers, "Proxy-Authorization").is_some());
}

#[test]
#[ignore]
fn test_init_options_for_curl_does_not_include_proxy_auth_headers() {
    let _tear_down = TearDown;
    set_up();
    Platform::put_env(
        "http_proxy",
        "http://username:password@proxyserver.net:3128/",
    );

    let options: IndexMap<String, PhpMixed> = IndexMap::new();
    let options = StreamContextFactory::init_options("https://example.org", options, true).unwrap();
    let header_list: Vec<String> = options
        .get("http")
        .and_then(|v| v.as_array())
        .and_then(|a| a.get("header"))
        .and_then(|v| v.as_list())
        .unwrap()
        .iter()
        .filter_map(|item| item.as_string().map(|s| s.to_string()))
        .collect();
    let headers = implode(" ", &header_list);

    assert!(stripos(&headers, "Proxy-Authorization").is_none());
}