summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/src/integrationtests/testrunner.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-cli/src/integrationtests/testrunner.ts')
-rw-r--r--packages/taler-wallet-cli/src/integrationtests/testrunner.ts23
1 files changed, 20 insertions, 3 deletions
diff --git a/packages/taler-wallet-cli/src/integrationtests/testrunner.ts b/packages/taler-wallet-cli/src/integrationtests/testrunner.ts
index 5717bb767..6caea138c 100644
--- a/packages/taler-wallet-cli/src/integrationtests/testrunner.ts
+++ b/packages/taler-wallet-cli/src/integrationtests/testrunner.ts
@@ -154,8 +154,8 @@ export async function runTests(spec: TestRunSpec) {
process.on("SIGINT", () => handleSignal);
process.on("SIGTERM", () => handleSignal);
- process.on("unhandledRejection", handleSignal);
- process.on("uncaughtException", handleSignal);
+ //process.on("unhandledRejection", handleSignal);
+ //process.on("uncaughtException", handleSignal);
for (const [n, testCase] of allTests.entries()) {
const testName = getTestName(testCase);
@@ -176,9 +176,18 @@ export async function runTests(spec: TestRunSpec) {
stdio: ["pipe", "pipe", "pipe", "ipc"],
});
+ const testDir = path.join(testRootDir, testName);
+ fs.mkdirSync(testDir, { recursive: true });
+
+ const harnessLogFilename = path.join(testRootDir, testName, "harness.log");
+ const harnessLogStream = fs.createWriteStream(harnessLogFilename);
+
currentChild.stderr?.pipe(process.stderr);
currentChild.stdout?.pipe(process.stdout);
+ currentChild.stdout?.pipe(harnessLogStream);
+ currentChild.stderr?.pipe(harnessLogStream);
+
const result: TestRunResult = await new Promise((resolve, reject) => {
let msg: TestRunResult | undefined;
currentChild!.on("message", (m) => {
@@ -204,6 +213,8 @@ export async function runTests(spec: TestRunSpec) {
});
});
+ harnessLogStream.close();
+
console.log(`parent: got result ${JSON.stringify(result)}`);
testResults.push(result);
@@ -247,9 +258,16 @@ if (runTestInstrStr) {
console.log(`running test ${testName} in worker process`);
process.on("disconnect", () => {
+ console.log("got disconnect from parent");
process.exit(3);
});
+ try {
+ require("source-map-support").install();
+ } catch (e) {
+ // Do nothing.
+ }
+
const runTest = async () => {
let testMain: TestMainFunction | undefined;
for (const t of allTests) {
@@ -270,7 +288,6 @@ if (runTestInstrStr) {
}
const testDir = path.join(testRootDir, testName);
- fs.mkdirSync(testDir);
console.log(`running test ${testName}`);
const gc = new GlobalTestState({
testDir,