superset/superset/assets/spec/javascripts/sqllab/ColumnElement_spec.jsx
Maxime Beauchemin 366ecefbaa Bumping the JS libs to fix the build (#2616)
* 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
2017-04-13 15:04:09 -07:00

37 lines
1.3 KiB
JavaScript

import React from 'react';
import { mount } from 'enzyme';
import { describe, it } from 'mocha';
import { expect } from 'chai';
import { mockedActions, table } from './fixtures';
import ColumnElement from '../../../javascripts/SqlLab/components/ColumnElement';
describe('ColumnElement', () => {
const mockedProps = {
actions: mockedActions,
column: table.columns[0],
};
it('is valid with props', () => {
expect(
React.isValidElement(<ColumnElement {...mockedProps} />),
).to.equal(true);
});
it('renders a proper primary key', () => {
const wrapper = mount(<ColumnElement column={table.columns[0]} />);
expect(wrapper.find('i.fa-key')).to.have.length(1);
expect(wrapper.find('.col-name').first().text()).to.equal('id');
});
it('renders a multi-key column', () => {
const wrapper = mount(<ColumnElement column={table.columns[1]} />);
expect(wrapper.find('i.fa-link')).to.have.length(1);
expect(wrapper.find('i.fa-bookmark')).to.have.length(1);
expect(wrapper.find('.col-name').first().text()).to.equal('first_name');
});
it('renders a column with no keys', () => {
const wrapper = mount(<ColumnElement column={table.columns[2]} />);
expect(wrapper.find('i')).to.have.length(0);
expect(wrapper.find('.col-name').first().text()).to.equal('last_name');
});
});