mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
77 lines
2.4 KiB
TypeScript
77 lines
2.4 KiB
TypeScript
import { extractExecutablePath, isUncPath, quotePath, toFileProtocolPath, unquotePath } from './path';
|
|
|
|
describe('path', () => {
|
|
it('should quote and unquote paths', (async () => {
|
|
const testCases = [
|
|
['', ''],
|
|
['/my/path', '/my/path'],
|
|
['/my/path with spaces', '"/my/path with spaces"'],
|
|
['/my/weird"path', '"/my/weird\\"path"'],
|
|
['c:\\Windows\\test.dll', 'c:\\Windows\\test.dll'],
|
|
['c:\\Windows\\test test.dll', '"c:\\Windows\\test test.dll"'],
|
|
];
|
|
|
|
for (let i = 0; i < testCases.length; i++) {
|
|
const t = testCases[i];
|
|
expect(quotePath(t[0])).toBe(t[1]);
|
|
expect(unquotePath(quotePath(t[0]))).toBe(t[0]);
|
|
}
|
|
}));
|
|
|
|
it('should extract executable path from command', (async () => {
|
|
const testCases = [
|
|
['', ''],
|
|
['/my/cmd -some -args', '/my/cmd'],
|
|
['"/my/cmd" -some -args', '"/my/cmd"'],
|
|
['"/my/cmd"', '"/my/cmd"'],
|
|
['"/my/cmd and space" -some -flags', '"/my/cmd and space"'],
|
|
['"" -some -flags', '""'],
|
|
];
|
|
|
|
for (let i = 0; i < testCases.length; i++) {
|
|
const t = testCases[i];
|
|
expect(extractExecutablePath(t[0])).toBe(t[1]);
|
|
}
|
|
}));
|
|
|
|
it('should create correct fileURL syntax', (async () => {
|
|
const testCases_win32 = [
|
|
['C:\\handle\\space test', 'file:///C:/handle/space%20test'],
|
|
['C:\\escapeplus\\+', 'file:///C:/escapeplus/%2B'],
|
|
['C:\\handle\\single quote\'', 'file:///C:/handle/single%20quote%27'],
|
|
];
|
|
const testCases_unixlike = [
|
|
['/handle/space test', 'file:///handle/space%20test'],
|
|
['/escapeplus/+', 'file:///escapeplus/%2B'],
|
|
['/handle/single quote\'', 'file:///handle/single%20quote%27'],
|
|
];
|
|
|
|
for (let i = 0; i < testCases_win32.length; i++) {
|
|
const t = testCases_win32[i];
|
|
expect(toFileProtocolPath(t[0], 'win32')).toBe(t[1]);
|
|
}
|
|
for (let i = 0; i < testCases_unixlike.length; i++) {
|
|
const t = testCases_unixlike[i];
|
|
expect(toFileProtocolPath(t[0], 'linux')).toBe(t[1]);
|
|
}
|
|
}));
|
|
|
|
test.each([
|
|
['./a.txt', 'win32', false],
|
|
['./b.txt', 'win32', false],
|
|
['/home/foo/bar/baz', 'win32', false],
|
|
['./a.txt', 'posix', false],
|
|
['./b.txt', 'posix', false],
|
|
['/home/foo/bar/baz', 'posix', false],
|
|
|
|
['//LOCALHOST/', 'win32', true],
|
|
[' //LOCALHOST/', 'win32', true],
|
|
[' //example.com/a/b/c', 'win32', true],
|
|
['//LOCALHOST/', 'posix', false],
|
|
[' //example.com/a/b/c', 'posix', false],
|
|
['\\\\LOCALHOST/', 'win32', true],
|
|
])('should correctly detect UNC paths', (path, os, expected) => {
|
|
expect(isUncPath(path, os)).toBe(expected);
|
|
});
|
|
});
|