import React from 'react'; import { shallow } from 'enzyme'; import { Badge, Alert } from 'reactstrap'; import EndpointLink from './EndpointLink'; describe('EndpointLink', () => { it('renders a simple anchor if the endpoint has no query params', () => { const endpoint = 'http://100.104.208.71:15090/stats/prometheus'; const endpointLink = shallow(); const anchor = endpointLink.find('a'); expect(anchor.prop('href')).toEqual(endpoint); expect(anchor.children().text()).toEqual(endpoint); expect(endpointLink.find('br')).toHaveLength(0); }); it('renders an anchor targeting endpoint but with query param labels if the endpoint has query params', () => { const endpoint = 'http://100.99.128.71:9115/probe?module=http_2xx&target=http://some-service'; const endpointLink = shallow(); const anchor = endpointLink.find('a'); const badges = endpointLink.find(Badge); expect(anchor.prop('href')).toEqual(endpoint); expect(anchor.children().text()).toEqual('http://100.99.128.71:9115/probe'); expect(endpointLink.find('br')).toHaveLength(1); expect(badges).toHaveLength(2); const moduleLabel = badges.filterWhere(badge => badge.hasClass('module')); expect(moduleLabel.children().text()).toEqual('module="http_2xx"'); const targetLabel = badges.filterWhere(badge => badge.hasClass('target')); expect(targetLabel.children().text()).toEqual('target="http://some-service"'); }); it('renders an alert if url is invalid', () => { const endpointLink = shallow(); const err = endpointLink.find(Alert); expect(err.render().text()).toEqual('Error: Invalid URL'); }); });