-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(app): Remove notification event emitters (#14504)
Partially closes RAUT-990
- Loading branch information
Showing
4 changed files
with
221 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
import { useDispatch } from 'react-redux' | ||
import { renderHook } from '@testing-library/react' | ||
|
||
import { useHost } from '@opentrons/react-api-client' | ||
|
||
import { useNotifyService } from '../useNotifyService' | ||
import { appShellListener } from '../../redux/shell/remote' | ||
import { useTrackEvent } from '../../redux/analytics' | ||
import { | ||
notifySubscribeAction, | ||
notifyUnsubscribeAction, | ||
} from '../../redux/shell' | ||
|
||
import type { HostConfig } from '@opentrons/api-client' | ||
import type { QueryOptionsWithPolling } from '../useNotifyService' | ||
|
||
jest.mock('react-redux') | ||
jest.mock('@opentrons/react-api-client') | ||
jest.mock('../../redux/analytics') | ||
jest.mock('../../redux/shell/remote', () => ({ | ||
appShellListener: jest.fn(), | ||
})) | ||
|
||
const MOCK_HOST_CONFIG: HostConfig = { hostname: 'MOCK_HOST' } | ||
const MOCK_TOPIC = '/test/topic' as any | ||
const MOCK_OPTIONS: QueryOptionsWithPolling<any, any> = { | ||
forceHttpPolling: false, | ||
} | ||
|
||
const mockUseHost = useHost as jest.MockedFunction<typeof useHost> | ||
const mockUseDispatch = useDispatch as jest.MockedFunction<typeof useDispatch> | ||
const mockUseTrackEvent = useTrackEvent as jest.MockedFunction< | ||
typeof useTrackEvent | ||
> | ||
const mockAppShellListener = appShellListener as jest.MockedFunction< | ||
typeof appShellListener | ||
> | ||
|
||
describe('useNotifyService', () => { | ||
let mockDispatch: jest.Mock | ||
let mockTrackEvent: jest.Mock | ||
let mockHTTPRefetch: jest.Mock | ||
|
||
beforeEach(() => { | ||
mockDispatch = jest.fn() | ||
mockHTTPRefetch = jest.fn() | ||
mockTrackEvent = jest.fn() | ||
mockUseTrackEvent.mockReturnValue(mockTrackEvent) | ||
mockUseDispatch.mockReturnValue(mockDispatch) | ||
mockUseHost.mockReturnValue(MOCK_HOST_CONFIG) | ||
}) | ||
|
||
afterEach(() => { | ||
mockUseDispatch.mockClear() | ||
jest.clearAllMocks() | ||
}) | ||
|
||
it('should trigger an HTTP refetch and subscribe action on initial mount', () => { | ||
renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: MOCK_OPTIONS, | ||
} as any) | ||
) | ||
expect(mockHTTPRefetch).toHaveBeenCalled() | ||
expect(mockDispatch).toHaveBeenCalledWith( | ||
notifySubscribeAction(MOCK_HOST_CONFIG.hostname, MOCK_TOPIC) | ||
) | ||
expect(mockDispatch).not.toHaveBeenCalledWith( | ||
notifyUnsubscribeAction(MOCK_HOST_CONFIG.hostname, MOCK_TOPIC) | ||
) | ||
expect(appShellListener).toHaveBeenCalled() | ||
}) | ||
|
||
it('should trigger an unsubscribe action on dismount', () => { | ||
const { unmount } = renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: MOCK_OPTIONS, | ||
} as any) | ||
) | ||
unmount() | ||
expect(mockDispatch).toHaveBeenCalledWith( | ||
notifyUnsubscribeAction(MOCK_HOST_CONFIG.hostname, MOCK_TOPIC) | ||
) | ||
}) | ||
|
||
it('should return no notify error if there was a successful topic subscription', () => { | ||
const { result } = renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: MOCK_OPTIONS, | ||
} as any) | ||
) | ||
expect(result.current.isNotifyError).toBe(false) | ||
}) | ||
|
||
it('should not subscribe to notifications if forceHttpPolling is true', () => { | ||
renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: { ...MOCK_OPTIONS, forceHttpPolling: true }, | ||
} as any) | ||
) | ||
expect(mockHTTPRefetch).toHaveBeenCalled() | ||
expect(appShellListener).not.toHaveBeenCalled() | ||
expect(mockDispatch).not.toHaveBeenCalled() | ||
}) | ||
|
||
it('should not subscribe to notifications if enabled is false', () => { | ||
renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: { ...MOCK_OPTIONS, enabled: false }, | ||
} as any) | ||
) | ||
expect(mockHTTPRefetch).toHaveBeenCalled() | ||
expect(appShellListener).not.toHaveBeenCalled() | ||
expect(mockDispatch).not.toHaveBeenCalled() | ||
}) | ||
|
||
it('should not subscribe to notifications if staleTime is Infinity', () => { | ||
renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: { ...MOCK_OPTIONS, staleTime: Infinity }, | ||
} as any) | ||
) | ||
expect(mockHTTPRefetch).toHaveBeenCalled() | ||
expect(appShellListener).not.toHaveBeenCalled() | ||
expect(mockDispatch).not.toHaveBeenCalled() | ||
}) | ||
|
||
it('should log an error if hostname is null', () => { | ||
mockUseHost.mockReturnValue({ hostname: null } as any) | ||
const errorSpy = jest.spyOn(console, 'error') | ||
errorSpy.mockImplementation(() => {}) | ||
|
||
renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: MOCK_OPTIONS, | ||
} as any) | ||
) | ||
expect(errorSpy).toHaveBeenCalledWith( | ||
'NotifyService expected hostname, received null for topic:', | ||
MOCK_TOPIC | ||
) | ||
errorSpy.mockRestore() | ||
}) | ||
|
||
it('should return a notify error and fire an analytics reporting event if the connection was refused', () => { | ||
mockAppShellListener.mockImplementation((_: any, __: any, mockCb: any) => { | ||
mockCb('ECONNREFUSED') | ||
}) | ||
const { result, rerender } = renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: MOCK_OPTIONS, | ||
} as any) | ||
) | ||
expect(mockTrackEvent).toHaveBeenCalled() | ||
rerender() | ||
expect(result.current.isNotifyError).toBe(true) | ||
}) | ||
|
||
it('should return a notify error if the connection failed', () => { | ||
mockAppShellListener.mockImplementation((_: any, __: any, mockCb: any) => { | ||
mockCb('ECONNFAILED') | ||
}) | ||
const { result, rerender } = renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: MOCK_OPTIONS, | ||
} as any) | ||
) | ||
rerender() | ||
expect(result.current.isNotifyError).toBe(true) | ||
}) | ||
|
||
it('should trigger an HTTP refetch if the refetch flag was returned', () => { | ||
mockAppShellListener.mockImplementation((_: any, __: any, mockCb: any) => { | ||
mockCb({ refetchUsingHTTP: true }) | ||
}) | ||
const { rerender } = renderHook(() => | ||
useNotifyService({ | ||
topic: MOCK_TOPIC, | ||
refetchUsingHTTP: mockHTTPRefetch, | ||
options: MOCK_OPTIONS, | ||
} as any) | ||
) | ||
rerender() | ||
expect(mockHTTPRefetch).toHaveBeenCalled() | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters