2018-08-26 00:39:27 +03:00
|
|
|
import { shallow } from 'enzyme';
|
|
|
|
import React from 'react';
|
2018-08-18 18:14:33 +03:00
|
|
|
import { NavLink } from 'react-router-dom';
|
2018-08-26 00:39:27 +03:00
|
|
|
import AsideMenu from '../../src/common/AsideMenu';
|
2018-08-12 09:49:08 +03:00
|
|
|
|
|
|
|
describe('<AsideMenu />', () => {
|
|
|
|
let wrapped;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
wrapped = shallow(<AsideMenu selectedServer={{ id: 'abc123' }} />);
|
|
|
|
});
|
|
|
|
afterEach(() => {
|
|
|
|
wrapped.unmount();
|
|
|
|
});
|
|
|
|
|
2018-08-18 18:14:33 +03:00
|
|
|
it('contains links to different sections', () => {
|
|
|
|
const links = wrapped.find(NavLink);
|
2018-08-26 00:39:27 +03:00
|
|
|
const expectedLength = 3;
|
2018-08-12 09:49:08 +03:00
|
|
|
|
2018-08-26 00:39:27 +03:00
|
|
|
expect(links).toHaveLength(expectedLength);
|
|
|
|
links.forEach((link) => expect(link.prop('to')).toContain('abc123'));
|
2018-08-12 09:49:08 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it('contains a button to delete server', () => {
|
|
|
|
expect(wrapped.find('DeleteServerButton')).toHaveLength(1);
|
|
|
|
});
|
|
|
|
});
|