Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-11-10 | Python: supporting ASGI legacy protocol. | Max Romanov | 4 | -1/+58 | |
Introducing manual protocol selection for 'universal' apps and frameworks. | |||||
2020-11-10 | Tests: supporting instant app parameters in load(). | Max Romanov | 3 | -89/+37 | |
2020-11-06 | Tests: fixing racing condition in ASGI threads test. | Max Romanov | 1 | -5/+5 | |
ASGI threads read all the requests from the queue before start processing it. This why test need to wait a little to let the ASGI thread start request processing and block. In virtual environment any thread or process may be delayed and only method to avoid racing is a reasonable sleep increase. | |||||
2020-11-05 | Tests: added Perl threading tests. | Max Romanov | 2 | -0/+52 | |
2020-11-05 | Tests: added Ruby threading tests. | Max Romanov | 2 | -0/+54 | |
2020-11-05 | Tests: added Java threading tests. | Max Romanov | 2 | -0/+73 | |
2020-11-05 | Tests: added Python threading tests. | Max Romanov | 4 | -0/+124 | |
2020-11-03 | Tests: disabled detailed output by default. | Andrei Zeliankou | 1 | -1/+1 | |
2020-11-03 | Tests: force applications to build for JVM 8. | Andrei Zeliankou | 1 | -0/+1 | |
This change is made to avoid situations when an application is compiled for a version newer than the Java module used. | |||||
2020-11-02 | Java: upgrading 3rd-party components. | Max Romanov | 1 | -1/+1 | |
2020-10-29 | Isolation: mounting of procfs by default when using "rootfs". | Tiago Natel de Moura | 6 | -79/+158 | |
2020-10-29 | Tests: added new ruby isolation test without namespaces. | Tiago Natel de Moura | 1 | -1/+20 | |
2020-10-28 | Tests: improving get_application_type() and fixing its name. | Max Romanov | 7 | -28/+14 | |
This patch also enables multiversion tests running for Java. | |||||
2020-10-27 | Tests: fixed isolation detection. | Andrei Zeliankou | 3 | -27/+112 | |
2020-10-19 | Tests: fixed unit.log print. | Andrei Zeliankou | 44 | -488/+427 | |
2020-10-06 | PHP: compatibility with 8.0.0 RC1. | Valentin Bartenev | 3 | -10/+10 | |
This closes #474 PR on GitHub. | |||||
2020-10-07 | Tests: minor fixes. | Andrei Zeliankou | 46 | -95/+125 | |
2020-10-07 | Tests: fixed loading selected module version. | Valentin Bartenev | 3 | -3/+15 | |
Previously, for PHP, Ruby, and Perl the latest version was always loaded in multi-version tests. | |||||
2020-10-07 | Router: fixed "not empty" pattern matching. | Valentin Bartenev | 1 | -0/+15 | |
The "!" pattern should be opposite to "", i.e. match only non-empty values. But after 3c00af54b937 it was equal to "!*", which is wrong. | |||||
2020-10-06 | Tests: fixed tests to run as root. | Andrei Zeliankou | 2 | -8/+4 | |
2020-10-05 | Tests: pretty versions output for multi-version tests. | Max Romanov | 1 | -3/+3 | |
2020-10-05 | Tests: added websocket test with long length. | Andrei Zeliankou | 1 | -0/+12 | |
2020-10-05 | Tests: added ASGI Lifespan. | Andrei Zeliankou | 5 | -0/+114 | |
2020-10-01 | Tests: added ASGI HTTP applications. | Max Romanov | 9 | -0/+598 | |
2020-10-01 | Tests: added ASGI WebSocket. | Max Romanov | 4 | -1/+1476 | |
2020-09-09 | PHP: fixed "rootfs" isolation dependency on system mounts. | Tiago Natel de Moura | 2 | -51/+30 | |
2020-10-01 | Tests: minor fixes. | Andrei Zeliankou | 10 | -76/+89 | |
Fixed temporary dir removing. Fixed printing path to log. Module checks moved to the separate file. | |||||
2020-09-30 | Tests: fixed test_static_space_in_name. | Andrei Zeliankou | 1 | -1/+1 | |
2020-09-27 | Tests: tuned delay in test_settings_idle_timeout_2. | Andrei Zeliankou | 1 | -1/+1 | |
2020-09-27 | Tests: added pytest.ini. | Andrei Zeliankou | 1 | -0/+3 | |
2020-09-24 | Tests: prerequisites check improved by using callable. | Max Romanov | 1 | -15/+23 | |
This is required for more flexible Python version check since ASGI works for Python 3.5+. Version check via 'startswith()' function removed as not consistent. | |||||
2020-09-22 | Tests: introduced module name configuration. | Max Romanov | 1 | -3/+10 | |
Also fixed problem with "/" in application name. | |||||
2020-09-22 | Tests: improved response receiving while upgrade. | Max Romanov | 1 | -4/+1 | |
The patch required to process non-101 response. | |||||
2020-09-22 | Tests: using dict.get() method with default value. | Max Romanov | 1 | -18/+9 | |
No functional changes. Only code readability improved. | |||||
2020-09-21 | Tests: added variable test with nonexistent upstream. | Andrei Zeliankou | 1 | -0/+23 | |
2020-09-21 | Tests: added test for "idle_timeout" with empty payload. | Andrei Zeliankou | 1 | -0/+18 | |
2020-09-21 | Tests: added multiple headers concatenation test. | Max Romanov | 1 | -9/+13 | |
2020-09-21 | Tests: changing Python application callable name. | Max Romanov | 2 | -0/+35 | |
2020-08-28 | Router: fixed "pass" to upstreams. | hongzhidao | 1 | -0/+79 | |
Messed up return values in nxt_upstream_find() caused error in applying any configuration with a valid "pass" value in router configuration pointing to upstream. That wasn't the case in "listeners" objects, where the return value wasn't checked. Also, it caused segfault in cases where the "pass" option was configured with variables and resulting value was pointing to a non-existent upstream. Added missing return checks as well to catch possible memory allocation errors. The bug was introduced in d32bc428f46b. This closes #472 issue on GitHub. | |||||
2020-09-16 | Tests: migrated to the pytest. | Andrei Zeliankou | 53 | -6321/+4776 | |
2020-08-31 | Tests: $host varaible test. | Andrei Zeliankou | 1 | -7/+24 | |
Also added few tests for $uri and minor style fixes. | |||||
2020-08-25 | Tests: disable of language_deps. | Tiago Natel de Moura | 1 | -0/+69 | |
2020-08-25 | Tests: PHP extension mounts. | Tiago Natel de Moura | 3 | -0/+66 | |
2020-08-20 | Tests: default tmpfs in rootfs. | Tiago Natel de Moura | 1 | -0/+20 | |
2020-08-13 | Tests: set root by unprivilaged user. | Tiago Natel de Moura | 1 | -0/+27 | |
2020-08-13 | Tests: added test with error on loading application. | Andrei Zeliankou | 1 | -0/+11 | |
2020-08-13 | Tests: added variables tests. | Andrei Zeliankou | 1 | -0/+94 | |
2020-08-11 | Tests: reducing the number of generated applications. | Max Romanov | 1 | -1/+3 | |
Each application initializes a shared port with 2 file descriptors, so the test fails because the router reaches the open files limit. | |||||
2020-08-11 | Tests: skipping idle zero timeout. | Max Romanov | 1 | -0/+1 | |
This is a temporary solution after the 'shared port' patch. The application process becomes idle immediately after creation. Even if it starts processing a request (without acknowledging it yet), it is stopped by the router because an 'out-of-idle-time' event occurs. | |||||
2020-07-28 | Tests: added PHP test with time check in error log messages. | Andrei Zeliankou | 2 | -0/+29 | |