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 } from 'enzyme';
import {
Alert,
ButtonDropdown,
Dropdown,
Tooltip,
UncontrolledAlert,
UncontrolledButtonDropdown,
UncontrolledDropdown,
UncontrolledTooltip,
} from '../';
describe('UncontrolledAlert', () => {
it('should be an Alert', () => {
const alert = shallow(<UncontrolledAlert>Yo!</UncontrolledAlert>);
expect(alert.type()).toBe(Alert);
});
it('should have isOpen default to true', () => {
const alert = shallow(<UncontrolledAlert>Yo!</UncontrolledAlert>);
expect(alert.prop('isOpen')).toBe(true);
});
it('should have toggle function', () => {
const alert = shallow(<UncontrolledAlert>Yo!</UncontrolledAlert>);
expect(alert.prop('toggle')).toEqual(expect.any(Function));
});
it('should toggle isOpen when toggle is called', () => {
const alert = shallow(<UncontrolledAlert>Yo!</UncontrolledAlert>);
const instance = alert.instance();
instance.toggle();
alert.update();
expect(alert.prop('isOpen')).toBe(false);
});
});
describe('UncontrolledButtonDropdown', () => {
it('should be an ButtonDropdown', () => {
const buttonDropdown = shallow(<UncontrolledButtonDropdown>Yo!</UncontrolledButtonDropdown>);
expect(buttonDropdown.type()).toBe(ButtonDropdown);
});
it('should have isOpen default to false', () => {
const buttonDropdown = shallow(<UncontrolledButtonDropdown>Yo!</UncontrolledButtonDropdown>);
expect(buttonDropdown.prop('isOpen')).toBe(false);
});
it('should have toggle function', () => {
const buttonDropdown = shallow(<UncontrolledButtonDropdown>Yo!</UncontrolledButtonDropdown>);
expect(buttonDropdown.prop('toggle')).toEqual(expect.any(Function));
});
it('should toggle isOpen when toggle is called', () => {
const buttonDropdown = shallow(<UncontrolledButtonDropdown>Yo!</UncontrolledButtonDropdown>);
const instance = buttonDropdown.instance();
instance.toggle();
buttonDropdown.update();
expect(buttonDropdown.prop('isOpen')).toBe(true);
});
});
describe('UncontrolledDropdown', () => {
it('should be an Dropdown', () => {
const dropdown = shallow(<UncontrolledDropdown>Yo!</UncontrolledDropdown>);
expect(dropdown.type()).toBe(Dropdown);
});
it('should have isOpen default to false', () => {
const dropdown = shallow(<UncontrolledDropdown>Yo!</UncontrolledDropdown>);
expect(dropdown.prop('isOpen')).toBe(false);
});
it('should have toggle function', () => {
const dropdown = shallow(<UncontrolledDropdown>Yo!</UncontrolledDropdown>);
expect(dropdown.prop('toggle')).toEqual(expect.any(Function));
});
it('should toggle isOpen when toggle is called', () => {
const dropdown = shallow(<UncontrolledDropdown>Yo!</UncontrolledDropdown>);
const instance = dropdown.instance();
instance.toggle();
dropdown.update();
expect(dropdown.prop('isOpen')).toBe(true);
});
});
describe('UncontrolledTooltip', () => {
it('should be an Tooltip', () => {
const tooltip = shallow(<UncontrolledTooltip target="blah">Yo!</UncontrolledTooltip>);
expect(tooltip.type()).toBe(Tooltip);
});
it('should have isOpen default to false', () => {
const tooltip = shallow(<UncontrolledTooltip target="blah">Yo!</UncontrolledTooltip>);
expect(tooltip.prop('isOpen')).toBe(false);
});
it('should have toggle function', () => {
const tooltip = shallow(<UncontrolledTooltip target="blah">Yo!</UncontrolledTooltip>);
expect(tooltip.prop('toggle')).toEqual(expect.any(Function));
});
it('should toggle isOpen when toggle is called', () => {
const tooltip = shallow(<UncontrolledTooltip target="blah">Yo!</UncontrolledTooltip>);
const instance = tooltip.instance();
instance.toggle();
tooltip.update();
expect(tooltip.prop('isOpen')).toBe(true);
});
it('should have boundary set to string', () => {
const tooltip = shallow(<UncontrolledTooltip boundariesElement="window" target="blah">Yo!</UncontrolledTooltip>);
expect(tooltip.prop('boundariesElement')).toBe('window');
});
it('should render correctly with a ref object as the target', () => {
const target = React.createRef();
const tooltip = shallow(<UncontrolledTooltip target={target}>Yo!</UncontrolledTooltip>);
expect(tooltip.exists()).toBe(true);
});
});
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0057 ]-- |