From d7ff6bb4a10e3999f788a2492944c70822441366 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Mon, 11 Mar 2024 13:45:39 +0000 Subject: Tests: NJS cacheable variables with access log Reproduces issue https://github.com/nginx/unit/issues/1169. --- test/test_njs.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/test_njs.py b/test/test_njs.py index 8ef815fd..23d1df1b 100644 --- a/test/test_njs.py +++ b/test/test_njs.py @@ -116,6 +116,24 @@ def test_njs_variables_cacheable(temp_dir): check_rewrite('/str', '${vars.uri}') +def test_njs_variables_cacheable_access_log(findall, temp_dir): + assert 'success' in client.conf({"return": 200}, 'routes/0/action') + + assert 'success' in client.conf( + { + 'path': f'{temp_dir}/access.log', + 'format': '`${vars.host}, ${vars.status}\n`', + }, + 'access_log' + ), 'access_log configure' + + reqs = 50 + for _ in range(reqs): + client.get() + + assert len(findall(r'localhost, 200', 'access.log')) == reqs + + def test_njs_invalid(skip_alert): skip_alert(r'js exception:') -- cgit