fix: properly escape collectionName in query string parameters (#14476)

This commit is contained in:
QuantumGhost
2025-02-27 18:59:07 +08:00
committed by GitHub
parent ddf9eb1f9a
commit 002b16e1c6
3 changed files with 28 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
import { buildProviderQuery } from './_tools_util'
describe('makeProviderQuery', () => {
test('collectionName without special chars', () => {
expect(buildProviderQuery('ABC')).toBe('provider=ABC')
})
test('should escape &', () => {
expect(buildProviderQuery('ABC&DEF')).toBe('provider=ABC%26DEF')
})
test('should escape /', () => {
expect(buildProviderQuery('ABC/DEF')).toBe('provider=ABC%2FDEF')
})
test('should escape ?', () => {
expect(buildProviderQuery('ABC?DEF')).toBe('provider=ABC%3FDEF')
})
})