* update fastlane * update dev dependencies * update to eslint 9+ * update testing-library * update react-intl * update bottom-sheet * update expo * update reanimated * upgrade msgpack * upgrade datepicker * upgrade react-navigation * update sentry * update FlasList * update fuse.js moment-timezone node-html-parser and semver * update gesture-handler * update image-picker * update react-native-keychain * update react-native-localize * update react-native-navigation * update watermelonDB * update react-native-permissions * update react-native-safe-area-context and react-native-screens * update react-native-share and react-native-svg * update react-native-video and react-native-webrtc * update @mattermost/rnutils * update @mattermost/rnshare * update @mattermost/hardware-keyboard * fix isMainActivity * update android dependencies * fix upload file progress indicator * fix entry update config & license * revert to stable version of @sentry/react-native * update react-intl again * update moment-timezone * upgrade @react-native-camera-roll/camera-roll * update @react-native-clipboard/clipboard * update @react-navigation again * update @shopify/flash-list * update eslint * update expo again * update html-entities * update mime-db * update react-native-permissions * Revert "update react-intl again" This reverts commit e8e6d5a60dfa56b82b810cbbd7cdffec7697ffc7. * Revert "update react-intl" This reverts commit c77f329bb38910aeeba03869b72d77a8b0e00ba1. * update react-native-keychain * update and patch react-intl * mend * feedback during review 1
91 lines
3.2 KiB
TypeScript
91 lines
3.2 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {renderHook} from '@testing-library/react-hooks';
|
|
import {act} from '@testing-library/react-native';
|
|
|
|
import ViewConstants from '@constants/view';
|
|
|
|
import * as DeviceFunctions from './device';
|
|
import {useCollapsibleHeader} from './header';
|
|
|
|
const LARGE_HEADER_TITLE_HEIGHT = 128;
|
|
const HEADER_OFFSET = LARGE_HEADER_TITLE_HEIGHT - ViewConstants.DEFAULT_HEADER_HEIGHT;
|
|
|
|
describe('useCollapsibleHeader', () => {
|
|
const commonHookResponse = {
|
|
largeHeight: LARGE_HEADER_TITLE_HEIGHT,
|
|
scrollRef: {current: null},
|
|
scrollValue: {value: 0},
|
|
onScroll: expect.any(Function),
|
|
hideHeader: expect.any(Function),
|
|
lockValue: 0,
|
|
unlock: expect.any(Function),
|
|
headerOffset: HEADER_OFFSET,
|
|
scrollEnabled: {value: true},
|
|
setAutoScroll: expect.any(Function),
|
|
};
|
|
|
|
it('should return the correct values with isLargeTitle is true', () => {
|
|
const {result} = renderHook(() => useCollapsibleHeader(true));
|
|
|
|
expect(result.current).toEqual({
|
|
defaultHeight: ViewConstants.DEFAULT_HEADER_HEIGHT,
|
|
scrollPaddingTop: LARGE_HEADER_TITLE_HEIGHT,
|
|
headerHeight: expect.objectContaining({
|
|
value: LARGE_HEADER_TITLE_HEIGHT,
|
|
}),
|
|
...commonHookResponse,
|
|
});
|
|
});
|
|
|
|
it('should return the correct values with isLargeTitle is false', () => {
|
|
const {result} = renderHook(() => useCollapsibleHeader(false));
|
|
|
|
expect(result.current).toEqual({
|
|
defaultHeight: ViewConstants.DEFAULT_HEADER_HEIGHT,
|
|
scrollPaddingTop: ViewConstants.DEFAULT_HEADER_HEIGHT,
|
|
headerHeight: expect.objectContaining({
|
|
value: ViewConstants.DEFAULT_HEADER_HEIGHT,
|
|
}),
|
|
...commonHookResponse,
|
|
});
|
|
});
|
|
|
|
it('should return the correct values with isLargeTitle is true, and on a tablet', () => {
|
|
jest.spyOn(DeviceFunctions, 'useIsTablet').mockReturnValue(true);
|
|
|
|
const {result} = renderHook(() => useCollapsibleHeader(true));
|
|
|
|
expect(result.current).toEqual({
|
|
defaultHeight: ViewConstants.TABLET_HEADER_HEIGHT,
|
|
scrollPaddingTop: LARGE_HEADER_TITLE_HEIGHT,
|
|
headerHeight: expect.objectContaining({
|
|
value: LARGE_HEADER_TITLE_HEIGHT,
|
|
}),
|
|
...commonHookResponse,
|
|
});
|
|
});
|
|
|
|
it('should change the lock value when hideHeader is called', () => {
|
|
const {result} = renderHook(() => useCollapsibleHeader(true));
|
|
|
|
expect(result.current.lockValue).toBe(0);
|
|
|
|
act(() => result.current.hideHeader(true));
|
|
|
|
expect(result.current.lockValue).toBe(ViewConstants.DEFAULT_HEADER_HEIGHT);
|
|
});
|
|
|
|
it('should reset the lockValue when unlock is called', () => {
|
|
const {result} = renderHook(() => useCollapsibleHeader(true));
|
|
|
|
act(() => result.current.hideHeader(true));
|
|
|
|
expect(result.current.lockValue).toBe(ViewConstants.DEFAULT_HEADER_HEIGHT);
|
|
|
|
act(() => result.current.unlock());
|
|
|
|
expect(result.current.lockValue).toBe(0);
|
|
});
|
|
});
|