-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JSON format issue, especially with larger reports, such as 500MB in size #2406
Comments
The JSON formatter you are using is not able to write streaming data. So total size of the report will always be limited. We do have a Though there are not many tools that can consume this format it yet and we are still migrating our internal tools. This is a slow process and will take time. Currently a few of our internal tools do support it:
Though worth noting that the As Cucumber is an Opensource project I reckon your options are:
@davidjgoss is anything people could do to help out with externalizing files in the html formatter? Note: error message aside, cucumber/common#1763 seems unrelated. |
Hi, Korstanje |
This has a lot of overlap with the HTML formatter, where also there is a desire to externalise attachments due to their large size bundled into one file. Per cucumber/html-formatter#281 (comment): I think we could also add such an option for the JSON formatter in cucumber-js. Does that sound reasonable @pavankumardmg? |
Hi @davidjgoss Thank you for your comments. Yes that sounds good. |
👓 What did you see?
When I use JSON format to generate results, I encounter the following error.
error logs:
/app/node_modules/@cucumber/cucumber/src/formatter/json_formatter.ts:185
this.log(JSON.stringify(features, null, 2))
^
RangeError: Invalid string length
at JSON.stringify ()
at JsonFormatter.onTestRunFinished (/app/node_modules/@cucumber/cucumber/src/formatter/json_formatter.ts:185:19)
at EventEmitter. (/app/node_modules/@cucumber/cucumber/src/formatter/json_formatter.ts:92:14)
at EventEmitter.emit (node:events:532:35)
at EventEmitter.emit (node:domain:488:12)
at Coordinator.onWorkerProcessClose (/app/node_modules/@cucumber/cucumber/src/runtime/parallel/coordinator.ts:185:29)
at ChildProcess. (/app/node_modules/@cucumber/cucumber/src/runtime/parallel/coordinator.ts:146:12)
at ChildProcess.emit (node:events:520:28)
at ChildProcess.emit (node:domain:488:12)
at maybeClose (node:internal/child_process:1105:16)
✅ What did you expect to see?
Expected to see a JSON report without any formatting issues
📦 Which tool/library version are you using?
node version 18.17.0 or latest
cucumber ts 10.6.0
🔬 How could we reproduce it?
Steps to Reproduce:
📚 Any additional context?
No response
The text was updated successfully, but these errors were encountered: