#!/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 <