import * as React from 'react'; import * as ReactTestRenderer from 'react-test-renderer'; import { View } from 'react-native'; import { SafeAreaProvider, SafeAreaView, useSafeArea } from '../index'; import NativeSafeAreaView from '../NativeSafeAreaView'; const PrintInsetsTestView = () => { const insets = useSafeArea(); return ( ); }; describe('SafeAreaProvider', () => { it('renders', () => { const component = ReactTestRenderer.create(); expect(component).toMatchSnapshot(); }); it('does not render child until inset values are received', () => { const component = ReactTestRenderer.create( , ); expect(component).toMatchSnapshot(); }); it('renders child when inset values are received', () => { const component = ReactTestRenderer.create( , ); expect(component).toMatchSnapshot(); const { onInsetsChange } = component.root.findByType( NativeSafeAreaView, ).props; ReactTestRenderer.act(() => { onInsetsChange({ nativeEvent: { insets: { top: 1, left: 2, right: 3, bottom: 4 } }, }); }); expect(component).toMatchSnapshot(); }); it('supports setting initial insets', () => { const component = ReactTestRenderer.create( , ); expect(component).toMatchSnapshot(); }); it('uses parent insets when available', () => { const component = ReactTestRenderer.create( , ); expect(component).toMatchSnapshot(); }); it('uses inner insets', () => { const component = ReactTestRenderer.create( , ); expect(component).toMatchSnapshot(); }); it('throws when no provider is rendered', () => { // Silence the React error boundary warning; we expect an uncaught error. const consoleErrorMock = jest .spyOn(console, 'error') .mockImplementation(message => { if (message.startsWith('The above error occured in the ')) { return; } }); expect(() => { ReactTestRenderer.create(); }).toThrow( 'No safe area value available. Make sure you are rendering `` at the top of your app.', ); consoleErrorMock.mockRestore(); }); }); describe('SafeAreaView', () => { it('renders', () => { const component = ReactTestRenderer.create( , ); expect(component).toMatchSnapshot(); }); it('can override padding styles', () => { const component = ReactTestRenderer.create( , ); expect(component).toMatchSnapshot(); }); });