Files
iNaturalistReactNative/tests/unit/components/SharedComponents/Map.test.js
Ken-ichi Ueda b7a6693125 Minor logging cleanup
* Log the actual message we intended for JSON parsing errors
* Always use the configured tile URL instead of hard-coding it
* Use tiles.inaturalist.org whenever possible
2024-05-28 12:15:57 -07:00

41 lines
1.3 KiB
JavaScript

import { screen } from "@testing-library/react-native";
import { Map } from "components/SharedComponents";
import { TILE_URL } from "components/SharedComponents/Map/helpers/mapHelpers.ts";
import React from "react";
import faker from "tests/helpers/faker";
import { renderComponent } from "tests/helpers/render";
const baseUrl = `${TILE_URL}/grid/{z}/{x}/{y}.png`;
describe( "Map", ( ) => {
it( "should be accessible", ( ) => {
expect( <Map /> ).toBeAccessible( );
} );
it( "displays filtered observations on map", async ( ) => {
const taxonId = 1234;
renderComponent(
<Map
withPressableObsTiles
tileMapParams={{ taxon_id: taxonId }}
/>
);
const tiles = await screen.findByTestId( "Map.UrlTile" );
const { urlTemplate } = tiles.props;
expect( urlTemplate )
.toMatch( new RegExp( `^${baseUrl}.*taxon_id=${taxonId}` ) );
} );
it( "displays location indicator when given an observation lat/lng", async ( ) => {
renderComponent(
<Map
showLocationIndicator
obsLatitude={Number( faker.location.latitude( ) )}
obsLongitude={Number( faker.location.longitude( ) )}
/>
);
const testId = "Map.LocationIndicator";
expect( screen.getByTestId( testId ) ).toBeTruthy();
} );
} );