mirror of
https://github.com/re-rxjs/react-rxjs.git
synced 2025-12-08 18:01:51 +00:00
94 lines
2.7 KiB
TypeScript
94 lines
2.7 KiB
TypeScript
import { connectObservable } from "../src"
|
|
import { NEVER, from, of, defer } from "rxjs"
|
|
import { renderHook, act } from "@testing-library/react-hooks"
|
|
import { useEffect, useState } from "react"
|
|
|
|
const wait = (ms: number) => new Promise(res => setTimeout(res, ms))
|
|
|
|
describe("connectObservable", () => {
|
|
it("returns the initial value when the stream has not emitted anything", async () => {
|
|
const [useSomething] = connectObservable(NEVER, "initialValue")
|
|
const { result } = renderHook(() => useSomething())
|
|
await act(async () => {
|
|
await wait(0)
|
|
})
|
|
|
|
expect(result.current).toBe("initialValue")
|
|
})
|
|
|
|
it("returns the latest emitted value", async () => {
|
|
const [useNumber] = connectObservable(of(1), 0)
|
|
const { result } = renderHook(() => useNumber())
|
|
await act(async () => {
|
|
await wait(0)
|
|
})
|
|
expect(result.current).toBe(1)
|
|
})
|
|
|
|
it("batches the updates that happen on the same event-loop", async () => {
|
|
const observable$ = from([1, 2, 3, 4, 5])
|
|
const [useLatestNumber] = connectObservable(observable$, 0)
|
|
const useLatestNumberTest = () => {
|
|
const latestNumber = useLatestNumber()
|
|
const [emittedValues, setEmittedValues] = useState<number[]>([])
|
|
useEffect(() => {
|
|
setEmittedValues(prev => [...prev, latestNumber])
|
|
}, [latestNumber])
|
|
return emittedValues
|
|
}
|
|
|
|
const { result } = renderHook(() => useLatestNumberTest())
|
|
await act(async () => {
|
|
await wait(0)
|
|
})
|
|
expect(result.current).toEqual([0, 5])
|
|
})
|
|
|
|
it("shares the source subscription until the refCount has stayed at zero for the grace-period", async () => {
|
|
let nInitCount = 0
|
|
const observable$ = defer(() => {
|
|
nInitCount += 1
|
|
return from([1, 2, 3, 4, 5])
|
|
})
|
|
|
|
const [useLatestNumber] = connectObservable(observable$, 0, {
|
|
unsubscribeGraceTime: 100,
|
|
})
|
|
const { unmount } = renderHook(() => useLatestNumber())
|
|
await act(async () => {
|
|
await wait(0)
|
|
})
|
|
const { unmount: unmount2 } = renderHook(() => useLatestNumber())
|
|
await act(async () => {
|
|
await wait(0)
|
|
})
|
|
const { unmount: unmount3 } = renderHook(() => useLatestNumber())
|
|
await act(async () => {
|
|
await wait(0)
|
|
})
|
|
expect(nInitCount).toBe(1)
|
|
unmount()
|
|
unmount2()
|
|
unmount3()
|
|
|
|
await act(async () => {
|
|
await wait(90)
|
|
})
|
|
const { unmount: unmount4 } = renderHook(() => useLatestNumber())
|
|
await act(async () => {
|
|
await wait(0)
|
|
})
|
|
expect(nInitCount).toBe(1)
|
|
unmount4()
|
|
|
|
await act(async () => {
|
|
await wait(101)
|
|
})
|
|
renderHook(() => useLatestNumber())
|
|
await act(async () => {
|
|
await wait(0)
|
|
})
|
|
expect(nInitCount).toBe(2)
|
|
})
|
|
})
|