# HG changeset patch # User Maxim Dounin # Date 1308008147 -14400 # Node ID 26cf61c5ac35309a254d1b8783c32be35924f10d # Parent c9be30f65be7d587aca67013dd0c69f29f95b620 Tests: fastcgi header params test. Only run with TEST_NGINX_UNSAFE set as unpatched nginx dumps core on it. diff --git a/fastcgi_header_params.t b/fastcgi_header_params.t new file mode 100644 --- /dev/null +++ b/fastcgi_header_params.t @@ -0,0 +1,122 @@ +#!/usr/bin/perl + +# (C) Maxim Dounin + +# Test for fastcgi header params. + +############################################################################### + +use warnings; +use strict; + +use Test::More; + +BEGIN { use FindBin; chdir($FindBin::Bin); } + +use lib 'lib'; +use Test::Nginx; + +############################################################################### + +select STDERR; $| = 1; +select STDOUT; $| = 1; + +eval { require FCGI; }; +plan(skip_all => 'FCGI not installed') if $@; + +my $t = Test::Nginx->new()->has(qw/http fastcgi/)->plan(1) + ->write_file_expand('nginx.conf', <<'EOF'); + +%%TEST_GLOBALS%% + +master_process off; +daemon off; + +events { +} + +http { + %%TEST_GLOBALS_HTTP%% + + server { + listen 127.0.0.1:8080; + server_name localhost; + + location / { + fastcgi_pass 127.0.0.1:8081; + fastcgi_param HTTP_X_BLAH "blah"; + } + } +} + +EOF + +$t->run_daemon(\&fastcgi_daemon); +$t->run(); + +############################################################################### + +SKIP: { +skip 'unsafe', 1 unless $ENV{TEST_NGINX_UNSAFE}; + +local $TODO = 'not yet'; + +like(http_get_headers('/'), qr/SEE-THIS/, + 'fastcgi request with many ignored headers'); + +} + +############################################################################### + +sub http_get_headers { + my ($url, %extra) = @_; + return http(<Accept() >= 0 ) { + $count++; + + print <