view README @ 1992:d715aff0b61d

Tests: fixed proxy_cache_age.t with older Perl versions. The test used regular expressions with "{,n}" quantifier with empty lower bound, which is only available starting with Perl 5.34.0. Further, it used variable-length look-behind assertions, which are only available starting with Perl 5.30.0 and emit experimental warning till Perl 5.36.0. Fix is to rewrite regular expressions in question using "(?>pattern)" instead (an independent subexpression), which is available since at least Perl 5.005.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 01 Aug 2024 10:35:39 +0300
parents fb25cbe9d4ec
children
line wrap: on
line source

Test suite for nginx.

Use prove to run tests as one usually do for perl tests.  Individual tests
may be run as well.

Note: tests run nginx (and backend daemons if needed) listening on localhost
and may use various ports in 8000 .. 8999 range.

Usage:

    $ TEST_NGINX_BINARY=/path/to/nginx prove .

By default tests expect nginx binary to be at ../nginx/objs/nginx.

Environment variables:

TEST_NGINX_BINARY

    Sets path to nginx binary to be tested, defaults to "../nginx/objs/nginx".

TEST_NGINX_MODULES

    Sets path to modules directory, defaults to dirname of TEST_NGINX_BINARY.

TEST_NGINX_VERBOSE

    Be a bit more verbose (in particular, print requests sent and responses
    got from nginx).  Note that this requires prove -v (or HARNESS_VERBOSE).

TEST_NGINX_LEAVE

    If set, temporary directory with configs and logs won't be deleted on test
    completion.  Useful for debugging.

TEST_NGINX_CATLOG

    Cat error log to stdout after test completion.  Useful for debugging.

TEST_NGINX_UNSAFE

    Run unsafe tests.

TEST_NGINX_VALGRIND

    Run nginx under Valgrind during tests.

TEST_NGINX_GLOBALS

    Sets additional directives in main context.

TEST_NGINX_GLOBALS_HTTP

    Sets additional directives in http context.

TEST_NGINX_GLOBALS_STREAM

    Sets additional directives in stream context.

Happy testing!