mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-04-21 15:28:39 -04:00
* (lint) MOB-1063 enforce trailing commas * autofix trailing commas * manually fix newly introduced maxlen violations * add trailing comma convention to i18n build
203 lines
7.2 KiB
JavaScript
203 lines
7.2 KiB
JavaScript
import {
|
|
screen,
|
|
userEvent,
|
|
waitFor,
|
|
within,
|
|
} from "@testing-library/react-native";
|
|
import initI18next from "i18n/initI18next";
|
|
import inatjs from "inaturalistjs";
|
|
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 { getPredictionsForImage } from "vision-camera-plugin-inatvision";
|
|
|
|
// We're explicitly testing navigation here so we want react-navigation
|
|
// working normally
|
|
jest.unmock( "@react-navigation/native" );
|
|
|
|
const mockFetchUserLocation = jest.fn( () => ( { latitude: 1, longitude: 1, accuracy: 9 } ) );
|
|
jest.mock( "sharedHelpers/fetchAccurateUserLocation", () => ( {
|
|
__esModule: true,
|
|
default: () => mockFetchUserLocation(),
|
|
} ) );
|
|
|
|
const mockModelResult = {
|
|
predictions: [factory( "ModelPrediction", {
|
|
// useOfflineSuggestions will filter out taxa w/ rank_level > 40
|
|
rank_level: 20,
|
|
} )],
|
|
};
|
|
getPredictionsForImage.mockImplementation(
|
|
async ( ) => ( mockModelResult ),
|
|
);
|
|
|
|
const mockUser = factory( "LocalUser" );
|
|
// Mock useCurrentUser hook
|
|
jest.mock( "sharedHooks/useCurrentUser", () => ( {
|
|
__esModule: true,
|
|
default: jest.fn( () => mockUser ),
|
|
} ) );
|
|
|
|
// 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,
|
|
};
|
|
|
|
beforeEach( ( ) => {
|
|
setStoreStateLayout( {
|
|
isDefaultMode: false,
|
|
isAllAddObsOptionsMode: true,
|
|
screenAfterPhotoEvidence: SCREEN_AFTER_PHOTO_EVIDENCE.OBS_EDIT,
|
|
} );
|
|
inatjs.computervision.score_image.mockResolvedValue( makeResponse( [topSuggestion] ) );
|
|
} );
|
|
|
|
describe( "Photo Deletion", ( ) => {
|
|
const actor = userEvent.setup( );
|
|
|
|
async function takePhotoForNewObs() {
|
|
const tabBar = await screen.findByTestId( "CustomTabBar" );
|
|
const addObsButton = await within( tabBar ).findByLabelText( "Add observations" );
|
|
await actor.press( addObsButton );
|
|
const cameraButton = await screen.findByLabelText( "Camera" );
|
|
await actor.press( cameraButton );
|
|
const takePhotoButton = await screen.findByLabelText( /Take photo/ );
|
|
await actor.press( takePhotoButton );
|
|
}
|
|
|
|
async function deletePhotoInMediaViewer() {
|
|
const deleteButton = await screen.findByLabelText( "Delete photo" );
|
|
await actor.press( deleteButton );
|
|
const warningSheet = await screen.findByTestId( "MediaViewer.DiscardMediaWarningSheet" );
|
|
const discardButton = await within( warningSheet ).findByText( "DISCARD" );
|
|
await actor.press( discardButton );
|
|
}
|
|
|
|
async function confirmPhotos() {
|
|
const checkmarkButton = await screen.findByLabelText( "View suggestions" );
|
|
await actor.press( checkmarkButton );
|
|
}
|
|
|
|
async function saveAndEditObs() {
|
|
// Make sure we're on ObsEdit
|
|
const evidenceTitle = await screen.findByText( "EVIDENCE" );
|
|
await waitFor( ( ) => {
|
|
// We used toBeVisible here but the update to RN0.77 broke this expectation
|
|
expect( evidenceTitle ).toBeOnTheScreen( );
|
|
} );
|
|
const saveButton = await screen.findByText( "SAVE" );
|
|
await actor.press( saveButton );
|
|
// Wait until header shows that there's an obs to upload
|
|
await screen.findByText( /Upload \d observation/ );
|
|
// await screen.findByLabelText( "Grid layout" );
|
|
const obsGridItems = await screen.findAllByTestId( /MyObservations\.obsGridItem\..*/ );
|
|
await actor.press( obsGridItems[0] );
|
|
}
|
|
|
|
async function expectNoPhotosInStandardCamera() {
|
|
const noPhotoText = await screen.findByText( "Photos you take will appear here" );
|
|
// We used toBeVisible here but the update to RN0.77 broke this expectation
|
|
expect( noPhotoText ).toBeOnTheScreen( );
|
|
}
|
|
|
|
async function viewPhotoFromObsEdit() {
|
|
const evidenceItem = await screen.findByLabelText( "Select or drag media" );
|
|
await waitFor( ( ) => {
|
|
// We used toBeVisible here but the update to RN0.77 broke this expectation
|
|
expect( evidenceItem ).toBeOnTheScreen( );
|
|
} );
|
|
await actor.press( evidenceItem );
|
|
}
|
|
|
|
async function expectObsEditToHaveNoPhotos() {
|
|
// Make sure we're on ObsEdit
|
|
const evidenceTitle = await screen.findByText( "EVIDENCE" );
|
|
// We used toBeVisible here but the update to RN0.77 broke this expectation
|
|
expect( evidenceTitle ).toBeOnTheScreen( );
|
|
// Confirm there is no evidence
|
|
const evidenceItems = screen.queryAllByLabelText( "Select or drag media" );
|
|
expect( evidenceItems.length ).toEqual( 0 );
|
|
}
|
|
|
|
it( "should delete from StandardCamera for new photo", async ( ) => {
|
|
renderApp( );
|
|
await takePhotoForNewObs();
|
|
// Tap the photo preview to enter the MediaViewer
|
|
const carouselPhoto = await screen.findByTestId( /PhotoCarousel\.displayPhoto/ );
|
|
await actor.press( carouselPhoto );
|
|
await deletePhotoInMediaViewer();
|
|
await expectNoPhotosInStandardCamera();
|
|
} );
|
|
|
|
it( "should delete from StandardCamera for existing photo", async ( ) => {
|
|
renderApp( );
|
|
await takePhotoForNewObs();
|
|
await confirmPhotos();
|
|
await saveAndEditObs();
|
|
// Enter camera to add new photo
|
|
const addEvidenceButton = await await screen.findByLabelText( "Add evidence" );
|
|
await actor.press( addEvidenceButton );
|
|
const addEvidenceSheet = await screen.findByTestId( "AddEvidenceSheet" );
|
|
const cameraButton = await within( addEvidenceSheet ).findByLabelText( "Camera" );
|
|
await actor.press( cameraButton );
|
|
// Tap the photo preview to enter the MediaViewer
|
|
const carouselPhoto = await screen.findByTestId( /PhotoCarousel\.displayPhoto/ );
|
|
await actor.press( carouselPhoto );
|
|
await deletePhotoInMediaViewer();
|
|
await expectNoPhotosInStandardCamera();
|
|
} );
|
|
|
|
it( "should delete from ObsEdit for new camera photo", async ( ) => {
|
|
renderApp( );
|
|
await takePhotoForNewObs();
|
|
await confirmPhotos();
|
|
await viewPhotoFromObsEdit();
|
|
await deletePhotoInMediaViewer( );
|
|
await expectObsEditToHaveNoPhotos();
|
|
} );
|
|
|
|
it( "should delete from ObsEdit for existing camera photo", async ( ) => {
|
|
renderApp( );
|
|
await takePhotoForNewObs();
|
|
await confirmPhotos();
|
|
await saveAndEditObs();
|
|
await viewPhotoFromObsEdit();
|
|
await deletePhotoInMediaViewer( );
|
|
await expectObsEditToHaveNoPhotos();
|
|
} );
|
|
|
|
// TODO these will require mocking react-native-image-picker
|
|
it.todo( "should delete from ObsEdit for new gallery photo" );
|
|
it.todo( "should delete from ObsEdit for existing gallery photo" );
|
|
} );
|