mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-20 04:39:44 +08:00
17 lines
536 B
TypeScript
17 lines
536 B
TypeScript
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')
|
|
})
|
|
})
|