Files
Abbey Campbell 92d81d7be8 Mob 1239 obs sheet not dismissing (#3576)
* use bottom sheet api instead of returning null when hidden

* dedupe inside modal dismiss logic

* rename handleSnapPress -> openSheet

* ts fixes and split render into two branches

* fix integration test so we check for BottomSheet behavior rather than child absence

* snapshot updates + comments

* prevent hidden-state BottomSheet dismiss from triggering onPressClose

* port changes from BottomSheet to BottomSheetV2
2026-05-04 20:40:10 +02:00

115 lines
3.6 KiB
JavaScript

import {
useNetInfo,
} from "@react-native-community/netinfo";
import { screen } from "@testing-library/react-native";
import CustomTabBarContainer from "navigation/BottomTabNavigator/CustomTabBarContainer";
import React from "react";
import * as useCurrentUser from "sharedHooks/useCurrentUser";
import useStore from "stores/useStore";
import factory from "tests/factory";
import faker from "tests/helpers/faker";
import { renderComponent } from "tests/helpers/render";
import setStoreStateLayout from "tests/helpers/setStoreStateLayout";
const initialPersistedStoreState = useStore.getState( );
const mockUser = factory( "LocalUser", {
login: faker.internet.userName( ),
icon_url: faker.image.url( ),
} );
jest.mock( "sharedHooks/useCurrentUser", ( ) => ( {
__esModule: true,
default: () => undefined,
} ) );
jest.mock( "sharedHooks/useAuthenticatedQuery", () => ( {
__esModule: true,
default: () => ( {
data: 0,
refetch: () => undefined,
} ),
} ) );
describe( "CustomTabBar", () => {
beforeEach( ( ) => {
jest.useFakeTimers();
} );
// it( "should render correctly", async () => {
// renderComponent( <CustomTabBarContainer navigation={jest.fn( )} /> );
// await expect( screen ).toMatchSnapshot();
// } );
it( "should not have accessibility errors", async () => {
// const tabBar = <CustomTabBarContainer navigation={jest.fn( )} />;
// Disabled during the update to RN 0.78
// await expect( tabBar ).toBeAccessible();
} );
it( "should display person icon while user is logged out", async () => {
renderComponent( <CustomTabBarContainer navigation={jest.fn( )} /> );
const personIcon = screen.getByTestId( "NavButton.personIcon" );
await expect( personIcon ).toBeVisible( );
} );
it( "should display avatar while user is logged in", async () => {
jest.spyOn( useCurrentUser, "default" ).mockImplementation( () => mockUser );
renderComponent( <CustomTabBarContainer navigation={jest.fn( )} /> );
const avatar = screen.getByTestId( "UserIcon.photo" );
await expect( avatar ).toBeVisible( );
} );
it( "should display person icon when connectivity is low", async ( ) => {
useNetInfo.mockImplementation( ( ) => ( { isConnected: false } ) );
renderComponent( <CustomTabBarContainer navigation={jest.fn( )} /> );
const personIcon = screen.getByTestId( "NavButton.personIcon" );
await expect( personIcon ).toBeVisible( );
} );
} );
describe( "CustomTabBar with advanced user layout", () => {
beforeAll( ( ) => {
setStoreStateLayout( {
isAllAddObsOptionsMode: true,
} );
} );
afterAll( ( ) => {
useStore.setState( initialPersistedStoreState );
} );
beforeEach( ( ) => {
jest.resetAllMocks();
useNetInfo.mockImplementation( ( ) => ( { isConnected: true } ) );
// Re-establish the safe area context mock after resetAllMocks
const safeAreaContext = require( "react-native-safe-area-context" );
safeAreaContext.useSafeAreaInsets.mockImplementation( () => ( {
top: 0,
right: 0,
bottom: 0,
left: 0,
} ) );
} );
it( "should render correctly", async () => {
renderComponent( <CustomTabBarContainer navigation={jest.fn( )} /> );
// Snapshot includes AddObs BottomSheet subtree due @gorhom/bottom-sheet test mock
// rendering children unconditionally. Hidden/open behavior is asserted in
// integration tests.
await expect( screen ).toMatchSnapshot();
} );
it( "should not have accessibility errors", async () => {
// const tabBar = <CustomTabBarContainer navigation={jest.fn( )} />;
// Disabled during the update to RN 0.78
// await expect( tabBar ).toBeAccessible();
} );
} );