view README @ 577:90f9b128b218

Tests: handled legacy 'darwin' behavior in disable_symlinks tests. Unlike stated in the newer Open Group Base Specifications Issue 7, opening a symlink to the non-directory entry with a trailing slash would succeed in 'darwin'-like systems: [ENOTDIR] <..>the path argument contains at least one non- <slash> character and ends with one or more trailing <slash> characters, and the last pathname component names an existing file that is neither a directory nor a symbolic link to a directory<..> See for details how it was fixed in FreeBSD 7+: http://bugs.freebsd.org/21768
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 18 May 2015 12:05:04 +0300
parents b350a2cdbf58
children d39e98893265
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_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.

Happy testing!