dify/web/service/fetch.spec.ts
FFXN 00ac937934
feat: snippet (#37046)
Co-authored-by: JzoNg <jzongcode@gmail.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-06-05 09:38:42 +00:00

99 lines
2.4 KiB
TypeScript

import { beforeEach, describe, expect, it, vi } from 'vitest'
import { base } from './fetch'
vi.mock('@langgenius/dify-ui/toast', () => ({
toast: {
add: vi.fn(),
error: vi.fn(),
},
}))
const { toast } = await import('@langgenius/dify-ui/toast')
describe('base', () => {
beforeEach(() => {
vi.clearAllMocks()
})
describe('Error responses', () => {
it('should keep the response body readable when a 401 response is rejected', async () => {
// Arrange
const unauthorizedResponse = new Response(
JSON.stringify({
code: 'unauthorized',
message: 'Unauthorized',
status: 401,
}),
{
status: 401,
headers: {
'Content-Type': 'application/json',
},
},
)
vi.spyOn(globalThis, 'fetch').mockResolvedValue(unauthorizedResponse)
// Act
let caughtError: unknown
try {
await base('/login')
}
catch (error) {
caughtError = error
}
// Assert
expect(caughtError).toBeInstanceOf(Response)
await expect((caughtError as Response).json()).resolves.toEqual({
code: 'unauthorized',
message: 'Unauthorized',
status: 401,
})
})
it('should display the response error field when message is absent', async () => {
const errorResponse = new Response(
JSON.stringify({
code: 'invalid_param',
error: 'Invalid DSL kind',
status: 400,
}),
{
status: 400,
headers: {
'Content-Type': 'application/json',
},
},
)
vi.spyOn(globalThis, 'fetch').mockResolvedValue(errorResponse)
await expect(base('/imports')).rejects.toBeInstanceOf(Response)
expect(toast.error).toHaveBeenCalledWith('Invalid DSL kind')
})
it('should not display an empty error toast when message and error are absent', async () => {
const errorResponse = new Response(
JSON.stringify({
code: 'invalid_param',
status: 400,
}),
{
status: 400,
headers: {
'Content-Type': 'application/json',
},
},
)
vi.spyOn(globalThis, 'fetch').mockResolvedValue(errorResponse)
await expect(base('/imports')).rejects.toBeInstanceOf(Response)
expect(toast.error).not.toHaveBeenCalled()
})
})
})