Files
iNaturalistReactNative/tests/integration/navigation/broken/AICamera.test.js
Ryan Stelly b78be9243d lint rule & autofix for "trailing comma" (#3299)
* (lint) MOB-1063 enforce trailing commas

* autofix trailing commas

* manually fix newly introduced maxlen violations

* add trailing comma convention to i18n build
2025-12-22 20:17:13 -06:00

225 lines
7.6 KiB
JavaScript

import {
screen,
userEvent,
within,
} from "@testing-library/react-native";
import * as usePredictions from "components/Camera/AICamera/hooks/usePredictions";
import initI18next from "i18n/initI18next";
import inatjs from "inaturalistjs";
import { Animated } from "react-native";
import { SCREEN_AFTER_PHOTO_EVIDENCE } from "stores/createLayoutSlice";
import factory, { makeResponse } from "tests/factory";
import { renderApp } from "tests/helpers/render";
import setStoreStateLayout from "tests/helpers/setStoreStateLayout";
import setupUniqueRealm from "tests/helpers/uniqueRealm";
import { signIn, signOut } from "tests/helpers/user";
import { getPredictionsForImage } from "vision-camera-plugin-inatvision";
// We're explicitly testing navigation here so we want react-navigation
// working normally
jest.unmock( "@react-navigation/native" );
// Not my favorite code, but this patch is necessary to get tests passing right
// now unless we can figure out why Animated.Value is being passed undefined,
// which seems specifically related to the AICamera (this is also happening in the
// Suggestions and SuggestionsWithUnsyncedObs tests which use the AICamera)
const OriginalValue = Animated.Value;
beforeEach( () => {
// Patch the Value constructor to be safer with undefined values
Animated.Value = function ( val ) {
return new OriginalValue( val === undefined
? 0
: val );
};
} );
afterEach( () => {
// Restore original implementation
Animated.Value = OriginalValue;
} );
jest.mock( "react-native/Libraries/Utilities/Platform", () => ( {
__esModule: true,
default: {
OS: "ios",
select: jest.fn(),
Version: 11,
},
} ) );
const mockLocalTaxon = {
id: 144351,
name: "Poecile",
rank_level: 20,
default_photo: {
url: "fake_image_url",
},
};
const mockModelResult = {
predictions: [factory( "ModelPrediction", {
// useOfflineSuggestions will filter out taxa w/ rank_level > 40
rank_level: 20,
} )],
};
inatjs.computervision.score_image.mockResolvedValue( makeResponse( [] ) );
getPredictionsForImage.mockImplementation(
async ( ) => ( mockModelResult ),
);
// 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();
jest.useFakeTimers( );
} );
// Mock the response from inatjs.computervision.score_image
const topSuggestion = {
taxon: factory.states( "genus" )( "RemoteTaxon", { name: "Primum" } ),
combined_score: 90,
};
const mockUser = factory( "LocalUser" );
beforeEach( async ( ) => {
await signIn( mockUser, { realm: global.mockRealms[__filename] } );
setStoreStateLayout( {
isDefaultMode: false,
screenAfterPhotoEvidence: SCREEN_AFTER_PHOTO_EVIDENCE.SUGGESTIONS,
isAllAddObsOptionsMode: true,
} );
inatjs.computervision.score_image.mockResolvedValue( makeResponse( [topSuggestion] ) );
} );
afterEach( ( ) => {
signOut( { realm: global.mockRealms[__filename] } );
} );
const mockFetchUserLocation = jest.fn( () => ( { latitude: 56, longitude: 9, accuracy: 8 } ) );
jest.mock( "sharedHelpers/fetchAccurateUserLocation", () => ( {
__esModule: true,
default: () => mockFetchUserLocation(),
} ) );
const actor = userEvent.setup( );
const navToAICamera = async ( ) => {
const tabBar = await screen.findByTestId( "CustomTabBar" );
const addObsButton = await within( tabBar ).findByLabelText( "Add observations" );
await actor.press( addObsButton );
const cameraButton = await screen.findByLabelText( /AI Camera/ );
await actor.press( cameraButton );
};
const takePhotoAndNavToSuggestions = async ( ) => {
const takePhotoButton = await screen.findByLabelText( /Take photo/ );
await actor.press( takePhotoButton );
const addIDButton = await screen.findByText( /ADD AN ID/ );
// We used toBeVisible here but the update to RN0.77 broke this expectation
expect( addIDButton ).toBeOnTheScreen( );
};
const navToObsEditWithTopSuggestion = async ( ) => {
const topTaxonResultButton = await screen.findByTestId(
`SuggestionsList.taxa.${topSuggestion.taxon.id}.checkmark`,
);
await actor.press( topTaxonResultButton );
const evidenceList = await screen.findByTestId( "EvidenceList.DraggableFlatList" );
// We used toBeVisible here but the update to RN0.77 broke this expectation
expect( evidenceList ).toBeOnTheScreen( );
// one photo from AICamera
expect( evidenceList.props.data.length ).toEqual( 1 );
};
describe( "AICamera navigation with advanced user layout", ( ) => {
describe( "to Suggestions", ( ) => {
beforeEach( ( ) => {
jest.spyOn( usePredictions, "default" ).mockImplementation( () => ( {
handleTaxaDetected: jest.fn( ),
modelLoaded: true,
result: {
taxon: mockLocalTaxon,
},
setResult: jest.fn( ),
} ) );
} );
it( "should advance to suggestions screen", async ( ) => {
renderApp( );
await navToAICamera( );
expect( await screen.findByText( mockLocalTaxon.name ) ).toBeTruthy( );
await takePhotoAndNavToSuggestions( );
} );
it( "should advance to suggestions then obs edit", async ( ) => {
renderApp( );
await navToAICamera( );
expect( await screen.findByText( mockLocalTaxon.name ) ).toBeTruthy( );
await takePhotoAndNavToSuggestions( );
await navToObsEditWithTopSuggestion( );
const obsEditBackButton = screen.getByTestId( "ObsEdit.BackButton" );
// We used toBeVisible here but the update to RN0.77 broke this expectation
expect( obsEditBackButton ).toBeOnTheScreen( );
} );
// TODO: we can't test back behavior as reliably in React Navigation 7;
// recommend moving this to an e2e test rather than an integation test
it.todo( "should advance from suggestions to obs edit, back out to AI camera, and"
+ " advance to obs edit with a single observation photo" );
// it( "should advance from suggestions to obs edit, back out to AI camera, and"
// + " advance to obs edit with a single observation photo", async ( ) => {
// renderApp( );
// await navToAICamera( );
// expect( await screen.findByText( mockLocalTaxon.name ) ).toBeTruthy( );
// await takePhotoAndNavToSuggestions( );
// await navToObsEditWithTopSuggestion( );
// const obsEditBackButton = screen.getByTestId( "ObsEdit.BackButton" );
// await actor.press( obsEditBackButton );
// BackHandler.mockPressBack( );
// await takePhotoAndNavToSuggestions( );
// await navToObsEditWithTopSuggestion( );
// } );
} );
} );
describe( "AICamera navigation with advanced user layout", () => {
describe( "from MyObs", () => {
it( "should return to MyObs when close button tapped", async () => {
renderApp();
await navToAICamera();
// We used toBeVisible here but the update to RN0.77 broke this expectation
expect(
await screen.findByText( /Loading iNaturalist's AI Camera/ ),
).toBeOnTheScreen();
const closeButton = await screen.findByLabelText( /Close/ );
await actor.press( closeButton );
expect(
await screen.findByText( /Use iNaturalist to identify any living thing/ ),
).toBeTruthy();
} );
} );
} );