Files
pnpm/resolving/git-resolver/test/parsePref.test.ts
Rex Zeng b13d2dc1ae feat: add sub folder support for git url (#7487)
close #4765

---------

Co-authored-by: Zoltan Kochan <z@kochan.io>
2024-01-24 02:15:02 +01:00

47 lines
3.3 KiB
TypeScript

import { parsePref } from '../lib/parsePref'
test.each([
['ssh://username:password@example.com:repo.git', 'ssh://username:password@example.com/repo.git'],
['ssh://username:password@example.com:repo/@foo.git', 'ssh://username:password@example.com/repo/@foo.git'],
['ssh://username:password@example.com:22/repo/@foo.git', 'ssh://username:password@example.com:22/repo/@foo.git'],
['ssh://username:password@example.com:22repo/@foo.git', 'ssh://username:password@example.com/22repo/@foo.git'],
['ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b', 'ssh://username:password@example.com:22/repo/@foo.git'],
['ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b&dev', 'ssh://username:password@example.com:22/repo/@foo.git'],
['git+ssh://username:password@example.com:repo.git', 'ssh://username:password@example.com/repo.git'],
['git+ssh://username:password@example.com:repo/@foo.git', 'ssh://username:password@example.com/repo/@foo.git'],
['git+ssh://username:password@example.com:22/repo/@foo.git', 'ssh://username:password@example.com:22/repo/@foo.git'],
['git+ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b', 'ssh://username:password@example.com:22/repo/@foo.git'],
['git+ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b&dev', 'ssh://username:password@example.com:22/repo/@foo.git'],
])('the right colon is escaped in %s', async (input, output) => {
const parsed = await parsePref(input)
expect(parsed?.fetchSpec).toBe(output)
})
test.each([
['ssh://username:password@example.com:repo.git#path:/a/@b', '/a/@b'],
['ssh://username:password@example.com:repo/@foo.git#path:/a/@b', '/a/@b'],
['ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b', '/a/@b'],
['ssh://username:password@example.com:22repo/@foo.git#path:/a/@b', '/a/@b'],
['ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b', '/a/@b'],
['ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b&dev', '/a/@b'],
['git+ssh://username:password@example.com:repo.git#path:/a/@b', '/a/@b'],
['git+ssh://username:password@example.com:repo/@foo.git#path:/a/@b', '/a/@b'],
['git+ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b', '/a/@b'],
['git+ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b', '/a/@b'],
['git+ssh://username:password@example.com:22/repo/@foo.git#path:/a/@b&dev', '/a/@b'],
['ssh://username:password@example.com:repo.git', undefined],
['ssh://username:password@example.com:repo/@foo.git', undefined],
['ssh://username:password@example.com:22/repo/@foo.git', undefined],
['ssh://username:password@example.com:22repo/@foo.git', undefined],
['ssh://username:password@example.com:22/repo/@foo.git', undefined],
['ssh://username:password@example.com:22/repo/@foo.git#dev', undefined],
['git+ssh://username:password@example.com:repo.git', undefined],
['git+ssh://username:password@example.com:repo/@foo.git', undefined],
['git+ssh://username:password@example.com:22/repo/@foo.git', undefined],
['git+ssh://username:password@example.com:22/repo/@foo.git', undefined],
['git+ssh://username:password@example.com:22/repo/@foo.git#dev', undefined],
])('the path of %s should be %s', async (input, output) => {
const parsed = await parsePref(input)
expect(parsed?.path).toBe(output)
})