mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-27 20:26:40 +00:00
Created tests for new map-related components
This commit is contained in:
61
test/visits/helpers/MapModal.test.js
Normal file
61
test/visits/helpers/MapModal.test.js
Normal file
@@ -0,0 +1,61 @@
|
||||
import React from 'react';
|
||||
import { shallow } from 'enzyme';
|
||||
import { Modal, ModalHeader } from 'reactstrap';
|
||||
import { Marker, Popup } from 'react-leaflet';
|
||||
import MapModal from '../../../src/visits/helpers/MapModal';
|
||||
|
||||
describe('<MapModal />', () => {
|
||||
let wrapper;
|
||||
const toggle = () => '';
|
||||
const isOpen = true;
|
||||
const title = 'Foobar';
|
||||
const zaragozaLat = 41.6563497;
|
||||
const zaragozaLong = -0.876566;
|
||||
const newYorkLat = 40.730610;
|
||||
const newYorkLong = -73.935242;
|
||||
const locations = [
|
||||
{
|
||||
cityName: 'Zaragoza',
|
||||
count: 54,
|
||||
latLong: [ zaragozaLat, zaragozaLong ],
|
||||
},
|
||||
{
|
||||
cityName: 'New York',
|
||||
count: 7,
|
||||
latLong: [ newYorkLat, newYorkLong ],
|
||||
},
|
||||
];
|
||||
|
||||
beforeEach(() => {
|
||||
wrapper = shallow(<MapModal toggle={toggle} isOpen={isOpen} title={title} locations={locations} />);
|
||||
});
|
||||
|
||||
afterEach(() => wrapper.unmount());
|
||||
|
||||
it('renders modal with provided props', () => {
|
||||
const modal = wrapper.find(Modal);
|
||||
const headerheader = wrapper.find(ModalHeader);
|
||||
|
||||
expect(modal.prop('toggle')).toEqual(toggle);
|
||||
expect(modal.prop('isOpen')).toEqual(isOpen);
|
||||
expect(headerheader.prop('toggle')).toEqual(toggle);
|
||||
expect(headerheader.prop('children')).toEqual(title);
|
||||
});
|
||||
|
||||
it('renders open street map tile', () => {
|
||||
expect(wrapper.find('OpenStreetMapTile')).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('renders proper amount of markers', () => {
|
||||
const markers = wrapper.find(Marker);
|
||||
|
||||
expect(markers).toHaveLength(locations.length);
|
||||
locations.forEach(({ latLong, count, cityName }, index) => {
|
||||
const marker = markers.at(index);
|
||||
const popup = marker.find(Popup);
|
||||
|
||||
expect(marker.prop('position')).toEqual(latLong);
|
||||
expect(popup.text()).toEqual(`${count} visits from ${cityName}`);
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user