# HG changeset patch # User Sergey Kandaurov # Date 1600457190 -3600 # Node ID efd082b4aa9c10b3e42ab150e3d4e3c35f49078f # Parent a7902e5adeabb1dd13f85902ccb0955baa59e146 Tests: HTTP/2 tests for posted requests after reading body. diff --git a/h2_request_body_js.t b/h2_request_body_js.t new file mode 100644 --- /dev/null +++ b/h2_request_body_js.t @@ -0,0 +1,90 @@ +#!/usr/bin/perl + +# (C) Sergey Kandaurov +# (C) Nginx, Inc. + +# Tests for HTTP/2 request body with njs subrequest in the body handler. + +############################################################################### + +use warnings; +use strict; + +use Test::More; + +BEGIN { use FindBin; chdir($FindBin::Bin); } + +use lib 'lib'; +use Test::Nginx; +use Test::Nginx::HTTP2; + +############################################################################### + +select STDERR; $| = 1; +select STDOUT; $| = 1; + +my $t = Test::Nginx->new()->has(qw/http http_v2/) + ->write_file_expand('nginx.conf', <<'EOF'); + +%%TEST_GLOBALS%% + +daemon off; + +events { +} + +http { + %%TEST_GLOBALS_HTTP%% + + js_include test.js; + + server { + listen 127.0.0.1:8080 http2; + server_name localhost; + + lingering_close off; + + location / { + js_content sr_body; + add_header X-Body $request_body; + } + + location /sr { } + } +} + +EOF + +$t->write_file('test.js', <write_file('sr', 'SEE-THIS'); +$t->try_run('no njs available')->plan(3); + +############################################################################### + +local $TODO = 'not yet' unless $t->has_version('1.19.3'); +$t->todo_alerts() unless $t->has_version('1.19.3'); + +my $s = Test::Nginx::HTTP2->new(); +my $sid = $s->new_stream({ body => 'TEST' }); +my $frames = $s->read(all => [{ sid => $sid, fin => 1 }]); + +my ($frame) = grep { $_->{type} eq "HEADERS" } @$frames; +is($frame->{headers}->{':status'}, 200, 'status'); +is($frame->{headers}->{'x-body'}, 'TEST', 'request body'); + +($frame) = grep { $_->{type} eq "DATA" } @$frames; +is($frame->{data}, 'SEE-THIS', 'response body'); + +$t->stop(); + +###############################################################################