Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/reactstrap/src/__tests__/ drwxr-xr-x | |
| Viewing file: Select action/file-type: import React from 'react';
import { shallow, mount } from 'enzyme';
import { Button } from '../';
describe('Button', () => {
it('should render children', () => {
const wrapper = shallow(<Button>Ello world</Button>);
expect(wrapper.text()).toBe('Ello world');
});
it('should render custom element', () => {
const Link = props => <a href="/home" {...props}>{props.children}</a>;
const wrapper = mount(<Button tag={Link}>Home</Button>);
expect(wrapper.find('a').hostNodes().length).toBe(1);
expect(wrapper.text()).toBe('Home');
});
it('should render an anchor element if href exists', () => {
const wrapper = mount(<Button href="/home">Home</Button>);
expect(wrapper.find('a').hostNodes().length).toBe(1);
expect(wrapper.text()).toBe('Home');
});
it('should render type as undefined by default when tag is "button"', () => {
const wrapper = mount(<Button>Home</Button>);
expect(wrapper.find('button').hostNodes().prop('type')).toBe(undefined);
expect(wrapper.text()).toBe('Home');
});
it('should render type as "button" by default when tag is "button" and onClick is provided', () => {
const wrapper = mount(<Button onClick={() => {}}>Home</Button>);
expect(wrapper.find('button').hostNodes().prop('type')).toBe('button');
expect(wrapper.text()).toBe('Home');
});
it('should render type as user defined when defined by the user', () => {
const wrapper = mount(<Button type="submit">Home</Button>);
expect(wrapper.find('button').hostNodes().prop('type')).toBe('submit');
expect(wrapper.text()).toBe('Home');
});
it('should not render type by default when the type is not defined and the tag is not "button"', () => {
const wrapper = mount(<Button tag="a">Home</Button>);
expect(wrapper.find('a').hostNodes().prop('type')).toBe(undefined);
expect(wrapper.text()).toBe('Home');
});
it('should not render type by default when the type is not defined and the href is defined', () => {
const wrapper = mount(<Button href="#">Home</Button>);
expect(wrapper.find('a').hostNodes().prop('type')).toBe(undefined);
expect(wrapper.text()).toBe('Home');
});
it('should render buttons with default color', () => {
const wrapper = shallow(<Button>Default Button</Button>);
expect(wrapper.hasClass('btn-secondary')).toBe(true);
});
it('should render buttons with other colors', () => {
const wrapper = shallow(<Button color="danger">Default Button</Button>);
expect(wrapper.hasClass('btn-danger')).toBe(true);
});
it('should render buttons with outline variant', () => {
const wrapper = shallow(<Button outline>Default Button</Button>);
expect(wrapper.hasClass('btn-outline-secondary')).toBe(true);
});
it('should render buttons with outline variant with different colors', () => {
const wrapper = shallow(<Button outline color="info">Default Button</Button>);
expect(wrapper.hasClass('btn-outline-info')).toBe(true);
});
it('should render buttons at different sizes', () => {
const small = shallow(<Button size="sm">Small Button</Button>);
const large = shallow(<Button size="lg">Large Button</Button>);
expect(small.hasClass('btn-sm')).toBe(true);
expect(large.hasClass('btn-lg')).toBe(true);
});
it('should render block level buttons', () => {
const block = shallow(<Button block>Block Level Button</Button>);
expect(block.hasClass('btn-block')).toBe(true);
});
it('should render close icon utility with default props', () => {
const times = '×'; // unicode: U+00D7 MULTIPLICATION SIGN
const expectedInnerHTML = `<span aria-hidden="true">${times}</span>`;
const wrapper = shallow(<Button close />);
const actualInnerHTML = wrapper.children().html();
expect(wrapper.find('.close').length).toBe(1);
expect(wrapper.find('.btn').length).toBe(0);
expect(wrapper.find('.btn-secondary').length).toBe(0);
expect(wrapper.find('button').prop('aria-label')).toMatch(/close/i);
expect(actualInnerHTML).toBe(expectedInnerHTML);
});
it('should render close icon with custom child and props', () => {
const testChild = 'close this thing';
const wrapper = shallow(<Button close>{testChild}</Button>);
expect(wrapper.contains(testChild));
});
describe('onClick', () => {
it('calls props.onClick if it exists', () => {
const onClick = jest.fn();
const wrapper = mount(<Button onClick={onClick}>Testing Click</Button>);
wrapper.find('button').hostNodes().simulate('click');
expect(onClick).toHaveBeenCalled();
});
it('is not called when disabled', () => {
const e = createSpyObj('e', ['preventDefault']);
const wrapper = mount(<Button>Testing Click</Button>);
wrapper.instance().onClick(e);
expect(e.preventDefault).not.toHaveBeenCalled();
wrapper.setProps({ disabled: true });
wrapper.instance().onClick(e);
expect(e.preventDefault).toHaveBeenCalled();
});
});
});
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0194 ]-- |