Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-05 | Tests: added tests for basic statistics. | Andrei Zeliankou | 1 | -0/+45 | |
2022-08-25 | Tests: added tests with abstract UNIX sockets. | Andrei Zeliankou | 2 | -1/+26 | |
2022-07-28 | Tests: added flags to search functions in proto.py. | Andrei Zeliankou | 2 | -9/+7 | |
Also removed unnesessary re.compile() calls. | |||||
2022-06-30 | Tests: minor improvements. | Andrei Zeliankou | 2 | -1/+6 | |
Added "go" availability check before trying to build an application. update_action() method used were possible and fixed bug with the relative path determination in test_static_chroot.py. Templates optimization and style fixes. | |||||
2022-04-11 | Tests: style. | Andrei Zeliankou | 4 | -14/+11 | |
2022-01-31 | Tests: removed TestApplicationTLS.get_server_certificate(). | Andrei Zeliankou | 1 | -15/+0 | |
distutils.version is replaced by packaging.version. Also minor style fixes. | |||||
2022-01-10 | Tests: using modules in Go. | Max Romanov | 2 | -42/+37 | |
2021-11-15 | Tests: refactored working with processes. | Andrei Zeliankou | 4 | -14/+20 | |
2021-11-09 | Tests: PHP shared opcache test added. | Max Romanov | 1 | -9/+18 | |
2021-11-02 | Tests: removed unused imports. | Andrei Zeliankou | 2 | -2/+0 | |
2021-10-18 | Tests: style. | Andrei Zeliankou | 3 | -3/+2 | |
2021-08-12 | Java: upgrading third-party components. | Max Romanov | 1 | -1/+1 | |
2021-08-09 | Java: upgrading third-party components. | Max Romanov | 1 | -1/+1 | |
2021-07-29 | Application restart introduced. | Max Romanov | 1 | -0/+1 | |
When processing a restart request, the router sends a QUIT message to all existing processes of the application. Then, a new shared application port is created to ensure that new requests won't be handled by the old processes of the application. | |||||
2021-07-23 | Tests: added SNI test without hostname in request. | Andrei Zeliankou | 1 | -1/+1 | |
2021-07-02 | Tests: Ruby hooks. | Oisin Canty | 3 | -22/+46 | |
2021-07-02 | Tests: run Ruby applications inside temporary directory. | Oisin Canty | 2 | -3/+20 | |
2021-05-25 | Go: fixing tests for Go 1.16. | Max Romanov | 2 | -0/+2 | |
In Go 1.16, the module-aware mode is enabled by default; to fall back to previous behavior, the GO111MODULE environment variable should be set to 'auto'. Details: https://golang.org/doc/go1.16 | |||||
2021-05-24 | Tests: test_settings_send_timeout improved. | Andrei Zeliankou | 1 | -0/+11 | |
Data length adjusts depending on socket buffer size when it's possible. | |||||
2021-05-24 | Node.js: renamed "require_shim" to "loader". | Oisin Canty | 1 | -3/+3 | |
2021-05-20 | Tests: Python targets. | Oisin Canty | 1 | -2/+9 | |
2021-05-12 | Tests: added test for TLS with IP in SAN. | Andrei Zeliankou | 1 | -2/+7 | |
2021-05-12 | Node.js: a shim for overriding "http" and "websocket" modules. | Oisin Canty | 2 | -5/+29 | |
Also added stubs for Server.address() This was done to prevent crashes in some popular frameworks like express Supports both CommonJS and the new ES Modules system syntax e.g: app.js: const http = require('http') app.mjs: import http from "http" Usage on Node 14.16.x and higher: { "type": "external", "processes": {"spare": 0}, "working_directory": '/project', "executable": "/usr/bin/env", "arguments": [ "node", "--loader", "unit-http/require_shim.mjs" "--require", "unit-http/require_shim", "app.js" ] } Usage on Node 14.15.x and lower: { "type": "external", "processes": {"spare": 0}, "working_directory": '/project', "executable": "/usr/bin/env", "arguments": [ "node", "--require", "unit-http/require_shim", "app.js" ] } | |||||
2021-05-05 | Tests: added tests for openat2() features. | Andrei Zeliankou | 1 | -0/+32 | |
2021-04-08 | Tests: preserving unit.log when run without restart. | Max Romanov | 2 | -6/+35 | |
Introducing "unit.log.Log" class for "unit.log" file management. Moving "findall()" function into TestApplicationProto. Using "os.kill()" to send signals. | |||||
2021-04-05 | Tests: style. | Andrei Zeliankou | 5 | -30/+40 | |
2021-03-26 | Tests: SNI. | Andrei Zeliankou | 2 | -4/+20 | |
2021-03-22 | Java: upgrading third-party components. | Sergey A. Osokin | 1 | -1/+1 | |
2021-02-18 | Tests: added regex check. | Andrei Zeliankou | 1 | -0/+13 | |
2021-02-10 | Tests: increased timeout in wait_for_record(). | Andrei Zeliankou | 1 | -2/+2 | |
2021-02-08 | Tests: added "--restart" option. | Andrei Zeliankou | 1 | -1/+1 | |
Now Unit do not restart after each test by default. | |||||
2021-01-13 | Tests: waitformount() and waitforunmount() introduced. | Andrei Zeliankou | 1 | -0/+32 | |
2020-12-21 | Tests: introduced a separate cache directory for Go builds. | Tiago Natel de Moura | 1 | -0/+1 | |
The Go compiler can't detect changes to C header files when compiling CGO applications, and then this leads to Go test samples being linked with wrong libunit. This patch creates a new cache directory reused throughout the test suite. | |||||
2020-12-15 | Tests: fixed bug that disabled isolation tests. | Tiago Natel de Moura | 1 | -1/+1 | |
2020-12-09 | Tests: TestUnit class removed. | Andrei Zeliankou | 2 | -38/+1 | |
Prerequisite checks moved to the fixture in conftest.py. | |||||
2020-12-09 | Tests: isolation check moved to the pytest_sessionstart(). | Andrei Zeliankou | 4 | -186/+190 | |
This change eliminates the need for some classes to run Unit one more time before running tests. | |||||
2020-12-08 | Tests: utils module introduced. | Andrei Zeliankou | 2 | -1/+51 | |
2020-12-06 | Tests: options moved to the separate class. | Andrei Zeliankou | 14 | -13/+29 | |
This change is necessary to separate the logic and prevent possible circular dependency. | |||||
2020-11-16 | Tests: fixing tests interrupt in terminal. | Max Romanov | 4 | -3/+24 | |
KeyboardInterrupt re-raised. | |||||
2020-11-10 | Python: supporting ASGI legacy protocol. | Max Romanov | 1 | -1/+2 | |
Introducing manual protocol selection for 'universal' apps and frameworks. | |||||
2020-11-10 | Tests: supporting instant app parameters in load(). | Max Romanov | 1 | -9/+13 | |
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 | 1 | -0/+14 | |
2020-10-28 | Tests: improving get_application_type() and fixing its name. | Max Romanov | 6 | -27/+11 | |
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 | 10 | -219/+38 | |
2020-10-07 | Tests: minor fixes. | Andrei Zeliankou | 12 | -23/+23 | |
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-01 | Tests: added ASGI WebSocket. | Max Romanov | 1 | -1/+1 | |