mirror of
https://github.com/apache/superset.git
synced 2026-04-10 11:55:24 +00:00
* bumping the js libs * New linting rules * More linting * More * Done linting * npm >=4.5.0 * Bumping node * Tweaking the build * Fixing the damn build * Fixing the apps
62 lines
2.2 KiB
JavaScript
62 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import { mount, shallow } from 'enzyme';
|
|
import { describe, it } from 'mocha';
|
|
import { expect } from 'chai';
|
|
|
|
import Link from '../../../javascripts/SqlLab/components/Link';
|
|
import TableElement from '../../../javascripts/SqlLab/components/TableElement';
|
|
import ColumnElement from '../../../javascripts/SqlLab/components/ColumnElement';
|
|
import { mockedActions, table } from './fixtures';
|
|
|
|
describe('TableElement', () => {
|
|
const mockedProps = {
|
|
actions: mockedActions,
|
|
table,
|
|
timeout: 0,
|
|
};
|
|
it('renders', () => {
|
|
expect(
|
|
React.isValidElement(<TableElement />),
|
|
).to.equal(true);
|
|
});
|
|
it('renders with props', () => {
|
|
expect(
|
|
React.isValidElement(<TableElement {...mockedProps} />),
|
|
).to.equal(true);
|
|
});
|
|
it('has 2 Link elements', () => {
|
|
const wrapper = shallow(<TableElement {...mockedProps} />);
|
|
expect(wrapper.find(Link)).to.have.length(2);
|
|
});
|
|
it('has 14 columns', () => {
|
|
const wrapper = shallow(<TableElement {...mockedProps} />);
|
|
expect(wrapper.find(ColumnElement)).to.have.length(14);
|
|
});
|
|
it('mounts', () => {
|
|
mount(<TableElement {...mockedProps} />);
|
|
});
|
|
it('sorts columns', () => {
|
|
const wrapper = mount(<TableElement {...mockedProps} />);
|
|
expect(wrapper.state().sortColumns).to.equal(false);
|
|
expect(wrapper.find(ColumnElement).first().props().column.name).to.equal('id');
|
|
wrapper.find('.sort-cols').simulate('click');
|
|
expect(wrapper.state().sortColumns).to.equal(true);
|
|
expect(wrapper.find(ColumnElement).first().props().column.name).to.equal('last_login');
|
|
});
|
|
it('calls the collapseTable action', () => {
|
|
const wrapper = mount(<TableElement {...mockedProps} />);
|
|
expect(mockedActions.collapseTable.called).to.equal(false);
|
|
wrapper.find('.table-name').simulate('click');
|
|
expect(mockedActions.collapseTable.called).to.equal(true);
|
|
});
|
|
it('removes the table', () => {
|
|
const wrapper = mount(<TableElement {...mockedProps} />);
|
|
expect(wrapper.state().expanded).to.equal(true);
|
|
wrapper.find('.table-remove').simulate('click');
|
|
expect(wrapper.state().expanded).to.equal(false);
|
|
setTimeout(() => {
|
|
expect(mockedActions.removeTable.called).to.equal(true);
|
|
}, 10);
|
|
});
|
|
});
|