mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-08 02:16:51 +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')
|
|
})
|
|
})
|