mirror of
https://github.com/langgenius/dify.git
synced 2026-03-28 01:29:55 +08:00
134 lines
3.6 KiB
TypeScript
134 lines
3.6 KiB
TypeScript
import type { SandboxFileNode } from '@/types/sandbox-file'
|
|
import { fireEvent, render, screen, waitFor } from '@testing-library/react'
|
|
import ArtifactsTab from './artifacts-tab'
|
|
import { InspectTab } from './types'
|
|
|
|
type MockStoreState = {
|
|
appId: string | undefined
|
|
workflowRunningData?: {
|
|
result?: {
|
|
status?: string
|
|
}
|
|
}
|
|
isResponding: boolean
|
|
bottomPanelWidth: number
|
|
}
|
|
|
|
const mocks = vi.hoisted(() => ({
|
|
storeState: {
|
|
appId: 'app-1',
|
|
workflowRunningData: undefined,
|
|
isResponding: false,
|
|
bottomPanelWidth: 640,
|
|
} as MockStoreState,
|
|
flatData: [] as SandboxFileNode[],
|
|
isLoading: false,
|
|
fetchDownloadUrl: vi.fn(),
|
|
mockUseQuery: vi.fn(),
|
|
mockDownloadUrlOptions: vi.fn().mockReturnValue({
|
|
queryKey: ['sandboxFile', 'downloadFile'],
|
|
queryFn: vi.fn(),
|
|
}),
|
|
mockTreeOptions: vi.fn().mockReturnValue({
|
|
queryKey: ['sandboxFile', 'listFiles'],
|
|
queryFn: vi.fn(),
|
|
}),
|
|
}))
|
|
|
|
vi.mock('../store', () => ({
|
|
useStore: (selector: (state: MockStoreState) => unknown) => selector(mocks.storeState),
|
|
}))
|
|
|
|
vi.mock('@tanstack/react-query', async importOriginal => ({
|
|
...await importOriginal<typeof import('@tanstack/react-query')>(),
|
|
useQuery: (options: unknown) => mocks.mockUseQuery(options),
|
|
}))
|
|
|
|
vi.mock('@/service/use-sandbox-file', async importOriginal => ({
|
|
...(await importOriginal<typeof import('@/service/use-sandbox-file')>()),
|
|
sandboxFileDownloadUrlOptions: (...args: unknown[]) => mocks.mockDownloadUrlOptions(...args),
|
|
sandboxFilesTreeOptions: (...args: unknown[]) => mocks.mockTreeOptions(...args),
|
|
useDownloadSandboxFile: () => ({
|
|
mutateAsync: mocks.fetchDownloadUrl,
|
|
isPending: false,
|
|
}),
|
|
}))
|
|
|
|
vi.mock('@/context/i18n', () => ({
|
|
useDocLink: () => (path: string) => path,
|
|
}))
|
|
|
|
vi.mock('@/app/components/base/features/hooks', () => ({
|
|
useFeatures: (selector: (state: { features: { sandbox: { enabled: boolean } } }) => unknown) => selector({
|
|
features: {
|
|
sandbox: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
}),
|
|
}))
|
|
|
|
vi.mock('@/utils/download', () => ({
|
|
downloadUrl: vi.fn(),
|
|
}))
|
|
|
|
const createFlatFileNode = (overrides: Partial<SandboxFileNode> = {}): SandboxFileNode => ({
|
|
path: 'a.txt',
|
|
is_dir: false,
|
|
size: 128,
|
|
mtime: 1700000000,
|
|
extension: 'txt',
|
|
...overrides,
|
|
})
|
|
|
|
describe('ArtifactsTab', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
mocks.storeState.appId = 'app-1'
|
|
mocks.storeState.workflowRunningData = undefined
|
|
mocks.storeState.isResponding = false
|
|
mocks.storeState.bottomPanelWidth = 640
|
|
|
|
mocks.flatData = [createFlatFileNode()]
|
|
mocks.isLoading = false
|
|
mocks.mockUseQuery.mockImplementation((options: { queryKey?: unknown }) => {
|
|
const treeKey = mocks.mockTreeOptions.mock.results.at(-1)?.value?.queryKey
|
|
if (treeKey && options.queryKey === treeKey) {
|
|
return {
|
|
data: mocks.flatData,
|
|
isLoading: mocks.isLoading,
|
|
}
|
|
}
|
|
return {
|
|
data: undefined,
|
|
isLoading: false,
|
|
}
|
|
})
|
|
})
|
|
|
|
it('should stop using stale file path for download url query after files are cleared', async () => {
|
|
const headerProps = {
|
|
activeTab: InspectTab.Artifacts,
|
|
onTabChange: vi.fn(),
|
|
onClose: vi.fn(),
|
|
}
|
|
|
|
const { rerender } = render(<ArtifactsTab {...headerProps} />)
|
|
|
|
fireEvent.click(screen.getByRole('button', { name: 'a.txt' }))
|
|
|
|
await waitFor(() => {
|
|
expect(mocks.mockDownloadUrlOptions).toHaveBeenCalledWith('app-1', 'a.txt')
|
|
})
|
|
|
|
mocks.flatData = []
|
|
|
|
rerender(<ArtifactsTab {...headerProps} />)
|
|
|
|
await waitFor(() => {
|
|
const lastCall = mocks.mockDownloadUrlOptions.mock.calls.at(-1)
|
|
expect(lastCall).toEqual(['app-1', undefined])
|
|
})
|
|
})
|
|
})
|