Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-12 | Tests: pretty output. | Andrei Zeliankou | 1 | -3/+1 | |
Hide expected alerts by default. Silence succesfull "go build" information. | |||||
2022-11-29 | Tests: NJS. | Andrei Zeliankou | 1 | -0/+6 | |
2022-11-15 | Tests: features and options checks improved. | Andrei Zeliankou | 2 | -14/+8 | |
Now version output evaluates only once. OpenSSL checks more carefully. | |||||
2022-08-25 | Tests: added tests with abstract UNIX sockets. | Andrei Zeliankou | 1 | -0/+25 | |
2022-01-10 | Tests: using modules in Go. | Max Romanov | 1 | -31/+5 | |
2021-11-15 | Tests: refactored working with processes. | Andrei Zeliankou | 1 | -3/+4 | |
2021-11-02 | Tests: removed unused imports. | Andrei Zeliankou | 1 | -1/+0 | |
2021-10-18 | Tests: style. | Andrei Zeliankou | 1 | -1/+1 | |
2021-07-02 | Tests: run Ruby applications inside temporary directory. | Oisin Canty | 1 | -2/+5 | |
2021-05-25 | Go: fixing tests for Go 1.16. | Max Romanov | 1 | -0/+1 | |
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-12 | Node.js: a shim for overriding "http" and "websocket" modules. | Oisin Canty | 1 | -2/+11 | |
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-05 | Tests: style. | Andrei Zeliankou | 1 | -2/+2 | |
2021-02-18 | Tests: added regex check. | Andrei Zeliankou | 1 | -0/+13 | |
2020-12-15 | Tests: fixed bug that disabled isolation tests. | Tiago Natel de Moura | 1 | -1/+1 | |
2020-12-09 | Tests: isolation check moved to the pytest_sessionstart(). | Andrei Zeliankou | 1 | -0/+158 | |
This change eliminates the need for some classes to run Unit one more time before running tests. | |||||
2020-11-16 | Tests: fixing tests interrupt in terminal. | Max Romanov | 1 | -0/+3 | |
KeyboardInterrupt re-raised. | |||||
2020-10-01 | Tests: minor fixes. | Andrei Zeliankou | 3 | -0/+48 | |
Fixed temporary dir removing. Fixed printing path to log. Module checks moved to the separate file. |