* chore: managing and maintaining models and threads in the cache * test: add tests for hooks
104 lines
2.6 KiB
TypeScript
104 lines
2.6 KiB
TypeScript
// useGetSystemResources.test.ts
|
|
|
|
import { renderHook, act } from '@testing-library/react'
|
|
import useGetSystemResources from './useGetSystemResources'
|
|
import { extensionManager } from '@/extension/ExtensionManager'
|
|
|
|
// Mock the extensionManager
|
|
jest.mock('@/extension/ExtensionManager', () => ({
|
|
extensionManager: {
|
|
get: jest.fn(),
|
|
},
|
|
}))
|
|
|
|
// Mock the necessary dependencies
|
|
jest.mock('jotai', () => ({
|
|
useAtomValue: jest.fn(),
|
|
useSetAtom: () => jest.fn(),
|
|
useAtom: jest.fn(),
|
|
atom: jest.fn(),
|
|
}))
|
|
|
|
describe('useGetSystemResources', () => {
|
|
const mockMonitoringExtension = {
|
|
getResourcesInfo: jest.fn(),
|
|
getCurrentLoad: jest.fn(),
|
|
}
|
|
|
|
beforeEach(() => {
|
|
jest.useFakeTimers()
|
|
;(extensionManager.get as jest.Mock).mockReturnValue(
|
|
mockMonitoringExtension
|
|
)
|
|
})
|
|
|
|
afterEach(() => {
|
|
jest.clearAllMocks()
|
|
jest.useRealTimers()
|
|
})
|
|
|
|
it('should fetch system resources on initial render', async () => {
|
|
mockMonitoringExtension.getResourcesInfo.mockResolvedValue({
|
|
mem: { usedMemory: 4000, totalMemory: 8000 },
|
|
})
|
|
mockMonitoringExtension.getCurrentLoad.mockResolvedValue({
|
|
cpu: { usage: 50 },
|
|
gpu: [],
|
|
})
|
|
|
|
const { result } = renderHook(() => useGetSystemResources())
|
|
|
|
expect(mockMonitoringExtension.getResourcesInfo).toHaveBeenCalledTimes(1)
|
|
})
|
|
|
|
it('should start watching system resources when watch is called', () => {
|
|
const { result } = renderHook(() => useGetSystemResources())
|
|
|
|
act(() => {
|
|
result.current.watch()
|
|
})
|
|
|
|
expect(mockMonitoringExtension.getResourcesInfo).toHaveBeenCalled()
|
|
|
|
// Fast-forward time by 2 seconds
|
|
act(() => {
|
|
jest.advanceTimersByTime(2000)
|
|
})
|
|
|
|
expect(mockMonitoringExtension.getResourcesInfo).toHaveBeenCalled()
|
|
})
|
|
|
|
it('should stop watching when stopWatching is called', () => {
|
|
const { result } = renderHook(() => useGetSystemResources())
|
|
|
|
act(() => {
|
|
result.current.watch()
|
|
})
|
|
|
|
act(() => {
|
|
result.current.stopWatching()
|
|
})
|
|
|
|
// Fast-forward time by 2 seconds
|
|
act(() => {
|
|
jest.advanceTimersByTime(2000)
|
|
})
|
|
|
|
// Expect no additional calls after stopping
|
|
expect(mockMonitoringExtension.getResourcesInfo).toHaveBeenCalled()
|
|
})
|
|
|
|
it('should not fetch resources if monitoring extension is not available', async () => {
|
|
;(extensionManager.get as jest.Mock).mockReturnValue(null)
|
|
|
|
const { result } = renderHook(() => useGetSystemResources())
|
|
|
|
await act(async () => {
|
|
result.current.getSystemResources()
|
|
})
|
|
|
|
expect(mockMonitoringExtension.getResourcesInfo).not.toHaveBeenCalled()
|
|
expect(mockMonitoringExtension.getCurrentLoad).not.toHaveBeenCalled()
|
|
})
|
|
})
|