mirror of
https://github.com/denoland/deno.git
synced 2024-12-19 05:45:09 -05:00
fb24fd37c9
This PR enables node compat test cases found passing by using the tool added in #27122 The percentage of passing test case increases from 16.16% to 30.43% by this change.
57 lines
1.6 KiB
JavaScript
57 lines
1.6 KiB
JavaScript
// deno-fmt-ignore-file
|
|
// deno-lint-ignore-file
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
// Taken from Node 20.11.1
|
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
|
|
|
'use strict';
|
|
const common = require('../common');
|
|
// This test is intended for Windows only
|
|
if (!common.isWindows)
|
|
common.skip('this test is Windows-specific.');
|
|
|
|
const assert = require('assert');
|
|
|
|
if (!process.argv[2]) {
|
|
// parent
|
|
const net = require('net');
|
|
const spawn = require('child_process').spawn;
|
|
const path = require('path');
|
|
|
|
const pipeNamePrefix = `${path.basename(__filename)}.${process.pid}`;
|
|
const stdinPipeName = `\\\\.\\pipe\\${pipeNamePrefix}.stdin`;
|
|
const stdoutPipeName = `\\\\.\\pipe\\${pipeNamePrefix}.stdout`;
|
|
|
|
const stdinPipeServer = net.createServer(function(c) {
|
|
c.on('end', common.mustCall());
|
|
c.end('hello');
|
|
});
|
|
stdinPipeServer.listen(stdinPipeName);
|
|
|
|
const output = [];
|
|
|
|
const stdoutPipeServer = net.createServer(function(c) {
|
|
c.on('data', function(x) {
|
|
output.push(x);
|
|
});
|
|
c.on('end', common.mustCall(function() {
|
|
assert.strictEqual(output.join(''), 'hello');
|
|
}));
|
|
});
|
|
stdoutPipeServer.listen(stdoutPipeName);
|
|
|
|
const args =
|
|
[`"${__filename}"`, 'child', '<', stdinPipeName, '>', stdoutPipeName];
|
|
|
|
const child = spawn(`"${process.execPath}"`, args, { shell: true });
|
|
|
|
child.on('exit', common.mustCall(function(exitCode) {
|
|
stdinPipeServer.close();
|
|
stdoutPipeServer.close();
|
|
assert.strictEqual(exitCode, 0);
|
|
}));
|
|
} else {
|
|
// child
|
|
process.stdin.pipe(process.stdout);
|
|
}
|