The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::Nginx::Socket::Lua::Dgram - Subclass of Test::Nginx::Socket::Lua to test NGINX udp stream modules

SYNOPSIS

    === TEST 1: simple test for ngx_stream_echo_module
    --- dgram_server_config
    echo "Hello, stream echo!";

    --- dgram_response
    Hello, stream echo!

    --- no_error_log
    [error]
    [alert]

Description

This module subclasses Test::Nginx::Socket::Lua to provide handy abstractions for testing NGINX UDP stream-typed modules like ngx_stream_echo_module.

By default, the stream server listens on the port number N + 1 where N is the value of the environment TEST_NGINX_SERVER_PORT or TEST_NGINX_PORT (both default to 1984). One can explicitly specify the default stream server's listening port via the TEST_NGINX_DGRAM_PORT environment.

Sections supported

All the existing sections of Test::Nginx::Socket::Lua are automatically inherited.

The following new test sections are supported:

dgram_config

Specifies custom content in the default stream {} configuration block.

dgram_server_config

Specifies custom content in the default server {} configuration block (inside stream {}) in nginx.conf.

For example,

    --- dgram_server_config
    echo "hello";

will generate something like below in nginx.conf:

    stream {
        server {
            listen 1985 udp;
            echo "Hello, stream echo!";
        }
    }

dgram_server_config2

Specifies a second stream server which listens on the port used by the first default server plus one.

dgram_server_config3

Specifies a third stream server which listens on the port used by the first default server plus two.

dgram_request

Specifies the request data sent to the first default stream server (defined by dgram_server_config.

dgram_request2

Specifies the request data sent to the second default stream server (defined by dgram_server_config2.

dgram_request3

Specifies the request data sent to the third default stream server (defined by dgram_server_config3.

dgram_response

Specifies expected response content sent from the default stream servers. For example,

    === TEST 1: simple echo
    --- dgram_server_config
    echo "Hello, stream echo!";

    --- dgram_response
    Hello, stream echo!

When multiple default stream servers are specified (i.e., via dgram_server_config2 and dgram_server_config3, the responses from all these stream servers are concatenated together in the order of their specifications.

dgram_response_like

Specifies the regex pattern used to test the response data from the default stream servers.

log_dgram_response

Print out the stream response to the nginx error log with the "info" level instead of sending it out to the stream client directly.

AUTHOR

Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>, OpenResty Inc.

COPYRIGHT & LICENSE

Copyright (c) 2016, Yichun Zhang <agentzh@gmail.com>, OpenResty Inc.

This module is licensed under the terms of the BSD license.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  • Neither the name of the authors nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

SEE ALSO

Test::Nginx::Socket::Lua, Test::Base.