2023-04-19 13:34:21 +00:00
Author: Adam Majer <amajer@suse.de>
Date: Dec 20 09:18:49 UTC 2017
Summary: Fix CI unit tests framework for OBS building
2025-06-12 14:43:19 +00:00
Index: node-v20.19.2/test/parallel/test-module-loading-globalpaths.js
2023-04-19 13:34:21 +00:00
===================================================================
2025-06-12 14:43:19 +00:00
--- node-v20.19.2.orig/test/parallel/test-module-loading-globalpaths.js
+++ node-v20.19.2/test/parallel/test-module-loading-globalpaths.js
2023-04-19 13:34:21 +00:00
@@ -11,6 +11,9 @@ const { addLibraryPath } = require('../c
addLibraryPath(process.env);
+common.skip('hardcoded global paths');
+return;
+
if (process.argv[2] === 'child') {
console.log(require(pkgName).string);
} else {
2025-06-12 14:43:19 +00:00
Index: node-v20.19.2/test/parallel/test-tls-passphrase.js
2023-04-19 13:34:21 +00:00
===================================================================
2025-06-12 14:43:19 +00:00
--- node-v20.19.2.orig/test/parallel/test-tls-passphrase.js
+++ node-v20.19.2/test/parallel/test-tls-passphrase.js
2023-04-19 13:34:21 +00:00
@@ -223,7 +223,7 @@ server.listen(0, common.mustCall(functio
}, onSecureConnect());
})).unref();
-const errMessageDecrypt = /bad decrypt/;
+const errMessageDecrypt = /bad (decrypt|password read)/;
// Missing passphrase
assert.throws(function() {
2025-06-12 14:43:19 +00:00
Index: node-v20.19.2/test/parallel/test-repl-envvars.js
2023-04-19 13:34:21 +00:00
===================================================================
2025-06-12 14:43:19 +00:00
--- node-v20.19.2.orig/test/parallel/test-repl-envvars.js
+++ node-v20.19.2/test/parallel/test-repl-envvars.js
2023-04-19 13:34:21 +00:00
@@ -2,7 +2,9 @@
// Flags: --expose-internals
-require('../common');
+const common = require('../common');
+common.skip('Not running test in OBS');
+
const stream = require('stream');
2023-06-15 11:44:48 +00:00
const { describe, test } = require('node:test');
2023-04-19 13:34:21 +00:00
const REPL = require('internal/repl');
2025-06-12 14:43:19 +00:00
Index: node-v20.19.2/Makefile
2023-04-19 13:34:21 +00:00
===================================================================
2025-06-12 14:43:19 +00:00
--- node-v20.19.2.orig/Makefile
+++ node-v20.19.2/Makefile
2024-12-04 16:58:37 +00:00
@@ -396,7 +396,6 @@ ADDONS_HEADERS_PREREQS := tools/install.
2024-04-03 14:25:40 +00:00
$(wildcard deps/uv/include/*/*.h) \
$(wildcard deps/v8/include/*.h) \
$(wildcard deps/v8/include/*/*.h) \
- deps/zlib/zconf.h deps/zlib/zlib.h \
src/node.h src/node_api.h src/js_native_api.h src/js_native_api_types.h \
src/node_api_types.h src/node_buffer.h src/node_object_wrap.h \
src/node_version.h
2024-12-04 16:58:37 +00:00
@@ -568,7 +567,8 @@ test-ci-js: | clear-stalled
2023-04-19 13:34:21 +00:00
.PHONY: test-ci
# Related CI jobs: most CI tests, excluding node-test-commit-arm-fanned
test-ci: LOGLEVEL := info
-test-ci: | clear-stalled bench-addons-build build-addons build-js-native-api-tests build-node-api-tests doc-only
+test-ci: | clear-stalled bench-addons-build build-addons build-js-native-api-tests build-node-api-tests
+ strip $(NODE_EXE)
out/Release/cctest --gtest_output=xml:out/junit/cctest.xml
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
--mode=$(BUILDTYPE_LOWER) --flaky-tests=$(FLAKY_TESTS) \
2025-06-12 14:43:19 +00:00
@@ -754,7 +754,8 @@ apidocs_json = $(addprefix out/,$(apidoc
2023-04-19 13:34:21 +00:00
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
tools/doc/node_modules: tools/doc/package.json
- @if [ "$(shell $(node_use_openssl))" != "true" ]; then \
+ echo "Skipping tools/doc/node_modules"
+# @if [ "$(shell $(node_use_openssl))" != "true" ]; then \
echo "Skipping tools/doc/node_modules (no crypto)"; \
else \
cd tools/doc && $(call available-node,$(run-npm-ci)) \
2025-06-12 14:43:19 +00:00
Index: node-v20.19.2/tools/test.py
2023-04-19 13:34:21 +00:00
===================================================================
2025-06-12 14:43:19 +00:00
--- node-v20.19.2.orig/tools/test.py
+++ node-v20.19.2/tools/test.py
2024-07-12 13:38:05 +00:00
@@ -1386,7 +1386,7 @@ def BuildOptions():
2023-05-15 14:06:14 +00:00
result.add_option("-s", "--suite", help="A test suite",
default=[], action="append")
result.add_option("-t", "--timeout", help="Timeout in seconds",
- default=120, type="int")
+ default=1200, type="int")
result.add_option("--arch", help='The architecture to run tests for',
default='none')
result.add_option("--snapshot", help="Run the tests with snapshot turned on",
2025-06-12 14:43:19 +00:00
Index: node-v20.19.2/test/parallel/test-crypto-dh.js
2023-10-16 13:01:28 +00:00
===================================================================
2025-06-12 14:43:19 +00:00
--- node-v20.19.2.orig/test/parallel/test-crypto-dh.js
+++ node-v20.19.2/test/parallel/test-crypto-dh.js
2024-12-04 16:58:37 +00:00
@@ -91,9 +91,7 @@ const crypto = require('crypto');
(common.hasOpenSSL(3, 1, 4));
2023-11-23 10:43:36 +00:00
assert.throws(() => {
dh3.computeSecret('');
- }, { message: common.hasOpenSSL3 && !hasOpenSSL3WithNewErrorMessage ?
- 'error:02800080:Diffie-Hellman routines::invalid secret' :
- 'Supplied key is too small' });
2023-10-27 09:19:38 +00:00
+ }, /(error:02800080:Diffie-Hellman routines::invalid secret|error:05066066:Diffie-Hellman routines:compute_key:invalid public key|Supplied key is too small)/);
2023-11-23 10:43:36 +00:00
}
2023-10-16 13:01:28 +00:00
}
2025-06-12 14:43:19 +00:00
Index: node-v20.19.2/test/parallel/test-crypto-fips.js
2023-12-18 12:54:20 +00:00
===================================================================
2025-06-12 14:43:19 +00:00
--- node-v20.19.2.orig/test/parallel/test-crypto-fips.js
+++ node-v20.19.2/test/parallel/test-crypto-fips.js
2024-01-29 10:06:21 +00:00
@@ -3,6 +3,8 @@
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
+if (common.hasOpenSSL3)
+ common.skip('skipped fips test on openssl 3.x, to be fixed later');
const assert = require('assert');
const spawnSync = require('child_process').spawnSync;
2025-06-12 14:43:19 +00:00
Index: node-v20.19.2/test/parallel/test-node-output-v8-warning.mjs
2024-02-13 13:11:48 +00:00
===================================================================
2025-06-12 14:43:19 +00:00
--- node-v20.19.2.orig/test/parallel/test-node-output-v8-warning.mjs
+++ node-v20.19.2/test/parallel/test-node-output-v8-warning.mjs
2024-02-13 13:11:48 +00:00
@@ -15,7 +15,7 @@ describe('v8 output', { concurrency: tru
.replaceAll('*test*', '*')
.replaceAll(/.*?\*fixtures\*v8\*/g, '(node:*) V8: *') // Replace entire path before fixtures/v8
.replaceAll('*fixtures*v8*', '*')
- .replaceAll('node --', '* --');
+ .replaceAll(/node\d+ --/g, '* --');
}
const common = snapshot
.transform(snapshot.replaceWindowsLineEndings, snapshot.replaceWindowsPaths, replaceNodeVersion);
2025-06-12 14:43:19 +00:00
Index: node-v20.19.2/test/parallel/test-dns.js
2024-12-04 17:51:51 +00:00
===================================================================
2025-06-12 14:43:19 +00:00
--- node-v20.19.2.orig/test/parallel/test-dns.js
+++ node-v20.19.2/test/parallel/test-dns.js
2024-12-04 17:51:51 +00:00
@@ -403,7 +403,7 @@ assert.throws(() => {
const server = dgram.createSocket('udp4');
- server.on('message', common.mustCall((msg, { address, port }) => {
+ server.on('message', common.mustCallAtLeast((msg, { address, port }) => {
const parsed = dnstools.parseDNSPacket(msg);
const domain = parsed.questions[0].domain;
assert.strictEqual(domain, 'example.org');