deno.land / std@0.166.0 / node / _tools / test / parallel / test-child-process-exec-maxbuf.js

test-child-process-exec-maxbuf.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
// deno-fmt-ignore-file// deno-lint-ignore-file
// Copyright Joyent and Node contributors. All rights reserved. MIT license.// Taken from Node 18.8.0// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
// TODO(#2674): The "eval" subcommand passed to exec() should be the "-e" option.
'use strict';const common = require('../common');const assert = require('assert');const cp = require('child_process');
function runChecks(err, stdio, streamName, expected) { assert.strictEqual(err.message, `${streamName} maxBuffer length exceeded`); assert(err instanceof RangeError); assert.strictEqual(err.code, 'ERR_CHILD_PROCESS_STDIO_MAXBUFFER'); assert.deepStrictEqual(stdio[streamName], expected);}
// default value{ const cmd = `"${process.execPath}" eval "console.log('a'.repeat(1024 * 1024))"`;
cp.exec(cmd, common.mustCall((err) => { assert(err instanceof RangeError); assert.strictEqual(err.message, 'stdout maxBuffer length exceeded'); assert.strictEqual(err.code, 'ERR_CHILD_PROCESS_STDIO_MAXBUFFER'); }));}
// default value{ const cmd = `${process.execPath} eval "console.log('a'.repeat(1024 * 1024 - 1))"`;
cp.exec(cmd, common.mustSucceed((stdout, stderr) => { assert.strictEqual(stdout.trim(), 'a'.repeat(1024 * 1024 - 1)); assert.strictEqual(stderr, ''); }));}
{ const cmd = `"${process.execPath}" eval "console.log('hello world');"`; const options = { maxBuffer: Infinity };
cp.exec(cmd, options, common.mustSucceed((stdout, stderr) => { assert.strictEqual(stdout.trim(), 'hello world'); assert.strictEqual(stderr, ''); }));}
{ const cmd = 'echo hello world';
cp.exec( cmd, { maxBuffer: 5 }, common.mustCall((err, stdout, stderr) => { runChecks(err, { stdout, stderr }, 'stdout', 'hello'); }) );}
// default value{ const cmd = `"${process.execPath}" eval "console.log('a'.repeat(1024 * 1024))"`;
cp.exec( cmd, common.mustCall((err, stdout, stderr) => { runChecks( err, { stdout, stderr }, 'stdout', 'a'.repeat(1024 * 1024) ); }) );}
// default value{ const cmd = `"${process.execPath}" eval "console.log('a'.repeat(1024 * 1024 - 1))"`;
cp.exec(cmd, common.mustSucceed((stdout, stderr) => { assert.strictEqual(stdout.trim(), 'a'.repeat(1024 * 1024 - 1)); assert.strictEqual(stderr, ''); }));}
const unicode = '中文测试'; // length = 4, byte length = 12
{ const cmd = `"${process.execPath}" eval "console.log('${unicode}');"`;
cp.exec( cmd, { maxBuffer: 10 }, common.mustCall((err, stdout, stderr) => { runChecks(err, { stdout, stderr }, 'stdout', '中文测试\n'); }) );}
{ const cmd = `"${process.execPath}" eval "console.error('${unicode}');"`;
cp.exec( cmd, { maxBuffer: 3 }, common.mustCall((err, stdout, stderr) => { runChecks(err, { stdout, stderr }, 'stderr', '中文测'); }) );}
{ const cmd = `"${process.execPath}" eval "console.log('${unicode}');"`;
const child = cp.exec( cmd, { encoding: null, maxBuffer: 10 }, common.mustCall((err, stdout, stderr) => { runChecks(err, { stdout, stderr }, 'stdout', '中文测试\n'); }) );
child.stdout.setEncoding('utf-8');}
{ const cmd = `"${process.execPath}" eval "console.error('${unicode}');"`;
const child = cp.exec( cmd, { encoding: null, maxBuffer: 3 }, common.mustCall((err, stdout, stderr) => { runChecks(err, { stdout, stderr }, 'stderr', '中文测'); }) );
child.stderr.setEncoding('utf-8');}
{ const cmd = `"${process.execPath}" eval "console.error('${unicode}');"`;
cp.exec( cmd, { encoding: null, maxBuffer: 5 }, common.mustCall((err, stdout, stderr) => { const buf = Buffer.from(unicode).slice(0, 5); runChecks(err, { stdout, stderr }, 'stderr', buf); }) );}
std

Version Info

Tagged at
a year ago