# HG changeset patch # User Maxim Dounin # Date 1226333074 -10800 # Node ID 239a346b49131eafc8395b4796bee0dab59c5767 # Parent d68b85def5219a3de032574e1e55d526c072555e Tests: add proxy_store basic tests. diff --git a/lib/Test/Nginx.pm b/lib/Test/Nginx.pm --- a/lib/Test/Nginx.pm +++ b/lib/Test/Nginx.pm @@ -167,6 +167,11 @@ sub run_daemon($;@) { return $self; } +sub testdir() { + my ($self) = @_; + return $self->{_testdir}; +} + ############################################################################### sub log_out { diff --git a/proxy-store.t b/proxy-store.t new file mode 100644 --- /dev/null +++ b/proxy-store.t @@ -0,0 +1,64 @@ +#!/usr/bin/perl + +# (C) Maxim Dounin + +# Tests for proxy_store functionality. + +############################################################################### + +use warnings; +use strict; + +use Test::More tests => 2; + +BEGIN { use FindBin; chdir($FindBin::Bin); } + +use lib 'lib'; +use Test::Nginx; + +############################################################################### + +select STDERR; $| = 1; +select STDOUT; $| = 1; + +my $t = Test::Nginx->new(); + +$t->write_file_expand('nginx.conf', <<'EOF'); + +master_process off; +daemon off; + +events { + worker_connections 1024; +} + +http { + access_log off; + root %%TESTDIR%%; + + client_body_temp_path %%TESTDIR%%/client_body_temp; + fastcgi_temp_path %%TESTDIR%%/fastcgi_temp; + proxy_temp_path %%TESTDIR%%/proxy_temp; + + server { + listen 127.0.0.1:8080; + server_name localhost; + + location /store { + proxy_pass http://127.0.0.1:8080/index.html; + proxy_store on; + } + } +} + +EOF + +$t->write_file('index.html', 'SEE-THIS'); +$t->run(); + +############################################################################### + +like(http_get('/store'), qr/SEE-THIS/, 'proxy request'); +ok(-e $t->testdir() . '/store', 'result stored'); + +###############################################################################