mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 13:22:07 +00:00
83 lines
2.7 KiB
JavaScript
83 lines
2.7 KiB
JavaScript
// This test is modified to not test node internals, only public APIs. It is also modified to use `-p` rather than `-pe` because Bun does not support `-pe`.
|
|
|
|
'use strict';
|
|
const common = require('../common');
|
|
if (common.isWindows) return; // TODO: BUN
|
|
const assert = require('assert');
|
|
const cp = require('child_process');
|
|
|
|
// Verify that a shell is, in fact, executed
|
|
const doesNotExist = cp.spawnSync('does-not-exist', { shell: true });
|
|
|
|
assert.notStrictEqual(doesNotExist.file, 'does-not-exist');
|
|
assert.strictEqual(doesNotExist.error, undefined);
|
|
assert.strictEqual(doesNotExist.signal, null);
|
|
|
|
if (common.isWindows)
|
|
assert.strictEqual(doesNotExist.status, 1); // Exit code of cmd.exe
|
|
else
|
|
assert.strictEqual(doesNotExist.status, 127); // Exit code of /bin/sh
|
|
|
|
// Verify that passing arguments works
|
|
const echo = cp.spawnSync('echo', ['foo'], { shell: true });
|
|
|
|
assert.strictEqual(echo.stdout.toString().trim(), 'foo');
|
|
|
|
// Verify that shell features can be used
|
|
const cmd = 'echo bar | cat';
|
|
const command = cp.spawnSync(cmd, { shell: true });
|
|
|
|
assert.strictEqual(command.stdout.toString().trim(), 'bar');
|
|
|
|
// Verify that the environment is properly inherited
|
|
const env = cp.spawnSync(`"${common.isWindows ? process.execPath : '$NODE'}" -p process.env.BAZ`, {
|
|
env: { ...process.env, BAZ: 'buzz', NODE: process.execPath },
|
|
shell: true
|
|
});
|
|
|
|
assert.strictEqual(env.stdout.toString().trim(), 'buzz');
|
|
|
|
// Verify that the shell internals work properly across platforms.
|
|
{
|
|
const originalComspec = process.env.comspec;
|
|
|
|
// Enable monkey patching process.platform.
|
|
const originalPlatform = process.platform;
|
|
let platform = null;
|
|
Object.defineProperty(process, 'platform', { get: () => platform });
|
|
|
|
function test(testPlatform, shell, shellOutput) {
|
|
platform = testPlatform;
|
|
const cmd = 'not_a_real_command';
|
|
|
|
cp.spawnSync(cmd, { shell });
|
|
}
|
|
|
|
// Test Unix platforms with the default shell.
|
|
test('darwin', true, '/bin/sh');
|
|
|
|
// Test Unix platforms with a user specified shell.
|
|
test('darwin', '/bin/csh', '/bin/csh');
|
|
|
|
// Test Android platforms.
|
|
test('android', true, '/system/bin/sh');
|
|
|
|
// Test Windows platforms with a user specified shell.
|
|
test('win32', 'powershell.exe', 'powershell.exe');
|
|
|
|
// Test Windows platforms with the default shell and no comspec.
|
|
delete process.env.comspec;
|
|
test('win32', true, 'cmd.exe');
|
|
|
|
// Test Windows platforms with the default shell and a comspec value.
|
|
process.env.comspec = 'powershell.exe';
|
|
test('win32', true, process.env.comspec);
|
|
|
|
// Restore the original value of process.platform.
|
|
platform = originalPlatform;
|
|
|
|
// Restore the original comspec environment variable if necessary.
|
|
if (originalComspec)
|
|
process.env.comspec = originalComspec;
|
|
}
|