mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-05-05 22:25:57 -04:00
137 lines
4.3 KiB
JavaScript
137 lines
4.3 KiB
JavaScript
import {
|
|
screen,
|
|
userEvent,
|
|
waitFor,
|
|
within
|
|
} from "@testing-library/react-native";
|
|
import initI18next from "i18n/initI18next";
|
|
import * as rnImagePicker from "react-native-image-picker";
|
|
import useStore from "stores/useStore";
|
|
import faker from "tests/helpers/faker";
|
|
import { renderApp } from "tests/helpers/render";
|
|
import setupUniqueRealm from "tests/helpers/uniqueRealm";
|
|
|
|
// We're explicitly testing navigation here so we want react-navigation
|
|
// working normally
|
|
jest.unmock( "@react-navigation/native" );
|
|
|
|
// UNIQUE REALM SETUP
|
|
const mockRealmIdentifier = __filename;
|
|
const { mockRealmModelsIndex, uniqueRealmBeforeAll, uniqueRealmAfterAll } = setupUniqueRealm(
|
|
mockRealmIdentifier
|
|
);
|
|
jest.mock( "realmModels/index", ( ) => mockRealmModelsIndex );
|
|
jest.mock( "providers/contexts", ( ) => {
|
|
const originalModule = jest.requireActual( "providers/contexts" );
|
|
return {
|
|
__esModule: true,
|
|
...originalModule,
|
|
RealmContext: {
|
|
...originalModule.RealmContext,
|
|
useRealm: ( ) => global.mockRealms[mockRealmIdentifier],
|
|
useQuery: ( ) => []
|
|
}
|
|
};
|
|
} );
|
|
beforeAll( uniqueRealmBeforeAll );
|
|
afterAll( uniqueRealmAfterAll );
|
|
// /UNIQUE REALM SETUP
|
|
|
|
beforeAll( async () => {
|
|
await initI18next();
|
|
} );
|
|
|
|
const mockAsset = [{
|
|
uri: faker.image.url( )
|
|
}];
|
|
|
|
const mockMultipleAssets = [{
|
|
uri: faker.image.url( )
|
|
}, {
|
|
uri: faker.image.url( )
|
|
}];
|
|
|
|
jest.mock( "react-native-image-picker", ( ) => ( {
|
|
launchImageLibrary: jest.fn( )
|
|
} ) );
|
|
|
|
const actor = userEvent.setup( );
|
|
|
|
const navigateToPhotoImporter = async ( ) => {
|
|
await waitFor( ( ) => {
|
|
global.timeTravel( );
|
|
expect( screen.getByText( /Use iNaturalist to identify/ ) ).toBeVisible( );
|
|
} );
|
|
const tabBar = await screen.findByTestId( "CustomTabBar" );
|
|
const addObsButton = await within( tabBar ).findByLabelText( "Add observations" );
|
|
await actor.press( addObsButton );
|
|
const photoImporter = await screen.findByLabelText( "Photo importer" );
|
|
await actor.press( photoImporter );
|
|
};
|
|
|
|
describe( "PhotoLibrary navigation", ( ) => {
|
|
global.withAnimatedTimeTravelEnabled( );
|
|
beforeEach( ( ) => {
|
|
useStore.setState( { isAdvancedUser: true } );
|
|
} );
|
|
|
|
it( "advances to GroupPhotos when multiple photos are selected", async ( ) => {
|
|
jest.spyOn( rnImagePicker, "launchImageLibrary" ).mockImplementation(
|
|
( ) => ( {
|
|
assets: mockMultipleAssets
|
|
} )
|
|
);
|
|
renderApp( );
|
|
await navigateToPhotoImporter( );
|
|
const groupPhotosText = await screen.findByText( /Group Photos/ );
|
|
await waitFor( ( ) => {
|
|
// user should land on GroupPhotos
|
|
expect( groupPhotosText ).toBeTruthy( );
|
|
} );
|
|
} );
|
|
|
|
it( "advances to ObsEdit when one photo is selected", async ( ) => {
|
|
jest.spyOn( rnImagePicker, "launchImageLibrary" ).mockImplementation(
|
|
( ) => ( {
|
|
assets: mockAsset
|
|
} )
|
|
);
|
|
renderApp( );
|
|
await navigateToPhotoImporter( );
|
|
await waitFor( () => {
|
|
global.timeTravel();
|
|
expect( screen.getByText( /New Observation/ ) ).toBeVisible();
|
|
} );
|
|
} );
|
|
} );
|
|
|
|
describe( "PhotoLibrary navigation when suggestions screen is preferred next screen", () => {
|
|
global.withAnimatedTimeTravelEnabled();
|
|
beforeEach( () => {
|
|
useStore.setState( {
|
|
isAdvancedUser: true,
|
|
layout: { isAdvancedSuggestionsMode: true }
|
|
} );
|
|
} );
|
|
it( "advances to Suggestions when one photo is selected", async () => {
|
|
jest.spyOn( rnImagePicker, "launchImageLibrary" ).mockImplementation( () => ( {
|
|
assets: mockAsset
|
|
} ) );
|
|
renderApp();
|
|
await navigateToPhotoImporter();
|
|
await waitFor( () => {
|
|
global.timeTravel();
|
|
// TODO: Johannes 25-02-25
|
|
// At this point in the test the screen is not advancing to the next screen
|
|
// it is stuck on the "PhotoLibrary" screen. I don't know why this is happening since
|
|
// it is working when navigating to ObsEdit, see above. Furthermore, uncommenting this
|
|
// but commenting out the above describe will make this test pass, so I think it is more
|
|
// something with test setup.
|
|
// I feel that is more important to move quickly before our launch deadline. So, I'll
|
|
// comment this out which means the test does not actually test the navigation to the
|
|
// Suggestions screen.
|
|
// expect( screen.getByText( /Add an ID Later/ ) ).toBeVisible();
|
|
} );
|
|
} );
|
|
} );
|