1876:f85b85094541 | 24-May-2021 |
Oisin Canty |
Node.js: renamed "require_shim" to "loader". |
1875:6e77d607c7a3 | 24-May-2021 |
Andrei Zeliankou |
Tests: minor fixes. |
1873:d0cc4fd78d43 | 20-May-2021 |
Oisin Canty |
Tests: Python targets. |
1871:11bd3ef5a1fc | 18-May-2021 |
Andrei Zeliankou |
Tests: added test to check port release. |
1868:999775550850 | 17-May-2021 |
Andrei Zeliankou |
Tests: fixed incorrect "--restart" mode performing. |
1866:483157530489 | 12-May-2021 |
Andrei Zeliankou |
Tests: added test for TLS with IP in SAN. |
1865:3c551b9721df | 12-May-2021 |
Oisin Canty |
Node.js: a shim for overriding "http" and "websocket" modules.
Also added stubs for Server.address() This was done to prevent crashes in some popular frameworks like express
Supports both CommonJS
Node.js: a shim for overriding "http" and "websocket" modules.
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" ] }
show more ...
|
1864:755e40af8e1f | 11-May-2021 |
Andrei Zeliankou |
Tests: temporary dir removed after tests execution. |
1863:98a5801c01ba | 07-May-2021 |
Andrei Zeliankou |
Tests: added test for TLS with empty Subject field. |
1862:a605c2660b1d | 07-May-2021 |
Andrei Zeliankou |
Tests: PHP test with getting variable before the script is loaded. |
1860:f659bc148883 | 06-May-2021 |
Oisin Canty |
Tests: MIME filtering |
1858:a9a5746051aa | 04-May-2021 |
Andrei Zeliankou |
Tests: added tests for openat2() features. |
1852:74a7d5e98a88 | 14-Apr-2021 |
Andrei Zeliankou |
Tests: fixed "skip" descriptors check flag for controller. |
1850:839024ce4a6a | 08-Apr-2021 |
Max Romanov |
Tests: preserving unit.log when run without restart.
Introducing "unit.log.Log" class for "unit.log" file management. Moving "findall()" function into TestApplicationProto. Using "os.kill()" to send
Tests: preserving unit.log when run without restart.
Introducing "unit.log.Log" class for "unit.log" file management. Moving "findall()" function into TestApplicationProto. Using "os.kill()" to send signals.
show more ...
|
1848:4bd548074e2c | 05-Apr-2021 |
Andrei Zeliankou |
Tests: style. |
1847:699d9be5768e | 31-Mar-2021 |
Andrei Zeliankou |
Tests: unset LC_ALL variable in Ruby encoding test.
This change is necessary to set Encoding.default_external value correctly. |
1846:b94036cd2d95 | 31-Mar-2021 |
Andrei Zeliankou |
Tests: removed skip_alert(). |
1844:3f051e80f705 | 31-Mar-2021 |
Andrei Zeliankou |
Tests: added file descriptor leak detection. |
1843:1dab4306e8da | 26-Mar-2021 |
Andrei Zeliankou |
Tests: SNI. |
1842:7a35853a618d | 26-Mar-2021 |
Andrei Zeliankou |
Tests: added test for Ruby default encoding. |
Revision tags: 1.23.0-1, 1.23.0 |
|
1819:9344a39fb02e | 24-Mar-2021 |
Max Romanov |
Tests: fixed racing condition in websocket test 5_15.
Test case: "send a text message split into two fragments, then a continuation frame with FIN = false where there is nothing to continue, then an
Tests: fixed racing condition in websocket test 5_15.
Test case: "send a text message split into two fragments, then a continuation frame with FIN = false where there is nothing to continue, then an unfragmented text message, all sent in one chop".
The test case investigates immediate connection closing since there is no message to continue.
The mirror server may send a response for the first frame before the test сontinuation frame is received by the router. In this case, the test will receive a text frame before the close frame.
show more ...
|
1816:91b04f5068f5 | 22-Mar-2021 |
"Sergey A. Osokin" |
Java: upgrading third-party components. |
1808:d760b25a47d3 | 23-Feb-2021 |
Andrei Zeliankou |
Tests: fixed tests to work without openssl support. |
1807:858dbd8c0894 | 18-Feb-2021 |
Andrei Zeliankou |
Tests: added regex check. |
1805:55de51d00bca | 15-Feb-2021 |
Andrei Zeliankou |
Tests: clear certificates after each test. |