Some checks failed
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
44 lines
1.7 KiB
TypeScript
44 lines
1.7 KiB
TypeScript
import { escapeSpecialCharacters, normalizeFileSelector } from '../helpers/utils';
|
|
|
|
describe('Read/Write Files from Disk', () => {
|
|
describe('escapeSpecialCharacters', () => {
|
|
it('should escape parentheses in a string', () => {
|
|
const input = '/home/michael/Desktop/test(1).txt';
|
|
const expectedOutput = '/home/michael/Desktop/test\\(1\\).txt';
|
|
expect(escapeSpecialCharacters(input)).toBe(expectedOutput);
|
|
});
|
|
|
|
it('should not modify strings that do not contain parentheses', () => {
|
|
const input = '/home/michael/Desktop/test.txt';
|
|
const expectedOutput = '/home/michael/Desktop/test.txt';
|
|
expect(escapeSpecialCharacters(input)).toBe(expectedOutput);
|
|
});
|
|
});
|
|
|
|
describe('normalizeFileSelector', () => {
|
|
it('should normalize UNIX file selector with parentheses', () => {
|
|
const input = '/home/michael/Desktop/test(1).txt';
|
|
const expectedOutput = '/home/michael/Desktop/test\\(1\\).txt';
|
|
expect(normalizeFileSelector(input)).toBe(expectedOutput);
|
|
});
|
|
|
|
it('should normalize Windows file selector with \\ and parentheses', () => {
|
|
const input = 'C:\\Users\\michael\\Desktop\\test(1).txt';
|
|
const expectedOutput = 'C:/Users/michael/Desktop/test\\(1\\).txt';
|
|
expect(normalizeFileSelector(input)).toBe(expectedOutput);
|
|
});
|
|
|
|
it('should normalize Windows file selector with \\\\', () => {
|
|
const input = 'C:\\\\Users\\\\michael\\\\Desktop\\\\test.txt';
|
|
const expectedOutput = 'C:/Users/michael/Desktop/test.txt';
|
|
expect(normalizeFileSelector(input)).toBe(expectedOutput);
|
|
});
|
|
|
|
it('should normalize Windows file selector with /', () => {
|
|
const input = 'C:/Users/michael/Desktop/test.txt';
|
|
const expectedOutput = 'C:/Users/michael/Desktop/test.txt';
|
|
expect(normalizeFileSelector(input)).toBe(expectedOutput);
|
|
});
|
|
});
|
|
});
|