view debug_connection.t @ 423:1ac74b568503

Tests: unbreak ssl_password_file.t with upcoming OpenSSL 1.0.2. The 512-bit keys, as generated by default by "openssl genrsa" in older versions, are rejected by OpenSSL library built from master branch (and upcoming OpenSSL 1.0.2). This brokes the test if the "openssl" binary is old (e.g., system one), but nginx is compiled against new OpenSSL. Fix is to explicitly generate 2048 bit keys. This is also consistent to what we generate in other places.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 03 Jul 2014 05:47:37 +0400
parents 847ea345becb
children 43e05ac6c23c
line wrap: on
line source

#!/usr/bin/perl

# (C) Nginx, Inc.

# Tests for debug_connection.

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

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 --with-debug ipv6 proxy/);

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

%%TEST_GLOBALS%%

daemon off;

events {
    debug_connection ::1;
}

http {
    %%TEST_GLOBALS_HTTP%%

    error_log %%TESTDIR%%/debug1.log alert;
    error_log %%TESTDIR%%/debug2.log alert;

    server {
        listen       127.0.0.1:8080;
        listen       [::1]:8080;
        server_name  localhost;

        location /debug {
            proxy_pass http://[::1]:8080/;
        }
    }
}

EOF

$t->try_run('no inet6 support')->plan(5);

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

my $d = $t->testdir();

http_get('/');
is(read_file("$d/debug1.log"), '', 'no debug_connection file 1');
is(read_file("$d/debug2.log"), '', 'no debug_connection file 1');

http_get('/debug');
like(read_file("$d/debug1.log"), qr/\[debug\]/, 'debug_connection file 1');
like(read_file("$d/debug2.log"), qr/\[debug\]/, 'debug_connection file 2');
is(read_file("$d/debug1.log"), read_file("$d/debug2.log"),
	'debug_connection file1 file2 match');

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

sub read_file {
	my ($file) = shift;
	open my $fh, '<', $file or return "$!";
	local $/;
	my $content = <$fh>;
	close $fh;
	return $content;
}

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