mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2025-12-23 22:18:36 -05:00
* (lint) MOB-1063 enforce trailing commas * autofix trailing commas * manually fix newly introduced maxlen violations * add trailing comma convention to i18n build
112 lines
3.1 KiB
JavaScript
112 lines
3.1 KiB
JavaScript
// These test ensure that My Observation integrates with other systems like
|
|
// remote data retrieval and local data persistence
|
|
|
|
import { screen, waitFor } from "@testing-library/react-native";
|
|
import MyObservationsContainer from "components/MyObservations/MyObservationsContainer";
|
|
import React from "react";
|
|
import safeRealmWrite from "sharedHelpers/safeRealmWrite";
|
|
import factory from "tests/factory";
|
|
import faker from "tests/helpers/faker";
|
|
import { renderAppWithComponent } from "tests/helpers/render";
|
|
import setStoreStateLayout from "tests/helpers/setStoreStateLayout";
|
|
import setupUniqueRealm from "tests/helpers/uniqueRealm";
|
|
|
|
const mockUnsyncedObservations = [
|
|
factory( "LocalObservation", {
|
|
_synced_at: null,
|
|
observationPhotos: [
|
|
factory( "LocalObservationPhoto", {
|
|
photo: {
|
|
url: faker.image.url( ),
|
|
position: 0,
|
|
},
|
|
} ),
|
|
],
|
|
} ),
|
|
factory( "LocalObservation", {
|
|
_synced_at: null,
|
|
observationPhotos: [
|
|
factory( "LocalObservationPhoto", {
|
|
photo: {
|
|
url: `${faker.image.url( )}/100`,
|
|
position: 0,
|
|
},
|
|
} ),
|
|
factory( "LocalObservationPhoto", {
|
|
photo: {
|
|
url: `${faker.image.url( )}/200`,
|
|
position: 1,
|
|
},
|
|
} ),
|
|
],
|
|
} ),
|
|
];
|
|
|
|
jest.mock( "sharedHooks/useFontScale", () => ( {
|
|
__esModule: true,
|
|
default: ( ) => ( { isLargeFontScale: false } ),
|
|
} ) );
|
|
|
|
// 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
|
|
|
|
const writeObservationsToRealm = ( observations, message ) => {
|
|
const realm = global.mockRealms[__filename];
|
|
safeRealmWrite( realm, ( ) => {
|
|
observations.forEach( mockObservation => {
|
|
realm.create( "Observation", mockObservation );
|
|
} );
|
|
}, message );
|
|
};
|
|
|
|
const displayItemByText = text => {
|
|
const item = screen.getByText( text );
|
|
expect( item ).toBeVisible( );
|
|
};
|
|
|
|
beforeEach( ( ) => {
|
|
setStoreStateLayout( {
|
|
isDefaultMode: true,
|
|
isAllAddObsOptionsMode: false,
|
|
} );
|
|
} );
|
|
|
|
describe( "MyObservationsSimple", ( ) => {
|
|
describe( "when signed out", ( ) => {
|
|
beforeEach( ( ) => {
|
|
writeObservationsToRealm(
|
|
mockUnsyncedObservations,
|
|
"writing unsynced observations for MyObservations integration test",
|
|
);
|
|
} );
|
|
|
|
it( "displays correct header", async () => {
|
|
const realm = global.mockRealms[__filename];
|
|
expect( realm.objects( "Observation" ).length ).toBeGreaterThan( 0 );
|
|
renderAppWithComponent( <MyObservationsContainer /> );
|
|
await waitFor( ( ) => {
|
|
displayItemByText( /My Observations/ );
|
|
} );
|
|
} );
|
|
} );
|
|
} );
|