Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
6.43 kB
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
import { fireEvent, render } from '@solidjs/testing-library'
import { Show, createEffect, createRenderEffect, createSignal } from 'solid-js'
import { queryKey, sleep } from '@tanstack/query-test-utils'
import {
QueryCache,
QueryClient,
QueryClientProvider,
useIsFetching,
useQuery,
} from '..'
import { setActTimeout } from './utils'
describe('useIsFetching', () => {
beforeEach(() => {
vi.useFakeTimers()
})
afterEach(() => {
vi.useRealTimers()
})
// See https://github.com/tannerlinsley/react-query/issues/105
it('should update as queries start and stop fetching', async () => {
const queryCache = new QueryCache()
const queryClient = new QueryClient({ queryCache })
const key = queryKey()
function IsFetching() {
const isFetching = useIsFetching()
return <div>isFetching: {isFetching()}</div>
}
function Query() {
const [ready, setReady] = createSignal(false)
useQuery(() => ({
queryKey: key,
queryFn: () => sleep(50).then(() => 'test'),
enabled: ready(),
}))
return <button onClick={() => setReady(true)}>setReady</button>
}
function Page() {
return (
<div>
<IsFetching />
<Query />
</div>
)
}
const rendered = render(() => (
<QueryClientProvider client={queryClient}>
<Page />
</QueryClientProvider>
))
expect(rendered.getByText('isFetching: 0')).toBeInTheDocument()
fireEvent.click(rendered.getByRole('button', { name: /setReady/i }))
expect(rendered.getByText('isFetching: 1')).toBeInTheDocument()
await vi.advanceTimersByTimeAsync(50)
expect(rendered.getByText('isFetching: 0')).toBeInTheDocument()
})
it('should not update state while rendering', async () => {
const queryCache = new QueryCache()
const queryClient = new QueryClient({ queryCache })
const key1 = queryKey()
const key2 = queryKey()
const isFetchingArray: Array<number> = []
function IsFetching() {
const isFetching = useIsFetching()
createRenderEffect(() => {
isFetchingArray.push(isFetching())
})
return null
}
function FirstQuery() {
useQuery(() => ({
queryKey: key1,
queryFn: () => sleep(150).then(() => 'data'),
}))
return null
}
function SecondQuery() {
useQuery(() => ({
queryKey: key2,
queryFn: () => sleep(200).then(() => 'data'),
}))
return null
}
function Page() {
const [renderSecond, setRenderSecond] = createSignal(false)
createEffect(() => {
setActTimeout(() => {
setRenderSecond(true)
}, 100)
})
return (
<>
<IsFetching />
<FirstQuery />
<Show when={renderSecond()}>
<SecondQuery />
</Show>
</>
)
}
render(() => (
<QueryClientProvider client={queryClient}>
<Page />
</QueryClientProvider>
))
// unlike react, Updating renderSecond wont cause a rerender for FirstQuery
await vi.advanceTimersByTimeAsync(300)
expect(isFetchingArray).toEqual([0, 1, 2, 1, 0])
})
it('should be able to filter', async () => {
const queryClient = new QueryClient()
const key1 = queryKey()
const key2 = queryKey()
const isFetchingArray: Array<number> = []
function One() {
useQuery(() => ({
queryKey: key1,
queryFn: () => sleep(10).then(() => 'test'),
}))
return null
}
function Two() {
useQuery(() => ({
queryKey: key2,
queryFn: () => sleep(20).then(() => 'test'),
}))
return null
}
function Page() {
const [started, setStarted] = createSignal(false)
const isFetching = useIsFetching(() => ({
queryKey: key1,
}))
createRenderEffect(() => {
isFetchingArray.push(isFetching())
})
return (
<div>
<button onClick={() => setStarted(true)}>setStarted</button>
<div>isFetching: {isFetching()}</div>
<Show when={started()}>
<>
<One />
<Two />
</>
</Show>
</div>
)
}
const rendered = render(() => (
<QueryClientProvider client={queryClient}>
<Page />
</QueryClientProvider>
))
expect(rendered.getByText('isFetching: 0')).toBeInTheDocument()
fireEvent.click(rendered.getByRole('button', { name: /setStarted/i }))
expect(rendered.getByText('isFetching: 1')).toBeInTheDocument()
await vi.advanceTimersByTimeAsync(20)
expect(rendered.getByText('isFetching: 0')).toBeInTheDocument()
// at no point should we have isFetching: 2
expect(isFetchingArray).toEqual(expect.not.arrayContaining([2]))
})
it('should show the correct fetching state when mounted after a query', async () => {
const queryClient = new QueryClient()
const key = queryKey()
function Page() {
useQuery(() => ({
queryKey: key,
queryFn: () => sleep(10).then(() => 'test'),
}))
const isFetching = useIsFetching()
return (
<div>
<div>isFetching: {isFetching()}</div>
</div>
)
}
const rendered = render(() => (
<QueryClientProvider client={queryClient}>
<Page />
</QueryClientProvider>
))
expect(rendered.getByText('isFetching: 1')).toBeInTheDocument()
await vi.advanceTimersByTimeAsync(10)
expect(rendered.getByText('isFetching: 0')).toBeInTheDocument()
})
it('should use provided custom queryClient', async () => {
const queryClient = new QueryClient()
const key = queryKey()
function Page() {
useQuery(
() => ({
queryKey: key,
queryFn: () => sleep(10).then(() => 'test'),
}),
() => queryClient,
)
const isFetching = useIsFetching(undefined, () => queryClient)
return (
<div>
<div>isFetching: {isFetching()}</div>
</div>
)
}
const rendered = render(() => <Page></Page>)
expect(rendered.getByText('isFetching: 1')).toBeInTheDocument()
await vi.advanceTimersByTimeAsync(10)
expect(rendered.getByText('isFetching: 0')).toBeInTheDocument()
})
})