mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-05-05 06:05:12 -04:00
This tries to make sure that it requests the basic set of fields, and tests to make sure AddID returns an object that can be saved to Realm. Also fixed a bug in which the user seemed to be required in DisplayTaxonName.
84 lines
2.7 KiB
JavaScript
84 lines
2.7 KiB
JavaScript
import { fireEvent, screen, waitFor } from "@testing-library/react-native";
|
|
import AddID from "components/ObsEdit/AddID";
|
|
import { t } from "i18next";
|
|
import inatjs from "inaturalistjs";
|
|
import React from "react";
|
|
|
|
import factory, { makeResponse } from "../../../factory";
|
|
import { renderComponent } from "../../../helpers/render";
|
|
// Mock inaturalistjs so we can make some fake responses
|
|
jest.mock( "inaturalistjs" );
|
|
|
|
// this resolves a test failure with the Animated library:
|
|
// Animated: `useNativeDriver` is not supported because the native animated module is missing.
|
|
jest.useFakeTimers( );
|
|
|
|
const mockTaxaList = [
|
|
factory( "RemoteTaxon" ),
|
|
factory( "RemoteTaxon" ),
|
|
factory( "RemoteTaxon" )
|
|
];
|
|
|
|
jest.mock( "sharedHooks/useAuthenticatedQuery", ( ) => ( {
|
|
__esModule: true,
|
|
default: ( ) => ( {
|
|
data: mockTaxaList
|
|
} )
|
|
} ) );
|
|
|
|
jest.mock( "react-native-vector-icons/MaterialIcons", ( ) => {
|
|
const InnerReact = require( "react" );
|
|
class MaterialIcons extends InnerReact.Component {
|
|
static getImageSourceSync( _thing, _number, _color ) {
|
|
return { uri: "foo" };
|
|
}
|
|
|
|
render( ) {
|
|
return InnerReact.createElement( "MaterialIcons", this.props, this.props.children );
|
|
}
|
|
}
|
|
return MaterialIcons;
|
|
} );
|
|
|
|
describe( "rendering", ( ) => {
|
|
it( "show taxon search results", async ( ) => {
|
|
inatjs.search.mockResolvedValue( makeResponse( mockTaxaList ) );
|
|
const route = { params: { } };
|
|
const { getByTestId } = renderComponent( <AddID route={route} /> );
|
|
const input = getByTestId( "SearchTaxon" );
|
|
const taxon = mockTaxaList[0];
|
|
await waitFor( () => {
|
|
fireEvent.changeText( input, "Some taxon" );
|
|
expect( getByTestId( `Search.taxa.${taxon.id}` ) ).toBeTruthy( );
|
|
} );
|
|
expect(
|
|
getByTestId( `Search.taxa.${taxon.id}.photo` ).props.source
|
|
).toStrictEqual( { uri: taxon.default_photo.square_url } );
|
|
} );
|
|
|
|
it( "calls callback with a taxon that can be saved to Realm", async ( ) => {
|
|
const mockCallback = jest.fn( ident => {
|
|
global.realm.write( ( ) => {
|
|
global.realm.create( "Taxon", ident.taxon );
|
|
} );
|
|
} );
|
|
renderComponent( (
|
|
<AddID
|
|
route={{
|
|
params: {
|
|
onIDAdded: mockCallback
|
|
}
|
|
}}
|
|
/>
|
|
) );
|
|
const input = screen.getByTestId( "SearchTaxon" );
|
|
const taxon = mockTaxaList[0];
|
|
fireEvent.changeText( input, "Some taxon" );
|
|
expect( await screen.findByTestId( `Search.taxa.${taxon.id}` ) ).toBeTruthy( );
|
|
const labelText = t( "Choose-Taxon" );
|
|
const chooseButton = ( await screen.findAllByLabelText( labelText ) )[0];
|
|
fireEvent.press( chooseButton );
|
|
expect( mockCallback ).toHaveBeenCalled( );
|
|
} );
|
|
} );
|