-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
feat: support various encoding #446
Conversation
@@ -6,6 +6,8 @@ import { quote } from 'shell-quote'; | |||
import _ from 'lodash'; | |||
import { formatEnoent } from './helpers'; | |||
import { createInterface } from 'node:readline'; | |||
import iconv from 'iconv-lite'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
prefer to use import { decode } from 'iconv-lite';
syntax
if (this.proc.stdout) { | ||
this.proc.stdout.on('data', (chunk) => handleOutput({stdout: chunk.toString(), stderr: ''})); | ||
this.proc.stdout.on('data', (chunk) => handleOutput({stdout: decode(chunk, encoding), stderr: ''})); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should it only be applied to Windows?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also, I assume it only makes sense to apply decode if the requested encoding differs from the default one (e.g. utf8
)
@@ -48,6 +48,7 @@ | |||
}, | |||
"dependencies": { | |||
"bluebird": "^3.7.2", | |||
"iconv-lite": "0.6.3", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please use version range instead, e.g. ^0.x
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume this project has not been regularly maintained recently. Have you considered using some alternatives? For example, the Buffer.toString method also supports setting encoding as an argument
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about the following solution? It provides the buffer as output, similar to exec.
#447
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, the other solution adds more flexibility
I replace this PR with #447. |
The Windows operating system often has a unique default encoding set for the terminal (such as PowerShell) depending on the country. For example, when running WinAppDriver as a
SubProcess
, if an OS error occurs in a non-English-speaking country, the error message will be translated into the local language, making it unreadable. This issue arises because the encoding options provided by Node.js are limited and cannot resolve the problem.I propose using
iconv-lite
as a solution.