summaryrefslogtreecommitdiffhomepage
path: root/test/unit/check (follow)
AgeCommit message (Collapse)AuthorFilesLines
2024-08-20Tests: initial "wasm-wasi-component" testAndrei Zeliankou2-1/+7
2024-02-21Tests: check for the AddressSanitizer flag during discoveryAndrei Zeliankou1-0/+2
This flag is necessary to either run or skip certain tests that have specific behavior depending on whether AddressSanitizer is enabled. For instance, some tests may fail only when the binary is compiled with AddressSanitizer.
2024-01-15Tests: pathlib used where appropriateAndrei Zeliankou3-8/+10
Also fixed various pylint errors and style issues.
2023-11-08Tests: 8XXX used as default port range.Andrei Zeliankou2-8/+8
After the launch of the project, the testing infrastructure was shared with nginx project in some cases. To avoid port overlap, a decision was made to shift the port range for Unit tests. This problem was resolved a long time ago and is no longer relevant, so it is now safe to use port 8XXX range as the default, as it is more appropriate for testing purposes.
2023-06-14Tests: get rid of classes in test files.Andrei Zeliankou4-16/+16
Class usage came from the unittest framework and it was always redundant after migration to the pytest. This commit removes classes from files containing tests to make them more readable and understandable.
2023-06-12Tests: prerequisites checking reworked.Andrei Zeliankou10-59/+163
Prerequisites check moved to the module level to simplify class structure. Discovery and prerequisites checks functions moved to the separate files. Introduced "require" fixture to provide per-test requirements check.
2023-05-25Tests: removed unused variables.Andrei Zeliankou1-1/+0
2023-02-21Tests: switched to using f-strings.Andrei Zeliankou4-18/+18
Previously, it was necessary to support older versions of Python for compatibility. F-strings were released in Python 3.6. Python 3.5 was marked as unsupported by the end of 2020, so now it's possible to start using f-strings safely for better readability and performance.
2022-12-12Tests: pretty output.Andrei Zeliankou1-3/+1
Hide expected alerts by default. Silence succesfull "go build" information.
2022-11-29Tests: NJS.Andrei Zeliankou1-0/+6
2022-11-15Tests: features and options checks improved.Andrei Zeliankou2-14/+8
Now version output evaluates only once. OpenSSL checks more carefully.
2022-08-25Tests: added tests with abstract UNIX sockets.Andrei Zeliankou1-0/+25
2022-01-10Tests: using modules in Go.Max Romanov1-31/+5
2021-11-15Tests: refactored working with processes.Andrei Zeliankou1-3/+4
2021-11-02Tests: removed unused imports.Andrei Zeliankou1-1/+0
2021-10-18Tests: style.Andrei Zeliankou1-1/+1
2021-07-02Tests: run Ruby applications inside temporary directory.Oisin Canty1-2/+5
2021-05-25Go: fixing tests for Go 1.16.Max Romanov1-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-12Node.js: a shim for overriding "http" and "websocket" modules.Oisin Canty1-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-05Tests: added tests for openat2() features.Andrei Zeliankou1-0/+32
2021-04-05Tests: style.Andrei Zeliankou1-2/+2
2021-02-18Tests: added regex check.Andrei Zeliankou1-0/+13
2020-12-15Tests: fixed bug that disabled isolation tests.Tiago Natel de Moura1-1/+1
2020-12-09Tests: isolation check moved to the pytest_sessionstart().Andrei Zeliankou1-0/+158
This change eliminates the need for some classes to run Unit one more time before running tests.
2020-11-16Tests: fixing tests interrupt in terminal.Max Romanov1-0/+3
KeyboardInterrupt re-raised.
2020-10-01Tests: minor fixes.Andrei Zeliankou3-0/+48
Fixed temporary dir removing. Fixed printing path to log. Module checks moved to the separate file.