mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
58 lines
2.1 KiB
TypeScript
58 lines
2.1 KiB
TypeScript
import { shallow, ShallowWrapper } from 'enzyme';
|
|
import { DropdownItem } from 'reactstrap';
|
|
import { Mock } from 'ts-mockery';
|
|
import { ShortUrlsRowMenu as createShortUrlsRowMenu } from '../../../src/short-urls/helpers/ShortUrlsRowMenu';
|
|
import { ReachableServer } from '../../../src/servers/data';
|
|
import { ShortUrl } from '../../../src/short-urls/data';
|
|
import { DropdownBtnMenu } from '../../../src/utils/DropdownBtnMenu';
|
|
|
|
describe('<ShortUrlsRowMenu />', () => {
|
|
let wrapper: ShallowWrapper;
|
|
const DeleteShortUrlModal = () => null;
|
|
const QrCodeModal = () => null;
|
|
const selectedServer = Mock.of<ReachableServer>({ id: 'abc123' });
|
|
const shortUrl = Mock.of<ShortUrl>({
|
|
shortCode: 'abc123',
|
|
shortUrl: 'https://doma.in/abc123',
|
|
});
|
|
const createWrapper = () => {
|
|
const ShortUrlsRowMenu = createShortUrlsRowMenu(DeleteShortUrlModal, QrCodeModal);
|
|
|
|
wrapper = shallow(<ShortUrlsRowMenu selectedServer={selectedServer} shortUrl={shortUrl} />);
|
|
|
|
return wrapper;
|
|
};
|
|
|
|
afterEach(() => wrapper?.unmount());
|
|
|
|
it('renders modal windows', () => {
|
|
const wrapper = createWrapper();
|
|
const deleteShortUrlModal = wrapper.find(DeleteShortUrlModal);
|
|
const qrCodeModal = wrapper.find(QrCodeModal);
|
|
|
|
expect(deleteShortUrlModal).toHaveLength(1);
|
|
expect(qrCodeModal).toHaveLength(1);
|
|
});
|
|
|
|
it('renders correct amount of menu items', () => {
|
|
const wrapper = createWrapper();
|
|
const items = wrapper.find(DropdownItem);
|
|
|
|
expect(items).toHaveLength(5);
|
|
expect(items.find('[divider]')).toHaveLength(1);
|
|
});
|
|
|
|
describe('toggles state when toggling modals or the dropdown', () => {
|
|
const assert = (modalComponent: Function) => {
|
|
const wrapper = createWrapper();
|
|
|
|
expect(wrapper.find(modalComponent).prop('isOpen')).toEqual(false);
|
|
(wrapper.find(modalComponent).prop('toggle') as Function)();
|
|
expect(wrapper.find(modalComponent).prop('isOpen')).toEqual(true);
|
|
};
|
|
|
|
it('DeleteShortUrlModal', () => assert(DeleteShortUrlModal));
|
|
it('QrCodeModal', () => assert(QrCodeModal));
|
|
it('ShortUrlRowMenu', () => assert(DropdownBtnMenu));
|
|
});
|
|
});
|