Skip to content

Commit

Permalink
Add test for large stdline output (#827)
Browse files Browse the repository at this point in the history
* Add test for large stdline output

* Format/Lint

* Update stdlineoutput.js

* Update stdlineoutput.js
  • Loading branch information
luketomlinson committed Jun 3, 2021
1 parent c503536 commit 8df94d9
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
25 changes: 25 additions & 0 deletions packages/exec/__tests__/exec.test.ts
Expand Up @@ -286,6 +286,31 @@ describe('@actions/exec', () => {
expect(stderrCalled).toBeTruthy()
})

it('Handles large stdline', async () => {
const stdlinePath: string = path.join(
__dirname,
'scripts',
'stdlineoutput.js'
)
const nodePath: string = await io.which('node', true)

const _testExecOptions = getExecOptions()
let largeLine = ''
_testExecOptions.listeners = {
stdline: (line: string) => {
largeLine = line
}
}

const exitCode = await exec.exec(
`"${nodePath}"`,
[stdlinePath],
_testExecOptions
)
expect(exitCode).toBe(0)
expect(Buffer.byteLength(largeLine)).toEqual(2 ** 16 + 1)
})

it('Handles stdin shell', async () => {
let command: string
if (IS_WINDOWS) {
Expand Down
5 changes: 5 additions & 0 deletions packages/exec/__tests__/scripts/stdlineoutput.js
@@ -0,0 +1,5 @@
//Default highWaterMark for readable stream buffers us 64K (2^16)
//so we go over that to get more than a buffer's worth
const os = require('os')

process.stdout.write('a'.repeat(2**16 + 1) + os.EOL);

0 comments on commit 8df94d9

Please sign in to comment.