2025-07-20 20:57:41 +02:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
2025-08-26 00:04:53 +02:00
|
|
|
import type { Mock } from 'vitest';
|
|
|
|
|
import { vi, describe, it, expect, beforeEach } from 'vitest';
|
2025-08-25 22:11:27 +02:00
|
|
|
import { EventEmitter } from 'node:events';
|
2025-11-17 15:48:33 -08:00
|
|
|
import clipboardy from 'clipboardy';
|
2025-07-20 20:57:41 +02:00
|
|
|
import {
|
|
|
|
|
isAtCommand,
|
|
|
|
|
isSlashCommand,
|
|
|
|
|
copyToClipboard,
|
2025-08-07 12:00:46 -04:00
|
|
|
getUrlOpenCommand,
|
2025-07-20 20:57:41 +02:00
|
|
|
} from './commandUtils.js';
|
|
|
|
|
|
2025-12-03 22:27:33 -08:00
|
|
|
// Constants used by OSC-52 tests
|
|
|
|
|
const ESC = '\u001B';
|
|
|
|
|
const BEL = '\u0007';
|
|
|
|
|
const ST = '\u001B\\';
|
|
|
|
|
|
2025-11-17 15:48:33 -08:00
|
|
|
// Mock clipboardy
|
|
|
|
|
vi.mock('clipboardy', () => ({
|
|
|
|
|
default: {
|
|
|
|
|
write: vi.fn(),
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
2025-07-20 20:57:41 +02:00
|
|
|
// Mock child_process
|
|
|
|
|
vi.mock('child_process');
|
|
|
|
|
|
2025-12-03 22:27:33 -08:00
|
|
|
// fs (for /dev/tty)
|
|
|
|
|
const mockFs = vi.hoisted(() => ({
|
|
|
|
|
createWriteStream: vi.fn(),
|
|
|
|
|
}));
|
|
|
|
|
vi.mock('node:fs', () => ({
|
|
|
|
|
default: mockFs,
|
|
|
|
|
}));
|
|
|
|
|
|
2025-07-20 20:57:41 +02:00
|
|
|
// Mock process.platform for platform-specific tests
|
|
|
|
|
const mockProcess = vi.hoisted(() => ({
|
|
|
|
|
platform: 'darwin',
|
|
|
|
|
}));
|
|
|
|
|
|
2025-10-17 16:53:31 +05:30
|
|
|
vi.stubGlobal(
|
|
|
|
|
'process',
|
|
|
|
|
Object.create(process, {
|
|
|
|
|
platform: {
|
|
|
|
|
get: () => mockProcess.platform,
|
|
|
|
|
configurable: true, // Allows the property to be changed later if needed
|
|
|
|
|
},
|
|
|
|
|
}),
|
|
|
|
|
);
|
2025-07-20 20:57:41 +02:00
|
|
|
|
2025-12-03 22:27:33 -08:00
|
|
|
const makeWritable = (opts?: { isTTY?: boolean; writeReturn?: boolean }) => {
|
|
|
|
|
const { isTTY = false, writeReturn = true } = opts ?? {};
|
|
|
|
|
const stream = Object.assign(new EventEmitter(), {
|
|
|
|
|
write: vi.fn().mockReturnValue(writeReturn),
|
|
|
|
|
end: vi.fn(),
|
|
|
|
|
destroy: vi.fn(),
|
|
|
|
|
isTTY,
|
|
|
|
|
once: EventEmitter.prototype.once,
|
|
|
|
|
on: EventEmitter.prototype.on,
|
|
|
|
|
off: EventEmitter.prototype.off,
|
|
|
|
|
}) as unknown as EventEmitter & {
|
|
|
|
|
write: Mock;
|
|
|
|
|
end: Mock;
|
|
|
|
|
isTTY?: boolean;
|
|
|
|
|
};
|
|
|
|
|
return stream;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const resetEnv = () => {
|
|
|
|
|
delete process.env['TMUX'];
|
|
|
|
|
delete process.env['STY'];
|
|
|
|
|
delete process.env['SSH_TTY'];
|
|
|
|
|
delete process.env['SSH_CONNECTION'];
|
|
|
|
|
delete process.env['SSH_CLIENT'];
|
|
|
|
|
delete process.env['WSL_DISTRO_NAME'];
|
|
|
|
|
delete process.env['WSLENV'];
|
|
|
|
|
delete process.env['WSL_INTEROP'];
|
|
|
|
|
delete process.env['TERM'];
|
|
|
|
|
};
|
|
|
|
|
|
2025-07-20 20:57:41 +02:00
|
|
|
interface MockChildProcess extends EventEmitter {
|
|
|
|
|
stdin: EventEmitter & {
|
|
|
|
|
write: Mock;
|
|
|
|
|
end: Mock;
|
|
|
|
|
};
|
|
|
|
|
stderr: EventEmitter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
describe('commandUtils', () => {
|
|
|
|
|
let mockSpawn: Mock;
|
|
|
|
|
let mockChild: MockChildProcess;
|
2025-11-17 15:48:33 -08:00
|
|
|
let mockClipboardyWrite: Mock;
|
2025-07-20 20:57:41 +02:00
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
vi.clearAllMocks();
|
2026-01-06 02:03:03 +05:30
|
|
|
// Reset platform to default for test isolation
|
|
|
|
|
mockProcess.platform = 'darwin';
|
|
|
|
|
|
2025-07-20 20:57:41 +02:00
|
|
|
// Dynamically import and set up spawn mock
|
2025-08-25 22:11:27 +02:00
|
|
|
const { spawn } = await import('node:child_process');
|
2025-07-20 20:57:41 +02:00
|
|
|
mockSpawn = spawn as Mock;
|
|
|
|
|
|
|
|
|
|
// Create mock child process with stdout/stderr emitters
|
|
|
|
|
mockChild = Object.assign(new EventEmitter(), {
|
|
|
|
|
stdin: Object.assign(new EventEmitter(), {
|
|
|
|
|
write: vi.fn(),
|
|
|
|
|
end: vi.fn(),
|
2025-10-17 16:53:31 +05:30
|
|
|
destroy: vi.fn(),
|
|
|
|
|
}),
|
|
|
|
|
stdout: Object.assign(new EventEmitter(), {
|
|
|
|
|
destroy: vi.fn(),
|
|
|
|
|
}),
|
|
|
|
|
stderr: Object.assign(new EventEmitter(), {
|
|
|
|
|
destroy: vi.fn(),
|
2025-07-20 20:57:41 +02:00
|
|
|
}),
|
|
|
|
|
}) as MockChildProcess;
|
|
|
|
|
|
|
|
|
|
mockSpawn.mockReturnValue(mockChild as unknown as ReturnType<typeof spawn>);
|
2025-11-17 15:48:33 -08:00
|
|
|
|
|
|
|
|
// Setup clipboardy mock
|
|
|
|
|
mockClipboardyWrite = clipboardy.write as Mock;
|
2025-12-03 22:27:33 -08:00
|
|
|
|
|
|
|
|
// default: no /dev/tty available
|
|
|
|
|
mockFs.createWriteStream.mockImplementation(() => {
|
|
|
|
|
throw new Error('ENOENT');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// default: stdio are not TTY for tests unless explicitly set
|
|
|
|
|
Object.defineProperty(process, 'stderr', {
|
|
|
|
|
value: makeWritable({ isTTY: false }),
|
|
|
|
|
configurable: true,
|
|
|
|
|
});
|
|
|
|
|
Object.defineProperty(process, 'stdout', {
|
|
|
|
|
value: makeWritable({ isTTY: false }),
|
|
|
|
|
configurable: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
resetEnv();
|
2025-07-20 20:57:41 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('isAtCommand', () => {
|
|
|
|
|
it('should return true when query starts with @', () => {
|
|
|
|
|
expect(isAtCommand('@file')).toBe(true);
|
|
|
|
|
expect(isAtCommand('@path/to/file')).toBe(true);
|
|
|
|
|
expect(isAtCommand('@')).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return true when query contains @ preceded by whitespace', () => {
|
|
|
|
|
expect(isAtCommand('hello @file')).toBe(true);
|
|
|
|
|
expect(isAtCommand('some text @path/to/file')).toBe(true);
|
|
|
|
|
expect(isAtCommand(' @file')).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return false when query does not start with @ and has no spaced @', () => {
|
|
|
|
|
expect(isAtCommand('file')).toBe(false);
|
|
|
|
|
expect(isAtCommand('hello')).toBe(false);
|
|
|
|
|
expect(isAtCommand('')).toBe(false);
|
|
|
|
|
expect(isAtCommand('email@domain.com')).toBe(false);
|
|
|
|
|
expect(isAtCommand('user@host')).toBe(false);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return false when @ is not preceded by whitespace', () => {
|
|
|
|
|
expect(isAtCommand('hello@file')).toBe(false);
|
|
|
|
|
expect(isAtCommand('text@path')).toBe(false);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('isSlashCommand', () => {
|
|
|
|
|
it('should return true when query starts with /', () => {
|
|
|
|
|
expect(isSlashCommand('/help')).toBe(true);
|
|
|
|
|
expect(isSlashCommand('/memory show')).toBe(true);
|
|
|
|
|
expect(isSlashCommand('/clear')).toBe(true);
|
|
|
|
|
expect(isSlashCommand('/')).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return false when query does not start with /', () => {
|
|
|
|
|
expect(isSlashCommand('help')).toBe(false);
|
|
|
|
|
expect(isSlashCommand('memory show')).toBe(false);
|
|
|
|
|
expect(isSlashCommand('')).toBe(false);
|
|
|
|
|
expect(isSlashCommand('path/to/file')).toBe(false);
|
|
|
|
|
expect(isSlashCommand(' /help')).toBe(false);
|
|
|
|
|
});
|
2025-08-26 11:51:27 +08:00
|
|
|
|
|
|
|
|
it('should return false for line comments starting with //', () => {
|
|
|
|
|
expect(isSlashCommand('// This is a comment')).toBe(false);
|
|
|
|
|
expect(isSlashCommand('// check if variants base info all filled.')).toBe(
|
|
|
|
|
false,
|
|
|
|
|
);
|
|
|
|
|
expect(isSlashCommand('//comment without space')).toBe(false);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return false for block comments starting with /*', () => {
|
|
|
|
|
expect(isSlashCommand('/* This is a block comment */')).toBe(false);
|
|
|
|
|
expect(isSlashCommand('/*\n * Multi-line comment\n */')).toBe(false);
|
|
|
|
|
expect(isSlashCommand('/*comment without space*/')).toBe(false);
|
|
|
|
|
});
|
2025-07-20 20:57:41 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('copyToClipboard', () => {
|
2025-12-03 22:27:33 -08:00
|
|
|
it('uses clipboardy when not in SSH/tmux/screen/WSL (even if TTYs exist)', async () => {
|
2025-11-17 15:48:33 -08:00
|
|
|
const testText = 'Hello, world!';
|
|
|
|
|
mockClipboardyWrite.mockResolvedValue(undefined);
|
2025-07-20 20:57:41 +02:00
|
|
|
|
2025-12-03 22:27:33 -08:00
|
|
|
// even if stderr/stdout are TTY, without the env signals we fallback
|
|
|
|
|
Object.defineProperty(process, 'stderr', {
|
|
|
|
|
value: makeWritable({ isTTY: true }),
|
|
|
|
|
configurable: true,
|
|
|
|
|
});
|
|
|
|
|
Object.defineProperty(process, 'stdout', {
|
|
|
|
|
value: makeWritable({ isTTY: true }),
|
|
|
|
|
configurable: true,
|
|
|
|
|
});
|
|
|
|
|
|
2025-11-17 15:48:33 -08:00
|
|
|
await copyToClipboard(testText);
|
2025-07-20 20:57:41 +02:00
|
|
|
|
2025-11-17 15:48:33 -08:00
|
|
|
expect(mockClipboardyWrite).toHaveBeenCalledWith(testText);
|
2025-07-20 20:57:41 +02:00
|
|
|
});
|
|
|
|
|
|
2025-12-03 22:27:33 -08:00
|
|
|
it('writes OSC-52 to /dev/tty when in SSH', async () => {
|
|
|
|
|
const testText = 'abc';
|
|
|
|
|
const tty = makeWritable({ isTTY: true });
|
|
|
|
|
mockFs.createWriteStream.mockReturnValue(tty);
|
2025-07-20 20:57:41 +02:00
|
|
|
|
2025-12-03 22:27:33 -08:00
|
|
|
process.env['SSH_CONNECTION'] = '1';
|
|
|
|
|
|
|
|
|
|
await copyToClipboard(testText);
|
|
|
|
|
|
|
|
|
|
const b64 = Buffer.from(testText, 'utf8').toString('base64');
|
|
|
|
|
const expected = `${ESC}]52;c;${b64}${BEL}`;
|
|
|
|
|
|
|
|
|
|
expect(tty.write).toHaveBeenCalledTimes(1);
|
2025-12-12 17:43:43 -08:00
|
|
|
expect(tty.write.mock.calls[0][0]).toBe(expected);
|
2025-12-03 22:27:33 -08:00
|
|
|
expect(tty.end).toHaveBeenCalledTimes(1); // /dev/tty closed after write
|
|
|
|
|
expect(mockClipboardyWrite).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('wraps OSC-52 for tmux', async () => {
|
|
|
|
|
const testText = 'tmux-copy';
|
|
|
|
|
const tty = makeWritable({ isTTY: true });
|
|
|
|
|
mockFs.createWriteStream.mockReturnValue(tty);
|
|
|
|
|
|
|
|
|
|
process.env['TMUX'] = '1';
|
|
|
|
|
|
|
|
|
|
await copyToClipboard(testText);
|
|
|
|
|
|
2025-12-12 17:43:43 -08:00
|
|
|
const written = tty.write.mock.calls[0][0] as string;
|
2025-12-03 22:27:33 -08:00
|
|
|
// Starts with tmux DCS wrapper and ends with ST
|
|
|
|
|
expect(written.startsWith(`${ESC}Ptmux;`)).toBe(true);
|
|
|
|
|
expect(written.endsWith(ST)).toBe(true);
|
|
|
|
|
// ESC bytes in payload are doubled
|
|
|
|
|
expect(written).toContain(`${ESC}${ESC}]52;c;`);
|
|
|
|
|
expect(mockClipboardyWrite).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('wraps OSC-52 for GNU screen with chunked DCS', async () => {
|
|
|
|
|
// ensure payload > chunk size (240) so there are multiple chunks
|
|
|
|
|
const testText = 'x'.repeat(1200);
|
|
|
|
|
const tty = makeWritable({ isTTY: true });
|
|
|
|
|
mockFs.createWriteStream.mockReturnValue(tty);
|
|
|
|
|
|
|
|
|
|
process.env['STY'] = 'screen-session';
|
|
|
|
|
|
|
|
|
|
await copyToClipboard(testText);
|
|
|
|
|
|
2025-12-12 17:43:43 -08:00
|
|
|
const written = tty.write.mock.calls[0][0] as string;
|
2025-12-03 22:27:33 -08:00
|
|
|
const chunkStarts = (written.match(new RegExp(`${ESC}P`, 'g')) || [])
|
|
|
|
|
.length;
|
|
|
|
|
const chunkEnds = written.split(ST).length - 1;
|
|
|
|
|
|
|
|
|
|
expect(chunkStarts).toBeGreaterThan(1);
|
|
|
|
|
expect(chunkStarts).toBe(chunkEnds);
|
|
|
|
|
expect(written).toContain(']52;c;'); // contains base OSC-52 marker
|
|
|
|
|
expect(mockClipboardyWrite).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('falls back to stderr when /dev/tty unavailable and stderr is a TTY', async () => {
|
|
|
|
|
const testText = 'stderr-tty';
|
|
|
|
|
const stderrStream = makeWritable({ isTTY: true });
|
|
|
|
|
Object.defineProperty(process, 'stderr', {
|
|
|
|
|
value: stderrStream,
|
|
|
|
|
configurable: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
process.env['SSH_TTY'] = '/dev/pts/1';
|
|
|
|
|
|
|
|
|
|
await copyToClipboard(testText);
|
|
|
|
|
|
|
|
|
|
const b64 = Buffer.from(testText, 'utf8').toString('base64');
|
|
|
|
|
const expected = `${ESC}]52;c;${b64}${BEL}`;
|
|
|
|
|
|
|
|
|
|
expect(stderrStream.write).toHaveBeenCalledWith(expected);
|
|
|
|
|
expect(mockClipboardyWrite).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('falls back to clipboardy when no TTY is available', async () => {
|
|
|
|
|
const testText = 'no-tty';
|
|
|
|
|
mockClipboardyWrite.mockResolvedValue(undefined);
|
|
|
|
|
|
|
|
|
|
// /dev/tty throws; stderr/stdout are non-TTY by default
|
|
|
|
|
process.env['SSH_CLIENT'] = 'client';
|
|
|
|
|
|
|
|
|
|
await copyToClipboard(testText);
|
|
|
|
|
|
|
|
|
|
expect(mockClipboardyWrite).toHaveBeenCalledWith(testText);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('resolves on drain when backpressure occurs', async () => {
|
|
|
|
|
const tty = makeWritable({ isTTY: true, writeReturn: false });
|
|
|
|
|
mockFs.createWriteStream.mockReturnValue(tty);
|
|
|
|
|
process.env['SSH_CONNECTION'] = '1';
|
|
|
|
|
|
|
|
|
|
const p = copyToClipboard('drain-test');
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
tty.emit('drain');
|
|
|
|
|
}, 0);
|
|
|
|
|
await expect(p).resolves.toBeUndefined();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('propagates errors from OSC-52 write path', async () => {
|
|
|
|
|
const tty = makeWritable({ isTTY: true, writeReturn: false });
|
|
|
|
|
mockFs.createWriteStream.mockReturnValue(tty);
|
|
|
|
|
process.env['SSH_CONNECTION'] = '1';
|
|
|
|
|
|
|
|
|
|
const p = copyToClipboard('err-test');
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
tty.emit('error', new Error('tty error'));
|
|
|
|
|
}, 0);
|
|
|
|
|
|
|
|
|
|
await expect(p).rejects.toThrow('tty error');
|
|
|
|
|
expect(mockClipboardyWrite).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('does nothing for empty string', async () => {
|
|
|
|
|
await copyToClipboard('');
|
|
|
|
|
expect(mockClipboardyWrite).not.toHaveBeenCalled();
|
|
|
|
|
// ensure no accidental writes to stdio either
|
|
|
|
|
const stderrStream = process.stderr as unknown as { write: Mock };
|
|
|
|
|
const stdoutStream = process.stdout as unknown as { write: Mock };
|
|
|
|
|
expect(stderrStream.write).not.toHaveBeenCalled();
|
|
|
|
|
expect(stdoutStream.write).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('uses clipboardy when not in eligible env even if /dev/tty exists', async () => {
|
|
|
|
|
const tty = makeWritable({ isTTY: true });
|
|
|
|
|
mockFs.createWriteStream.mockReturnValue(tty);
|
|
|
|
|
const text = 'local-terminal';
|
|
|
|
|
mockClipboardyWrite.mockResolvedValue(undefined);
|
|
|
|
|
|
|
|
|
|
await copyToClipboard(text);
|
|
|
|
|
|
|
|
|
|
expect(mockClipboardyWrite).toHaveBeenCalledWith(text);
|
|
|
|
|
expect(tty.write).not.toHaveBeenCalled();
|
|
|
|
|
expect(tty.end).not.toHaveBeenCalled();
|
2025-07-20 20:57:41 +02:00
|
|
|
});
|
2026-01-06 02:03:03 +05:30
|
|
|
|
|
|
|
|
it('skips /dev/tty on Windows and uses stderr fallback for OSC-52', async () => {
|
|
|
|
|
mockProcess.platform = 'win32';
|
|
|
|
|
const stderrStream = makeWritable({ isTTY: true });
|
|
|
|
|
Object.defineProperty(process, 'stderr', {
|
|
|
|
|
value: stderrStream,
|
|
|
|
|
configurable: true,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Set SSH environment to trigger OSC-52 path
|
|
|
|
|
process.env['SSH_CONNECTION'] = '1';
|
|
|
|
|
|
|
|
|
|
await copyToClipboard('windows-ssh-test');
|
|
|
|
|
|
|
|
|
|
expect(mockFs.createWriteStream).not.toHaveBeenCalled();
|
|
|
|
|
expect(stderrStream.write).toHaveBeenCalled();
|
|
|
|
|
expect(mockClipboardyWrite).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('uses clipboardy on native Windows without SSH/WSL', async () => {
|
|
|
|
|
mockProcess.platform = 'win32';
|
|
|
|
|
mockClipboardyWrite.mockResolvedValue(undefined);
|
|
|
|
|
|
|
|
|
|
await copyToClipboard('windows-native-test');
|
|
|
|
|
|
|
|
|
|
// Fallback to clipboardy and not /dev/tty
|
|
|
|
|
expect(mockClipboardyWrite).toHaveBeenCalledWith('windows-native-test');
|
|
|
|
|
expect(mockFs.createWriteStream).not.toHaveBeenCalled();
|
|
|
|
|
});
|
2025-07-20 20:57:41 +02:00
|
|
|
});
|
2025-08-07 12:00:46 -04:00
|
|
|
|
|
|
|
|
describe('getUrlOpenCommand', () => {
|
|
|
|
|
describe('on macOS (darwin)', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
mockProcess.platform = 'darwin';
|
|
|
|
|
});
|
|
|
|
|
it('should return open', () => {
|
|
|
|
|
expect(getUrlOpenCommand()).toBe('open');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('on Windows (win32)', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
mockProcess.platform = 'win32';
|
|
|
|
|
});
|
|
|
|
|
it('should return start', () => {
|
|
|
|
|
expect(getUrlOpenCommand()).toBe('start');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('on Linux (linux)', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
mockProcess.platform = 'linux';
|
|
|
|
|
});
|
|
|
|
|
it('should return xdg-open', () => {
|
|
|
|
|
expect(getUrlOpenCommand()).toBe('xdg-open');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('on unmatched OS', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
mockProcess.platform = 'unmatched';
|
|
|
|
|
});
|
|
|
|
|
it('should return xdg-open', () => {
|
|
|
|
|
expect(getUrlOpenCommand()).toBe('xdg-open');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2025-07-20 20:57:41 +02:00
|
|
|
});
|