mirror of
https://github.com/apache/superset.git
synced 2026-04-10 20:06:13 +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
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import Gravatar from 'react-gravatar';
|
|
import { Panel } from 'react-bootstrap';
|
|
import { mount } from 'enzyme';
|
|
import { describe, it } from 'mocha';
|
|
import { expect } from 'chai';
|
|
|
|
import { user } from './fixtures';
|
|
import UserInfo from '../../../javascripts/profile/components/UserInfo';
|
|
|
|
|
|
describe('UserInfo', () => {
|
|
const mockedProps = {
|
|
user,
|
|
};
|
|
it('is valid', () => {
|
|
expect(
|
|
React.isValidElement(<UserInfo {...mockedProps} />),
|
|
).to.equal(true);
|
|
});
|
|
it('renders a Gravatar', () => {
|
|
const wrapper = mount(<UserInfo {...mockedProps} />);
|
|
expect(wrapper.find(Gravatar)).to.have.length(1);
|
|
});
|
|
it('renders a Panel', () => {
|
|
const wrapper = mount(<UserInfo {...mockedProps} />);
|
|
expect(wrapper.find(Panel)).to.have.length(1);
|
|
});
|
|
it('renders 5 icons', () => {
|
|
const wrapper = mount(<UserInfo {...mockedProps} />);
|
|
expect(wrapper.find('i')).to.have.length(5);
|
|
});
|
|
it('renders roles information', () => {
|
|
const wrapper = mount(<UserInfo {...mockedProps} />);
|
|
expect(wrapper.find('.roles').text()).to.equal(' Alpha, sql_lab');
|
|
});
|
|
it('shows the right user-id', () => {
|
|
const wrapper = mount(<UserInfo {...mockedProps} />);
|
|
expect(wrapper.find('.user-id').text()).to.equal('5');
|
|
});
|
|
});
|