Files
iNaturalistReactNative/tests/integration/PhotoDeletion.test.js

207 lines
6.9 KiB
JavaScript

import Geolocation from "@react-native-community/geolocation";
import {
screen,
userEvent,
waitFor,
within
} from "@testing-library/react-native";
import initI18next from "i18n/initI18next";
import inatjs from "inaturalistjs";
import useStore from "stores/useStore";
import factory, { makeResponse } from "tests/factory";
import { renderApp } from "tests/helpers/render";
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 mockWatchPosition = jest.fn( ( success, _error, _options ) => {
setTimeout( ( ) => success( {
coords: {
latitude: 1,
longitude: 1,
accuracy: 9
},
timestamp: Date.now( )
} ), 100 );
return 0;
} );
Geolocation.watchPosition.mockImplementation( mockWatchPosition );
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( ( ) => {
useStore.setState( {
layout: {
isDefaultMode: false
},
isAdvancedUser: true
} );
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( ( ) => {
expect( evidenceTitle ).toBeVisible( );
} );
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" );
expect( noPhotoText ).toBeVisible( );
}
async function viewPhotoFromObsEdit() {
const evidenceItem = await screen.findByLabelText( "Select or drag media" );
await waitFor( ( ) => {
expect( evidenceItem ).toBeVisible( );
} );
await actor.press( evidenceItem );
}
async function expectObsEditToHaveNoPhotos() {
// Make sure we're on ObsEdit
const evidenceTitle = await screen.findByText( "EVIDENCE" );
expect( evidenceTitle ).toBeVisible( );
// 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" );
} );