annotate grpc.t @ 1961:fe6f22da53ec default tip

Tests: tests for usage of discarded body. The client_max_body_size limit should be ignored when the request body is already discarded. In HTTP/1.x, this is done by checking the r->discard_body flag when the body is being discarded, and because r->headers_in.content_length_n is 0 when it's already discarded. This, however, does not happen with HTTP/2 and HTTP/3, and therefore "error_page 413" does not work without relaxing the limit. Further, with proxy_pass, r->headers_in.content_length_n is used to determine length of the request body, and therefore is not correct if discarding of the request body isn't yet complete. While discarding the request body, r->headers_in.content_length_n contains the rest of the body to discard (or, in case of chunked request body, the rest of the current chunk to discard). Similarly, the $content_length variable uses r->headers_in.content_length if available, and also incorrect. The $content_length variable is used when proxying with fastcgi_pass, grpc_pass, and uwsgi_pass (scgi_pass uses the value calculated based on the actual request body buffers, and therefore works correctly).
author Maxim Dounin <mdounin@mdounin.ru>
date Sat, 27 Apr 2024 18:55:50 +0300
parents 2a0a6035a1af
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
1 #!/usr/bin/perl
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
2
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
3 # (C) Sergey Kandaurov
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
4 # (C) Nginx, Inc.
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
5
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
6 # Tests for grpc backend.
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
7
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
8 ###############################################################################
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
9
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
10 use warnings;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
11 use strict;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
12
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
13 use Test::More;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
14
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
15 BEGIN { use FindBin; chdir($FindBin::Bin); }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
16
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
17 use lib 'lib';
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
18 use Test::Nginx;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
19 use Test::Nginx::HTTP2;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
20
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
21 ###############################################################################
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
22
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
23 select STDERR; $| = 1;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
24 select STDOUT; $| = 1;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
25
1312
6f95c0ed2335 Tests: removed proxy prerequisite from grpc tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1303
diff changeset
26 my $t = Test::Nginx->new()->has(qw/http rewrite http_v2 grpc/)
1715
3604ef83c1aa Tests: added header name tests with forbidden characters.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1707
diff changeset
27 ->has(qw/upstream_keepalive/)->plan(146);
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
28
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
29 $t->write_file_expand('nginx.conf', <<'EOF');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
30
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
31 %%TEST_GLOBALS%%
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
32
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
33 daemon off;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
34
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
35 events {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
36 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
37
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
38 http {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
39 %%TEST_GLOBALS_HTTP%%
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
40
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
41 upstream u {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
42 server 127.0.0.1:8081;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
43 keepalive 1;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
44 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
45
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
46 server {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
47 listen 127.0.0.1:8080 http2;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
48 server_name localhost;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
49
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
50 http2_body_preread_size 128k;
1653
259dfb223f9a Tests: compatibility with http2_max_header/field_size removal.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1631
diff changeset
51 large_client_header_buffers 4 32k;
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
52
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
53 location / {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
54 grpc_pass grpc://127.0.0.1:8081;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
55
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
56 if ($arg_if) {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
57 # nothing
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
58 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
59
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
60 limit_except GET {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
61 # nothing
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
62 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
63 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
64
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
65 location /KeepAlive {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
66 grpc_pass u;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
67 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
68
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
69 location /LongHeader {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
70 grpc_pass 127.0.0.1:8081;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
71 grpc_set_header X-LongHeader $arg_h;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
72 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
73
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
74 location /LongField {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
75 grpc_pass 127.0.0.1:8081;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
76 grpc_buffer_size 65k;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
77 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
78
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
79 location /SetHost {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
80 grpc_pass 127.0.0.1:8081;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
81 grpc_set_header Host custom;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
82 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
83
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
84 location /SetArgs {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
85 grpc_pass 127.0.0.1:8081;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
86 set $args $arg_c;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
87 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
88 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
89 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
90
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
91 EOF
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
92
1900
236d038dc04a Tests: suppress "listen .. http2;" deprecation warnings.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1748
diff changeset
93 # suppress deprecation warning
236d038dc04a Tests: suppress "listen .. http2;" deprecation warnings.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1748
diff changeset
94
236d038dc04a Tests: suppress "listen .. http2;" deprecation warnings.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1748
diff changeset
95 open OLDERR, ">&", \*STDERR; close STDERR;
1381
97c8280de681 Tests: removed TODO and try_run() checks for legacy versions.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1370
diff changeset
96 $t->run();
1900
236d038dc04a Tests: suppress "listen .. http2;" deprecation warnings.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1748
diff changeset
97 open STDERR, ">&", \*OLDERR;
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
98
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
99 ###############################################################################
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
100
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
101 my $p = port(8081);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
102 my $f = grpc();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
103
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
104 my $frames = $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
105 my ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
106 is($frame->{flags}, 4, 'request - HEADERS flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
107 ok((my $sid = $frame->{sid}) % 2, 'request - HEADERS sid odd');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
108 is($frame->{headers}{':method'}, 'POST', 'request - method');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
109 is($frame->{headers}{':scheme'}, 'http', 'request - scheme');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
110 is($frame->{headers}{':path'}, '/SayHello', 'request - path');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
111 is($frame->{headers}{':authority'}, "127.0.0.1:$p", 'request - authority');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
112 is($frame->{headers}{'content-type'}, 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
113 'request - content type');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
114 is($frame->{headers}{te}, 'trailers', 'request - te');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
115
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
116 $frames = $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
117 ($frame) = grep { $_->{type} eq "SETTINGS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
118 is($frame->{flags}, 1, 'request - SETTINGS ack');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
119 is($frame->{sid}, 0, 'request - SETTINGS sid');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
120 is($frame->{length}, 0, 'request - SETTINGS length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
121
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
122 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
123 is($frame->{data}, 'Hello', 'request - DATA');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
124 is($frame->{length}, 5, 'request - DATA length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
125 is($frame->{flags}, 1, 'request - DATA flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
126 is($frame->{sid}, $sid, 'request - DATA sid match');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
127
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
128 $frames = $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
129 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
130 is($frame->{flags}, 4, 'response - HEADERS flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
131 is($frame->{sid}, 1, 'response - HEADERS sid');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
132 is($frame->{headers}{':status'}, '200', 'response - status');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
133 is($frame->{headers}{'content-type'}, 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
134 'response - content type');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
135 ok($frame->{headers}{server}, 'response - server');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
136 ok($frame->{headers}{date}, 'response - date');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
137 ok(my $c = $frame->{headers}{'x-connection'}, 'response - connection');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
138
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
139 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
140 is($frame->{data}, 'Hello world', 'response - DATA');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
141 is($frame->{length}, 11, 'response - DATA length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
142 is($frame->{flags}, 0, 'response - DATA flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
143 is($frame->{sid}, 1, 'response - DATA sid');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
144
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
145 (undef, $frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
146 is($frame->{flags}, 5, 'response - trailers flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
147 is($frame->{sid}, 1, 'response - trailers sid');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
148 is($frame->{headers}{'grpc-message'}, '', 'response - trailers message');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
149 is($frame->{headers}{'grpc-status'}, '0', 'response - trailers status');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
150
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
151 # next request is on a new backend connection, no sid incremented
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
152
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
153 $frames = $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
154 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
155 is($frame->{sid}, $sid, 'request 2 - HEADERS sid again');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
156 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
157 $frames = $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
158 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
159 cmp_ok($frame->{headers}{'x-connection'}, '>', $c, 'response 2 - connection');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
160
1698
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
161 # request body - special last buffer
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
162
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
163 $f->{http_start}('/SayHello');
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
164 $frames = $f->{data}('Hello', body_more => 1);
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
165 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
166 is($frame->{data}, 'Hello', 'request body first - DATA');
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
167 is($frame->{length}, 5, 'request body first - DATA length');
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
168 is($frame->{flags}, 0, 'request body first - DATA flags');
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
169 $frames = $f->{data}('');
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
170 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
171 is($frame->{data}, '', 'special buffer last - DATA');
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
172 is($frame->{length}, 0, 'special buffer last - DATA length');
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
173 is($frame->{flags}, 1, 'special buffer last - DATA flags');
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
174 $frames = $f->{http_end}();
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
175 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
176 is($frame->{headers}{':status'}, '200', 'special buffer last - response');
90201294e1b6 Tests: added grpc request body test with a special last buffer.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1693
diff changeset
177
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
178 # upstream keepalive
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
179
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
180 $frames = $f->{http_start}('/KeepAlive');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
181 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
182 is($frame->{sid}, $sid, 'keepalive - HEADERS sid');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
183 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
184 $frames = $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
185 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
186 ok($c = $frame->{headers}{'x-connection'}, 'keepalive - connection');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
187
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
188 $frames = $f->{http_start}('/KeepAlive', reuse => 1);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
189 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
190 cmp_ok($frame->{sid}, '>', $sid, 'keepalive - HEADERS sid next');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
191 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
192 $frames = $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
193 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
194 is($frame->{headers}{'x-connection'}, $c, 'keepalive - connection reuse');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
195
1370
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
196 # upstream keepalive
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
197 # pending control frame ack after the response
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
198
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
199 undef $f;
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
200 $f = grpc();
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
201
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
202 $frames = $f->{http_start}('/KeepAlive');
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
203 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
204 is($frame->{sid}, $sid, 'keepalive 2 - HEADERS sid');
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
205 $f->{data}('Hello');
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
206 $f->{settings}(0, 1 => 4096);
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
207 $frames = $f->{http_end}();
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
208 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
209 ok($c = $frame->{headers}{'x-connection'}, 'keepalive 2 - connection');
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
210
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
211 $frames = $f->{http_start}('/KeepAlive', reuse => 1);
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
212 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
213 ok($frame, 'upstream keepalive reused');
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
214
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
215 cmp_ok($frame->{sid}, '>', $sid, 'keepalive 2 - HEADERS sid next');
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
216 $f->{data}('Hello');
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
217 $frames = $f->{http_end}();
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
218 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
219 is($frame->{headers}{'x-connection'}, $c, 'keepalive 2 - connection reuse');
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
220
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
221 undef $f;
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
222 $f = grpc();
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
223
1699
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
224 # upstream keepalive
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
225 # grpc filter setting INITIAL_WINDOW_SIZE is inherited in the next stream
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
226
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
227 $f->{http_start}('/KeepAlive');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
228 $f->{data}('Hello');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
229 $f->{settings}(0, 1 => 4096);
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
230 $frames = $f->{http_end}(grpc_filter_settings => { 0x4 => 2 });
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
231 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
232 ok($c = $frame->{headers}{'x-connection'}, 'keepalive 3 - connection');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
233
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
234 $f->{http_start}('/KeepAlive', reuse => 1);
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
235 $frames = $f->{data_len}('Hello', 2);
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
236 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
237 is($frame->{data}, 'He', 'grpc filter setting - DATA');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
238 is($frame->{length}, 2, 'grpc filter setting - DATA length');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
239 is($frame->{flags}, 0, 'grpc filter setting - DATA flags');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
240 $f->{settings}(0, 0x4 => 5);
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
241 $frames = $f->{data_len}(undef, 3);
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
242 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
243 is($frame->{data}, 'llo', 'setting updated - DATA');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
244 is($frame->{length}, 3, 'setting updated - DATA length');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
245 is($frame->{flags}, 1, 'setting updated - DATA flags');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
246 $frames = $f->{http_end}();
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
247 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
248 is($frame->{headers}{'x-connection'}, $c, 'keepalive 3 - connection reuse');
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
249
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
250 undef $f;
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
251 $f = grpc();
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
252
1700
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
253 # upstream keepalive - GOAWAY, current request aborted
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
254
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
255 $f->{http_start}('/KeepAlive');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
256 $f->{data}('Hello');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
257 $frames = $f->{http_end}();
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
258 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
259 ok($c = $frame->{headers}{'x-connection'}, 'keepalive 4 - connection');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
260
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
261 $f->{http_start}('/KeepAlive', reuse => 1);
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
262 $f->{goaway}(0, 0, 5);
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
263 $f->{data}('Hello');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
264 $frames = $f->{http_end}();
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
265 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
266 is($frame->{headers}{':status'}, 502, 'keepalive 4 - GOAWAY aborted request');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
267
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
268 $f->{http_start}('/KeepAlive');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
269 $f->{data}('Hello');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
270 $frames = $f->{http_end}();
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
271 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
272 cmp_ok($frame->{headers}{'x-connection'}, '>', $c, 'keepalive 4 - closed');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
273
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
274 undef $f;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
275 $f = grpc();
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
276
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
277 # upstream keepalive - disabled with a higher GOAWAY Last-Stream-ID
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
278
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
279 $f->{http_start}('/KeepAlive');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
280 $f->{goaway}(0, 3, 5);
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
281 $f->{data}('Hello');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
282 $frames = $f->{http_end}();
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
283 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
284 ok($c = $frame->{headers}{'x-connection'}, 'keepalive 5 - GOAWAY next stream');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
285
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
286 $f->{http_start}('/KeepAlive');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
287 $f->{data}('Hello');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
288 $frames = $f->{http_end}();
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
289 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
290 cmp_ok($frame->{headers}{'x-connection'}, '>', $c, 'keepalive 5 - closed');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
291
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
292 undef $f;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
293 $f = grpc();
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
294
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
295 # upstream keepalive - GOAWAY in grpc filter, current stream aborted
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
296
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
297 $f->{http_start}('/KeepAlive');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
298 $f->{data}('Hello');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
299 $frames = $f->{http_end}(grpc_filter_goaway => [0, 0, 5]);
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
300 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
301 ok($c = $frame->{headers}{'x-connection'}, 'keepalive 6 - connection');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
302 ($frame) = grep { $_->{type} eq "RST_STREAM" } @$frames;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
303 ok($frame, 'keepalive 6 - grpc filter GOAWAY aborted stream');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
304
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
305 $f->{http_start}('/KeepAlive');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
306 $f->{data}('Hello');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
307 $frames = $f->{http_end}();
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
308 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
309 cmp_ok($frame->{headers}{'x-connection'}, '>', $c, 'keepalive 6 - closed');
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
310
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
311 undef $f;
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
312 $f = grpc();
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
313
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
314 # various header compression formats
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
315
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
316 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
317 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
318 $frames = $f->{http_end}(mode => 3);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
319 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
320 is($frame->{headers}{':status'}, '200', 'without indexing');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
321 is($frame->{headers}{'content-type'}, 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
322 'without indexing 2');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
323
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
324 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
325 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
326 $frames = $f->{http_end}(mode => 4);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
327 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
328 is($frame->{headers}{':status'}, '200', 'without indexing new');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
329 is($frame->{headers}{'content-type'}, 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
330 'without indexing new 2');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
331
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
332 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
333 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
334 $frames = $f->{http_end}(mode => 5);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
335 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
336 is($frame->{headers}{':status'}, '200', 'never indexed');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
337 is($frame->{headers}{'content-type'}, 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
338 'never indexed 2');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
339
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
340 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
341 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
342 $frames = $f->{http_end}(mode => 6);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
343 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
344 is($frame->{headers}{':status'}, '200', 'never indexed new');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
345 is($frame->{headers}{'content-type'}, 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
346 'never indexed new 2');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
347
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
348 # padding & priority
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
349
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
350 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
351 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
352 $frames = $f->{http_end}(padding => 7);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
353 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
354 is($frame->{headers}{':status'}, '200', 'padding');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
355
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
356 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
357 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
358 $frames = $f->{http_end}(prio => 137, dep => 0x01020304);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
359 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
360 is($frame->{headers}{':status'}, '200', 'priority');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
361
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
362 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
363 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
364 $frames = $f->{http_end}(padding => 7, prio => 137, dep => 0x01020304);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
365 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
366 is($frame->{headers}{':status'}, '200', 'padding priority');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
367
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
368 SKIP: {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
369 skip 'long test', 1 unless $ENV{TEST_NGINX_UNSAFE};
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
370
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
371 $f->{http_start}('/SaySplit');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
372 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
373 $frames = $f->{http_end}(padding => 7, prio => 137, dep => 0x01020304,
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
374 split => [(map{1}(1..20)), 30], split_delay => 0.1);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
375 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
376 is($frame->{headers}{':status'}, '200', 'padding priority split');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
377
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
378 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
379
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
380 # grpc error, no empty data frame expected
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
381
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
382 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
383 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
384 $frames = $f->{http_err}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
385 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
386 is($frame->{flags}, 5, 'grpc error - HEADERS flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
387 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
388 ok(!$frame, 'grpc error - no DATA frame');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
389
1583
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
390 # malformed response body length not equal to content-length
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
391
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
392 $f->{http_start}('/SayHello');
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
393 $f->{data}('Hello');
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
394 $frames = $f->{http_err2}(cl => 42);
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
395 ($frame) = grep { $_->{type} eq "RST_STREAM" } @$frames;
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
396 ok($frame, 'response body less than content-length');
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
397
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
398 $f->{http_start}('/SayHello');
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
399 $f->{data}('Hello');
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
400 $frames = $f->{http_err2}(cl => 8);
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
401 ($frame) = grep { $_->{type} eq "RST_STREAM" } @$frames;
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
402 ok($frame, 'response body more than content-length');
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
403
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
404 # continuation from backend, expect parts assembled
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
405
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
406 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
407 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
408 $frames = $f->{continuation}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
409 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
410 is($frame->{flags}, 4, 'continuation - HEADERS flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
411 is($frame->{headers}{':status'}, '200', 'continuation - status');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
412 is($frame->{headers}{'content-type'}, 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
413 'continuation - content type');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
414
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
415 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
416 is($frame->{data}, 'Hello world', 'continuation - DATA');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
417 is($frame->{length}, 11, 'continuation - DATA length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
418 is($frame->{flags}, 0, 'continuation - DATA flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
419
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
420 (undef, $frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
421 is($frame->{flags}, 5, 'continuation - trailers flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
422 is($frame->{headers}{'grpc-message'}, '', 'continuation - trailers message');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
423 is($frame->{headers}{'grpc-status'}, '0', 'continuation - trailers status');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
424
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
425 # continuation from backend, header split
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
426
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
427 $f->{http_start}('/SayHello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
428 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
429 $frames = $f->{http_end}(mode => 6, continuation => [map { 1 } (1 .. 42)]);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
430 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
431 is($frame->{headers}{':status'}, '200', 'continuation - header split');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
432
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
433 # continuation to backend
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
434
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
435 $frames = $f->{http_start}('/LongHeader?h=' . ('Z' x 31337));
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
436 @$frames = grep { $_->{type} =~ "HEADERS|CONTINUATION" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
437 is(@$frames, 4, 'continuation - frames');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
438
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
439 $frame = shift @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
440 is($frame->{type}, 'HEADERS', 'continuation - HEADERS');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
441 is($frame->{length}, 16384, 'continuation - HEADERS length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
442 is($frame->{flags}, 1, 'continuation - HEADERS flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
443 ok($frame->{sid}, 'continuation - HEADERS sid');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
444
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
445 $frame = shift @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
446 is($frame->{type}, 'CONTINUATION', 'continuation - CONTINUATION');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
447 is($frame->{length}, 16384, 'continuation - CONTINUATION length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
448 is($frame->{flags}, 0, 'continuation - CONTINUATION flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
449 ok($frame->{sid}, 'continuation - CONTINUATION sid');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
450
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
451 $frame = shift @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
452 is($frame->{type}, 'CONTINUATION', 'continuation - CONTINUATION 2');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
453 is($frame->{length}, 16384, 'continuation - CONTINUATION 2 length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
454 is($frame->{flags}, 0, 'continuation - CONTINUATION 2 flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
455
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
456 $frame = shift @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
457 is($frame->{type}, 'CONTINUATION', 'continuation - CONTINUATION n');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
458 cmp_ok($frame->{length}, '<', 16384, 'continuation - CONTINUATION n length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
459 is($frame->{flags}, 4, 'continuation - CONTINUATION n flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
460 is($frame->{headers}{':path'}, '/LongHeader?h=' . 'Z' x 31337,
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
461 'continuation - path');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
462 is($frame->{headers}{'x-longheader'}, 'Z' x 31337, 'continuation - header');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
463
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
464 $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
465
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
466 # long header field
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
467
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
468 $f->{http_start}('/LongField');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
469 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
470 $frames = $f->{field_len}(2**7);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
471 ($frame) = grep { $_->{flags} & 0x4 } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
472 is($frame->{headers}{'x' x 2**7}, 'y' x 2**7, 'long header field 1');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
473
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
474 $f->{http_start}('/LongField');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
475 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
476 $frames = $f->{field_len}(2**8);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
477 ($frame) = grep { $_->{flags} & 0x4 } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
478 is($frame->{headers}{'x' x 2**8}, 'y' x 2**8, 'long header field 2');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
479
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
480 $f->{http_start}('/LongField');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
481 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
482 $frames = $f->{field_len}(2**15);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
483 ($frame) = grep { $_->{flags} & 0x4 } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
484 is($frame->{headers}{'x' x 2**15}, 'y' x 2**15, 'long header field 3');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
485
1676
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
486 # Intermediary Encapsulation Attacks, malformed header fields
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
487
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
488 $f->{http_start}('/');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
489 $f->{data}('Hello');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
490 $frames = $f->{field_bad}(n => 'n:n');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
491 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
492 is($frame->{headers}{':status'}, 502, 'invalid header name colon');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
493
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
494 $f->{http_start}('/');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
495 $f->{data}('Hello');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
496 $frames = $f->{field_bad}(n => 'NN');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
497 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
498 is($frame->{headers}{':status'}, 502, 'invalid header name uppercase');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
499
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
500 $f->{http_start}('/');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
501 $f->{data}('Hello');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
502 $frames = $f->{field_bad}(n => "n\nn");
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
503 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
504 is($frame->{headers}{':status'}, 502, 'invalid header name ctl');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
505
1715
3604ef83c1aa Tests: added header name tests with forbidden characters.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1707
diff changeset
506 $f->{http_start}('/');
3604ef83c1aa Tests: added header name tests with forbidden characters.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1707
diff changeset
507 $f->{data}('Hello');
3604ef83c1aa Tests: added header name tests with forbidden characters.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1707
diff changeset
508 $frames = $f->{field_bad}(n => "n n");
3604ef83c1aa Tests: added header name tests with forbidden characters.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1707
diff changeset
509 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
3604ef83c1aa Tests: added header name tests with forbidden characters.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1707
diff changeset
510 is($frame->{headers}{':status'}, 502, 'invalid header name space');
3604ef83c1aa Tests: added header name tests with forbidden characters.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1707
diff changeset
511
1676
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
512 $f->{http_start}('/');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
513 $f->{data}('Hello');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
514 $frames = $f->{field_bad}(v => "v\nv");
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
515 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
516 is($frame->{headers}{':status'}, 502, 'invalid header value ctl');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
517
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
518 # invalid HPACK index
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
519
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
520 $f->{http_start}('/');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
521 $f->{data}('Hello');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
522 $frames = $f->{field_bad}('m' => 0);
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
523 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
524 is($frame->{headers}{':status'}, 502, 'invalid index - indexed header');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
525
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
526 $f->{http_start}('/');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
527 $f->{data}('Hello');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
528 $frames = $f->{field_bad}('m' => 1);
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
529 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
530 is($frame->{headers}{':status'}, 502, 'invalid index - with indexing');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
531
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
532 $f->{http_start}('/');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
533 $f->{data}('Hello');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
534 $frames = $f->{field_bad}('m' => 3);
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
535 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
536 is($frame->{headers}{':status'}, 502, 'invalid index - without indexing');
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
537
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
538 # flow control
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
539
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
540 $f->{http_start}('/FlowControl');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
541 $frames = $f->{data_len}(('Hello' x 13000) . ('x' x 550), 65535);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
542 my $sum = eval join '+', map { $_->{type} eq "DATA" && $_->{length} } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
543 is($sum, 65535, 'flow control - iws length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
544
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
545 $f->{update}(10);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
546 $f->{update_sid}(10);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
547
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
548 $frames = $f->{data_len}(undef, 10);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
549 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
550 is($frame->{length}, 10, 'flow control - update length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
551 is($frame->{flags}, 0, 'flow control - update flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
552
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
553 $f->{update_sid}(10);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
554 $f->{update}(10);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
555
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
556 $frames = $f->{data_len}(undef, 5);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
557 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
558 is($frame->{length}, 5, 'flow control - rest length');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
559 is($frame->{flags}, 1, 'flow control - rest flags');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
560
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
561 $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
562
1318
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
563 # preserve output
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
564
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
565 $f->{http_start}('/Preserve');
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
566 $f->{data}('Hello');
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
567 $frames = $f->{http_pres}();
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
568 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
569 is($frame->{flags}, 4, 'preserve - HEADERS');
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
570
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
571 my @data = grep { $_->{type} eq "DATA" } @$frames;
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
572 $sum = eval join '+', map { $_->{length} } @data;
1319
3b30e97acdcb Tests: made grpc preserve output test pass on win32 and Solaris.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1318
diff changeset
573 is($sum, 20480, 'preserve - DATA');
1318
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
574
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
575 (undef, $frame) = grep { $_->{type} eq "HEADERS" } @$frames;
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
576 is($frame->{flags}, 5, 'preserve - trailers');
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
577
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
578 # DATA padding
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
579
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
580 $f->{http_start}('/SayPadding');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
581 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
582 $frames = $f->{http_end}(body_padding => 42);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
583 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
1362
6874b32dc3d2 Tests: renamed some grpc.t tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1321
diff changeset
584 is($frame->{data}, 'Hello world', 'DATA padding');
6874b32dc3d2 Tests: renamed some grpc.t tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1321
diff changeset
585 is($frame->{length}, 11, 'DATA padding - length');
6874b32dc3d2 Tests: renamed some grpc.t tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1321
diff changeset
586 is($frame->{flags}, 0, 'DATA padding - flags');
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
587
1664
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
588 # DATA padding with Content-Length
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
589
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
590 $f->{http_start}('/SayPadding');
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
591 $f->{data}('Hello');
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
592 $frames = $f->{http_end}(body_padding => 42, cl => length('Hello world'));
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
593 ($frame) = grep { $_->{type} eq "DATA" } @$frames;
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
594 is($frame->{data}, 'Hello world', 'DATA padding cl');
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
595 is($frame->{length}, 11, 'DATA padding cl - length');
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
596 is($frame->{flags}, 0, 'DATA padding cl - flags');
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
597
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
598 # :authority inheritance
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
599
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
600 $frames = $f->{http_start}('/SayHello?if=1');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
601 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
602 is($frame->{headers}{':authority'}, "127.0.0.1:$p", 'authority in if');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
603 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
604 $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
605
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
606 # misc tests
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
607
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
608 $frames = $f->{http_start}('/SetHost');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
609 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
610 ok(!$frame->{headers}{':authority'}, 'set host - authority');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
611 is($frame->{headers}{'host'}, 'custom', 'set host - host');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
612 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
613 $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
614
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
615 $frames = $f->{http_start}('/SetArgs?f');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
616 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
617 is($frame->{headers}{':path'}, '/SetArgs', 'set args');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
618 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
619 $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
620
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
621 $frames = $f->{http_start}('/SetArgs?c=1');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
622 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
623 is($frame->{headers}{':path'}, '/SetArgs?1', 'set args len');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
624 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
625 $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
626
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
627 $frames = $f->{http_start}('/');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
628 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
629 is($frame->{headers}{':path'}, '/', 'root index');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
630 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
631 $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
632
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
633 $frames = $f->{http_start}('/', method => 'GET');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
634 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
635 is($frame->{headers}{':method'}, 'GET', 'method get');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
636 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
637 $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
638
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
639 $frames = $f->{http_start}('/', method => 'HEAD');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
640 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
641 is($frame->{headers}{':method'}, 'HEAD', 'method head');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
642 $f->{data}('Hello');
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
643 $f->{http_end}();
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
644
1564
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
645 # receiving END_STREAM followed by WINDOW_UPDATE on incomplete request body
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
646
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
647 $f->{http_start}('/Discard_WU');
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
648 $frames = $f->{discard}();
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
649 (undef, $frame) = grep { $_->{type} eq "HEADERS" } @$frames;
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
650 is($frame->{flags}, 5, 'discard WINDOW_UPDATE - trailers');
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
651
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
652 # receiving END_STREAM followed by RST_STREAM NO_ERROR
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
653
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
654 $f->{http_start}('/Discard_NE');
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
655 $frames = $f->{discard}();
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
656 (undef, $frame) = grep { $_->{type} eq "HEADERS" } @$frames;
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
657 is($frame->{flags}, 5, 'discard NO_ERROR - trailers');
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
658
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
659 # receiving END_STREAM followed by several RST_STREAM NO_ERROR
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
660
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
661 $f->{http_start}('/Discard_NE3');
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
662 $frames = $f->{discard}();
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
663 (undef, $frame) = grep { $_->{type} eq "HEADERS" } @$frames;
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
664 is($frame->{flags}, undef, 'discard NO_ERROR many - no trailers');
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
665
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
666 # receiving END_STREAM followed by RST_STREAM CANCEL
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
667
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
668 $f->{http_start}('/Discard_CNL');
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
669 $frames = $f->{discard}();
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
670 (undef, $frame) = grep { $_->{type} eq "HEADERS" } @$frames;
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
671 is($frame->{flags}, undef, 'discard CANCEL - no trailers');
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
672
1631
62a1667f60f8 Tests: fixed grpc.t after previous change.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1624
diff changeset
673 undef $f;
62a1667f60f8 Tests: fixed grpc.t after previous change.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1624
diff changeset
674 $f = grpc();
62a1667f60f8 Tests: fixed grpc.t after previous change.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1624
diff changeset
675
1624
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
676 # upstream keepalive, grpc error
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
677 # receiving END_STREAM followed by RST_STREAM NO_ERROR
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
678
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
679 $f->{http_start}('/KeepAlive');
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
680 $f->{data}('Hello');
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
681 $frames = $f->{http_err_rst}();
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
682 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
683 ok($frame->{headers}{'grpc-status'}, 'keepalive 3 - grpc error, rst');
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
684
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
685 $frames = $f->{http_start}('/KeepAlive', reuse => 1);
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
686 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
687 ok($frame, 'keepalive 3 - connection reused');
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
688
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
689 undef $f;
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
690 $f = grpc();
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
691
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
692 ###############################################################################
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
693
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
694 sub grpc {
1318
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
695 my ($server, $client, $f, $s, $c, $sid, $csid, $uri);
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
696 my $n = 0;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
697
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
698 $server = IO::Socket::INET->new(
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
699 Proto => 'tcp',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
700 LocalHost => '127.0.0.1',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
701 LocalPort => $p,
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
702 Listen => 5,
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
703 Reuse => 1
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
704 )
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
705 or die "Can't create listening socket: $!\n";
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
706
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
707 $f->{http_start} = sub {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
708 ($uri, my %extra) = @_;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
709 my $body_more = 1 if $uri !~ /LongHeader/;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
710 my $meth = $extra{method} || 'POST';
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
711 $s = Test::Nginx::HTTP2->new() if !defined $s;
1318
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
712 $csid = $s->new_stream({ body_more => $body_more, headers => [
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
713 { name => ':method', value => $meth, mode => !!$meth },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
714 { name => ':scheme', value => 'http', mode => 0 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
715 { name => ':path', value => $uri, },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
716 { name => ':authority', value => 'localhost' },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
717 { name => 'content-type', value => 'application/grpc' },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
718 { name => 'te', value => 'trailers', mode => 2 }]});
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
719
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
720 if (!$extra{reuse}) {
1705
99a9b8b50f21 Tests: fixed grpc.t TODO hang on win32.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1700
diff changeset
721 if (IO::Select->new($server)->can_read(5)) {
99a9b8b50f21 Tests: fixed grpc.t TODO hang on win32.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1700
diff changeset
722 $client = $server->accept();
1321
351b95be742b Tests: fixed grpc tests hang in accept() on internal nginx error.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1319
diff changeset
723
1705
99a9b8b50f21 Tests: fixed grpc.t TODO hang on win32.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1700
diff changeset
724 } else {
99a9b8b50f21 Tests: fixed grpc.t TODO hang on win32.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1700
diff changeset
725 log_in("timeout");
1700
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
726 # connection could be unexpectedly reused
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
727 goto reused if $client;
1321
351b95be742b Tests: fixed grpc tests hang in accept() on internal nginx error.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1319
diff changeset
728 return undef;
351b95be742b Tests: fixed grpc tests hang in accept() on internal nginx error.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1319
diff changeset
729 }
351b95be742b Tests: fixed grpc tests hang in accept() on internal nginx error.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1319
diff changeset
730
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
731 log2c("(new connection $client)");
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
732 $n++;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
733
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
734 $client->sysread(my $buf, 24) == 24 or return; # preface
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
735
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
736 $c = Test::Nginx::HTTP2->new(1, socket => $client,
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
737 pure => 1, preface => "") or return;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
738 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
739
1700
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
740 reused:
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
741 my $frames = $c->read(all => [{ fin => 4 }]);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
742
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
743 if (!$extra{reuse}) {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
744 $c->h2_settings(0);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
745 $c->h2_settings(1);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
746 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
747
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
748 my ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
749 $sid = $frame->{sid};
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
750 return $frames;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
751 };
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
752 $f->{data} = sub {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
753 my ($body, %extra) = @_;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
754 $s->h2_body($body, { %extra });
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
755 return $c->read(all => [{ sid => $sid,
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
756 length => length($body) }]);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
757 };
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
758 $f->{data_len} = sub {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
759 my ($body, $len) = @_;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
760 $s->h2_body($body) if defined $body;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
761 return $c->read(all => [{ sid => $sid, length => $len }]);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
762 };
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
763 $f->{update} = sub {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
764 $c->h2_window(shift);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
765 };
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
766 $f->{update_sid} = sub {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
767 $c->h2_window(shift, $sid);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
768 };
1370
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
769 $f->{settings} = sub {
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
770 $c->h2_settings(@_);
23e407a72fe9 Tests: upstream keepalive with grpc pending frames.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1362
diff changeset
771 };
1700
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
772 $f->{goaway} = sub {
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
773 $c->h2_goaway(@_);
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
774 };
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
775 $f->{http_end} = sub {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
776 my (%extra) = @_;
1664
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
777 my $h = [
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
778 { name => ':status', value => '200',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
779 mode => $extra{mode} || 0 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
780 { name => 'content-type', value => 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
781 mode => $extra{mode} || 1, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
782 { name => 'x-connection', value => $n,
1664
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
783 mode => 2, huff => 1 }];
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
784 push @$h, { name => 'content-length', value => $extra{cl} }
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
785 if $extra{cl};
0fae67763be5 Tests: added grpc tests with DATA padding and Content-Length.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1653
diff changeset
786 $c->new_stream({ body_more => 1, headers => $h, %extra }, $sid);
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
787 $c->h2_body('Hello world', { body_more => 1,
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
788 body_padding => $extra{body_padding} });
1699
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
789 $c->h2_settings(0, %{$extra{grpc_filter_settings}})
202d8feedad1 Tests: added grpc test for receiving SETTINGS in grpc filter.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1698
diff changeset
790 if $extra{grpc_filter_settings};
1700
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
791 $c->h2_goaway(@{$extra{grpc_filter_goaway}})
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
792 if $extra{grpc_filter_goaway};
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
793 $c->new_stream({ headers => [
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
794 { name => 'grpc-status', value => '0',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
795 mode => 2, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
796 { name => 'grpc-message', value => '',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
797 mode => 2, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
798 ]}, $sid);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
799
1700
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
800 return $s->read(all => [{ type => 'RST_STREAM' }])
c903c0a3f302 Tests: added grpc GOAWAY tests.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1699
diff changeset
801 if $extra{grpc_filter_goaway};
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
802 return $s->read(all => [{ fin => 1 }]);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
803 };
1318
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
804 $f->{http_pres} = sub {
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
805 my (%extra) = @_;
1319
3b30e97acdcb Tests: made grpc preserve output test pass on win32 and Solaris.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1318
diff changeset
806 $s->h2_settings(0, 0x4 => 8192);
1318
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
807 $c->new_stream({ body_more => 1, %extra, headers => [
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
808 { name => ':status', value => '200',
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
809 mode => $extra{mode} || 0 },
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
810 { name => 'content-type', value => 'application/grpc',
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
811 mode => $extra{mode} || 1, huff => 1 },
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
812 { name => 'x-connection', value => $n,
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
813 mode => 2, huff => 1 },
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
814 ]}, $sid);
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
815 for (1 .. 20) {
1319
3b30e97acdcb Tests: made grpc preserve output test pass on win32 and Solaris.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1318
diff changeset
816 $c->h2_body(sprintf('Hello %02d', $_) x 128, {
1318
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
817 body_more => 1,
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
818 body_padding => $extra{body_padding} });
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
819 $c->h2_ping("PING");
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
820 }
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
821 # reopen window
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
822 $s->h2_window(2**24);
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
823 $s->h2_window(2**24, $csid);
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
824 $c->new_stream({ headers => [
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
825 { name => 'grpc-status', value => '0',
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
826 mode => 2, huff => 1 },
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
827 { name => 'grpc-message', value => '',
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
828 mode => 2, huff => 1 },
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
829 ]}, $sid);
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
830
1319
3b30e97acdcb Tests: made grpc preserve output test pass on win32 and Solaris.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1318
diff changeset
831 return $s->read(all => [{ sid => $csid, fin => 1 }]);
1318
6de2a27af2d3 Tests: grpc preserve output tests added (ticket #1519).
Sergey Kandaurov <pluknet@nginx.com>
parents: 1312
diff changeset
832 };
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
833 $f->{http_err} = sub {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
834 $c->new_stream({ headers => [
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
835 { name => ':status', value => '200', mode => 0 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
836 { name => 'content-type', value => 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
837 mode => 1, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
838 { name => 'grpc-status', value => '12',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
839 mode => 2, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
840 { name => 'grpc-message', value => 'unknown service',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
841 mode => 2, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
842 ]}, $sid);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
843
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
844 return $s->read(all => [{ fin => 1 }]);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
845 };
1624
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
846 $f->{http_err_rst} = sub {
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
847 $c->start_chain();
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
848 $c->new_stream({ headers => [
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
849 { name => ':status', value => '200', mode => 0 },
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
850 { name => 'content-type', value => 'application/grpc' },
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
851 { name => 'grpc-status', value => '12', mode => 2 },
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
852 { name => 'grpc-message', value => 'unknown service',
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
853 mode => 2 },
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
854 ]}, $sid);
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
855 $c->h2_rst($sid, 0);
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
856 $c->send_chain();
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
857
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
858 return $s->read(all => [{ fin => 1 }]);
81fd6615358e Tests: added test for "grpc error" followed by RST_STREAM NO_ERROR.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1623
diff changeset
859 };
1583
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
860 $f->{http_err2} = sub {
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
861 my %extra = @_;
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
862 $c->new_stream({ body_more => 1, headers => [
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
863 { name => ':status', value => '200', mode => 0 },
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
864 { name => 'content-type', value => 'application/grpc',
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
865 mode => 1, huff => 1 },
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
866 { name => 'content-length', value => $extra{cl},
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
867 mode => 1, huff => 1 },
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
868 ]}, $sid);
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
869 $c->h2_body('Hello world',
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
870 { body_more => 1, body_split => [5] });
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
871 $c->new_stream({ headers => [
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
872 { name => 'grpc-status', value => '0',
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
873 mode => 2, huff => 1 },
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
874 { name => 'grpc-message', value => '',
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
875 mode => 2, huff => 1 },
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
876 ]}, $sid);
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
877
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
878 return $s->read(all => [{ type => 'RST_STREAM' }]);
8aede7babd9a Tests: added grpc tests with wrong response size.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1564
diff changeset
879 };
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
880 $f->{continuation} = sub {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
881 $c->new_stream({ continuation => 1, body_more => 1, headers => [
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
882 { name => ':status', value => '200', mode => 0 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
883 ]}, $sid);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
884 $c->h2_continue($sid, { continuation => 1, headers => [
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
885 { name => 'content-type', value => 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
886 mode => 1, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
887 ]});
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
888 $c->h2_continue($sid, { headers => [
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
889 # an empty CONTINUATION frame is legitimate
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
890 ]});
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
891 $c->h2_body('Hello world', { body_more => 1 });
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
892 $c->new_stream({ continuation => 1, headers => [
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
893 { name => 'grpc-status', value => '0',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
894 mode => 2, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
895 ]}, $sid);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
896 $c->h2_continue($sid, { headers => [
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
897 { name => 'grpc-message', value => '',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
898 mode => 2, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
899 ]});
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
900
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
901 return $s->read(all => [{ fin => 1 }]);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
902 };
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
903 $f->{field_len} = sub {
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
904 my ($len) = @_;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
905 $c->new_stream({ continuation => [map {2**14} (0..$len/2**13)],
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
906 body_more => 1, headers => [
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
907 { name => ':status', value => '200', mode => 0 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
908 { name => 'content-type', value => 'application/grpc',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
909 mode => 1, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
910 { name => 'x' x $len, value => 'y' x $len, mode => 6 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
911 ]}, $sid);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
912 $c->h2_body('Hello world', { body_more => 1 });
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
913 $c->new_stream({ headers => [
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
914 { name => 'grpc-status', value => '0',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
915 mode => 2, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
916 { name => 'grpc-message', value => '',
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
917 mode => 2, huff => 1 },
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
918 ]}, $sid);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
919
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
920 return $s->read(all => [{ fin => 1 }]);
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
921 };
1676
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
922 $f->{field_bad} = sub {
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
923 my (%extra) = @_;
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
924 my $n = defined $extra{'n'} ? $extra{'n'} : 'n';
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
925 my $v = defined $extra{'v'} ? $extra{'v'} : 'v';
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
926 my $m = defined $extra{'m'} ? $extra{'m'} : 2;
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
927 $c->new_stream({ headers => [
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
928 { name => ':status', value => '200' },
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
929 { name => $n, value => $v, mode => $m },
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
930 ]}, $sid);
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
931
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
932 return $s->read(all => [{ fin => 1 }]);
816d6ceefe50 Tests: added grpc tests with malformed headers.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1664
diff changeset
933 };
1564
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
934 $f->{discard} = sub {
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
935 my (%extra) = @_;
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
936 $c->new_stream({ body_more => 1, %extra, headers => [
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
937 { name => ':status', value => '200',
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
938 mode => $extra{mode} || 0 },
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
939 { name => 'content-type', value => 'application/grpc',
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
940 mode => $extra{mode} || 1, huff => 1 },
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
941 { name => 'x-connection', value => $n,
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
942 mode => 2, huff => 1 },
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
943 ]}, $sid);
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
944 $c->h2_body('Hello world', { body_more => 1,
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
945 body_padding => $extra{body_padding} });
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
946
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
947 # stick trailers and subsequent frames for reproducibility
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
948
1623
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
949 $c->start_chain();
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
950 $c->new_stream({ headers => [
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
951 { name => 'grpc-status', value => '0', mode => 2 }
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
952 ]}, $sid);
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
953 $c->h2_window(42, $sid) if $uri eq '/Discard_WU';
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
954 $c->h2_rst($sid, 0) if $uri eq '/Discard_NE';
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
955 $c->h2_rst($sid, 0), $c->h2_rst($sid, 0), $c->h2_rst($sid, 0)
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
956 if $uri eq '/Discard_NE3';
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
957 $c->h2_rst($sid, 8) if $uri eq '/Discard_CNL';
3fe652bc9dae Tests: introduced HTTP/2 frames buffering option in HTTP2 package.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1622
diff changeset
958 $c->send_chain();
1564
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
959
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
960 return $s->read(all => [{ fin => 1 }], wait => 2)
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
961 if $uri eq '/Discard_WU' || $uri eq '/Discard_NE';
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
962 return $s->read(all => [{ type => 'RST_STREAM' }]);
fe938b5daf80 Tests: more grpc tests with discarded request body.
Sergey Kandaurov <pluknet@nginx.com>
parents: 1535
diff changeset
963 };
1303
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
964 return $f;
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
965 }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
966
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
967 sub log2i { Test::Nginx::log_core('|| <<', @_); }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
968 sub log2o { Test::Nginx::log_core('|| >>', @_); }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
969 sub log2c { Test::Nginx::log_core('||', @_); }
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
970
42577a840a7d Tests: grpc module tests.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
971 ###############################################################################