view http_block.t @ 606:530a3152753b

Tests: simple http proxy test with multiple http blocks.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 15 Jun 2015 19:59:59 +0300
parents
children
line wrap: on
line source

#!/usr/bin/perl

# (C) Sergey Kandaurov
# (C) Nginx, Inc.

# Tests for http proxy module with multiple http configuration blocks.

###############################################################################

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;

my $t = Test::Nginx->new()->has(qw/http proxy/)->plan(1);

$t->write_file_expand('nginx.conf', <<'EOF');

%%TEST_GLOBALS%%

daemon off;

events {
}

http {
    %%TEST_GLOBALS_HTTP%%

    server {
        listen       127.0.0.1:8080;
        server_name  localhost;

        location / {
            proxy_pass http://127.0.0.1:8081;
            proxy_read_timeout 1s;
        }
    }
}

http {
    %%TEST_GLOBALS_HTTP%%

    server {
        listen       127.0.0.1:8081;
        server_name  localhost;

        location / {}
    }
}

EOF

$t->write_file('t', 'SEE-THIS');
$t->run();

###############################################################################

like(http_get('/t'), qr/SEE-THIS/, 'proxy request');

###############################################################################