Introducing APISIX’s testing framework

    If you want to test the CLI behavior of APISIX (), you need to write a shell script in the t/cli directory to test it. You can refer to the existing test scripts for more details.

    If you want to test the others, you need to write test code based on the framework.

    Here, we briefly describe how to do simple testing based on this framework.

    you need to write test cases in the t/ directory, in a corresponding .t file. Note that a single test file should not exceed 800 lines, and if it is too long, it needs to be divided by a suffix. For example:

    Both consumers.t and consumers2.t contain tests for consumers in the Admin API.

    Some of the test files start with this paragraph:

    1. add_block_preprocessor(sub {
    2. my ($block) = @_;
    3. if (! $block->request) {
    4. $block->set_value("request", "GET /t");
    5. }
    6. if (! $block->no_error_log && ! $block->error_log) {
    7. $block->set_value("no_error_log", "[error]\n[alert]");
    8. }
    9. });

    It means that all tests in this test file that do not define request are set to GET /t. The same is true for error_log.

    Preparing the configuration

    When testing a behavior, we need to prepare the configuration.

    If the configuration is from etcd: We can set up specific configurations through the Admin API.

    1. === TEST 7: refer to empty nodes upstream
    2. --- config
    3. location /t {
    4. content_by_lua_block {
    5. local core = require("apisix.core")
    6. local t = require("lib.test_admin").test
    7. local code, message = t('/apisix/admin/routes/1',
    8. ngx.HTTP_PUT,
    9. [[{
    10. "methods": ["GET"],
    11. "upstream_id": "1",
    12. "uri": "/index.html"
    13. }]]
    14. )
    15. if code >= 300 then
    16. ngx.status = code
    17. ngx.print(message)
    18. return
    19. end
    20. ngx.say(message)
    21. }
    22. }
    23. --- request
    24. GET /t
    25. --- response_body
    26. passed

    Then trigger it in a later test:

    1. === TEST 8: hit empty nodes upstream
    2. --- request
    3. GET /index.html
    4. --- error_code: 503
    5. --- error_log
    6. no valid upstream node

    Preparing the upstream

    To test the code, we need to provide a mock upstream.

    For HTTP request, the upstream code is put in t/lib/server.lua. HTTP request with a given path will trigger the method in same name. For example, a call to /server_port will call the _M.server_port.

    1. local data = sock:receive("1")
    2. ngx.say("hello world")

    If you want to custom the TCP upstream logic, you can use:

    1. --- stream_upstream_code
    2. local sock = ngx.req.socket()
    3. local data = sock:receive("1")
    4. ngx.say("hello world")

    We can initiate a request with request and set the request headers with more_headers.

    For example.

    Lua code can be used to send multiple requests.

    One request after another:

    1. --- config
    2. location /t {
    3. content_by_lua_block {
    4. local http = require "resty.http"
    5. local uri = "http://127.0.0.1:" .. ngx.var.server_port
    6. .. "/server_port"
    7. local ports_count = {}
    8. for i = 1, 12 do
    9. local httpc = http.new()
    10. local res, err = httpc:request_uri(uri, {method = "GET"})
    11. if not res then
    12. ngx.say(err)
    13. return
    14. end
    15. ports_count[res.body] = (ports_count[res.body] or 0) + 1
    16. end
    17. }
    18. }

    Sending multiple requests concurrently:

    1. --- config
    2. location /t {
    3. content_by_lua_block {
    4. local http = require "resty.http"
    5. local uri = "http://127.0.0.1:" .. ngx.var.server_port
    6. .. "/server_port?var=2&var2="
    7. local t = {}
    8. local ports_count = {}
    9. for i = 1, 180 do
    10. local th = assert(ngx.thread.spawn(function(i)
    11. local httpc = http.new()
    12. local res, err = httpc:request_uri(uri..i, {method = "GET"})
    13. if not res then
    14. ngx.log(ngx.ERR, err)
    15. return
    16. end
    17. ports_count[res.body] = (ports_count[res.body] or 0) + 1
    18. end, i))
    19. table.insert(t, th)
    20. end
    21. for i, th in ipairs(t) do
    22. ngx.thread.wait(th)
    23. end
    24. }
    25. }

    Send TCP request

    We can use stream_request to send a TCP request, for example:

    1. --- stream_request
    2. hello

    To send a TLS over TCP request, we can combine stream_tls_request with stream_sni:

    1. --- stream_tls_request
    2. mmm

    Assertions

    The following assertions are commonly used.

    Check status (if not set, the framework will check if the request has 200 status code).

    1. --- error_code: 405

    Check response headers.

    Check response body.

    1. --- response_body
    2. [{"count":12, "port": "1982"}]

    When the request is sent via stream_request:

    1. receive stream response error: connection reset by peer

    When the request is sent via stream_tls_request:

    1. --- response_body
    2. receive stream response error: connection reset by peer

    Checking the error log (via grep error log with regular expression).

    1. --- grep_error_log eval
    2. qr/hash_on: header|chash_key: "custom-one"/
    3. --- grep_error_log_out
    4. hash_on: header
    5. chash_key: "custom-one"
    6. hash_on: header
    7. chash_key: "custom-one"
    8. hash_on: header
    9. chash_key: "custom-one"
    10. hash_on: header
    11. chash_key: "custom-one"

    The default log level is info, but you can get the debug level log with -- log_level: debug.

    The test framework listens to multiple ports when it is started.

    • 1980/1981/1982/5044: HTTP upstream port. We provide a mock upstream server for testing. See below for more information.
    • 1983: HTTPS upstream port
    • 1984: APISIX HTTP port. Can be used to verify HTTP related gateway logic, such as concurrent access to an API.
    • 1985: APISIX TCP port. Can be used to verify TCP related gateway logic, such as concurrent access to an API.
    • 1994: APISIX HTTPS port. Can be used to verify HTTPS related gateway logic, such as testing certificate matching logic.
    • 1995: TCP upstream port
    • 2005: APISIX TLS over TCP port. Can be used to verify TLS over TCP related gateway logic, such as concurrent access to an API.

    The methods in t/lib/server.lua are executed when accessing the upstream port. _M.go is the entry point for this file. When the request accesses the upstream /xxx, the _M.xxx method is executed. For example, a request for /hello will execute _M.hello. This allows us to write methods inside t/lib/server.lua to emulate specific upstream logic, such as sending special responses.

    Note that before adding new methods to t/lib/server.lua, make sure that you can reuse existing methods.

    Run the test

    Assume your current work directory is the root of the apisix source code.

    1. Git clone the latest test-nginx to ../test-nginx.
    2. Run the test: prove -I. -I../test-nginx/inc -I../test-nginx/lib -r t/path/to/file.t.

    Tips

    The Nginx configuration and logs generated by the test cases are located in the t/servroot directory. The Nginx configuration template for testing is located in t/APISIX.pm.

    Three notes can be used to control which parts of the tests are executed.

    FIRST & LAST:

    1. === TEST 1: vars rule with ! (set)
    2. --- FIRST
    3. --- config
    4. ...
    5. --- response_body
    6. passed
    7. === TEST 2: vars rule with ! (hit)
    8. --- request
    9. GET /hello?name=jack&age=17
    10. --- LAST
    11. --- error_code: 403
    12. --- response_body
    13. Fault Injection!

    ONLY:

    1. === TEST 1: check exec stdout
    2. --- exec
    3. echo hello world
    4. --- response_body
    5. hello world
    6. === TEST 2: when exec returns an error
    7. --- exec
    8. echxo hello world
    9. --- grep_error_log eval
    10. qr/failed to execute the script [ -~]*/
    11. --- grep_error_log_out