forked from nginx/nginx-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrailers.t
134 lines (95 loc) · 2.97 KB
/
trailers.t
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
#!/usr/bin/perl
# (C) Sergey Kandaurov
# (C) Nginx, Inc.
# Tests for trailers in headers filter module.
###############################################################################
use warnings;
use strict;
use Test::More;
use Socket qw/ $CRLF /;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
my $t = Test::Nginx->new()->has(qw/http proxy/)->plan(17)
->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
http {
%%TEST_GLOBALS_HTTP%%
server {
listen 127.0.0.1:8080;
server_name localhost;
add_trailer X-Var $host;
add_trailer X-Always $host always;
add_trailer X-Empty '';
add_trailer X-Sent-HTTP $sent_http_accept_ranges;
add_trailer X-Sent-Trailer $sent_trailer_x_var;
add_trailer X-Complex $host:$host;
location /t1 {
}
location /nx {
}
location /header {
add_header X-Var foo;
}
location /empty {
add_trailer X-Var $host;
}
location /not_chunked {
chunked_transfer_encoding off;
}
location /proxy {
proxy_pass http://127.0.0.1:8080/t1;
add_trailer X-Length $upstream_response_length;
}
}
}
EOF
$t->write_file('t1', 'SEE-THIS');
$t->write_file('header', '');
$t->run();
###############################################################################
my $r;
$r = get('/t1');
like($r, qr/8${CRLF}SEE-THIS${CRLF}0${CRLF}(.+${CRLF}){5}$CRLF/, 'trailers');
unlike($r, qr/X-Var.*SEE-THIS/s, 'not in headers');
like($r, qr/X-Var: localhost/, 'add_trailer');
like($r, qr/X-Always/, 'add_trailer always');
like($r, qr/X-Sent-HTTP: bytes/, 'add_trailer sent_http');
like($r, qr/X-Sent-Trailer: localhost/, 'add_trailer sent_trailer');
like($r, qr/X-Complex: localhost:localhost/, 'add_trailer complex');
unlike($r, qr/X-Empty/, 'add_trailer empty');
$r = get('/nx');
unlike($r, qr/X-Var/, 'add_trailer bad');
like($r, qr/X-Always/, 'add_trailer bad always');
like(get('/header'), qr/foo.*^0$CRLF.*X-Var: localhost/ms, 'header name');
like(http_get('/t1'), qr/${CRLF}SEE-THIS$/, 'no trailers - http10');
unlike(get('/not_chunked'), qr/X-Always/, 'no trailers - not chunked');
unlike(head('/t1'), qr/X-Always/, 'no trailers - head');
unlike(get('/empty'), qr/X-Var/, 'no trailers expected');
$r = get('/proxy');
like($r, qr/SEE-THIS.*X-Length: 8/ms, 'upstream response variable');
unlike($r, qr/X-Var/, 'inheritance');
###############################################################################
sub get {
my ($uri) = @_;
http(<<EOF);
GET $uri HTTP/1.1
Host: localhost
Connection: close
EOF
}
sub head {
my ($uri) = @_;
http(<<EOF);
HEAD $uri HTTP/1.1
Host: localhost
Connection: close
EOF
}
###############################################################################