62 lines
1.4 KiB
JavaScript
62 lines
1.4 KiB
JavaScript
|
import { GlTable } from '@gitlab/ui';
|
||
|
import { mount } from '@vue/test-utils';
|
||
|
|
||
|
import AdminUsersTable from '~/admin/users/components/users_table.vue';
|
||
|
import { users, paths } from '../mock_data';
|
||
|
|
||
|
describe('AdminUsersTable component', () => {
|
||
|
let wrapper;
|
||
|
|
||
|
const getCellByLabel = (trIdx, label) => {
|
||
|
return wrapper
|
||
|
.find(GlTable)
|
||
|
.find('tbody')
|
||
|
.findAll('tr')
|
||
|
.at(trIdx)
|
||
|
.find(`[data-label="${label}"][role="cell"]`);
|
||
|
};
|
||
|
|
||
|
const initComponent = (props = {}) => {
|
||
|
wrapper = mount(AdminUsersTable, {
|
||
|
propsData: {
|
||
|
users,
|
||
|
paths,
|
||
|
...props,
|
||
|
},
|
||
|
});
|
||
|
};
|
||
|
|
||
|
afterEach(() => {
|
||
|
wrapper.destroy();
|
||
|
wrapper = null;
|
||
|
});
|
||
|
|
||
|
describe('when there are users', () => {
|
||
|
const user = users[0];
|
||
|
|
||
|
beforeEach(() => {
|
||
|
initComponent();
|
||
|
});
|
||
|
|
||
|
it.each`
|
||
|
key | label
|
||
|
${'name'} | ${'Name'}
|
||
|
${'projectsCount'} | ${'Projects'}
|
||
|
${'createdAt'} | ${'Created on'}
|
||
|
${'lastActivityOn'} | ${'Last activity'}
|
||
|
`('renders users.$key for $label', ({ key, label }) => {
|
||
|
expect(getCellByLabel(0, label).text()).toBe(`${user[key]}`);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('when users is an empty array', () => {
|
||
|
beforeEach(() => {
|
||
|
initComponent({ users: [] });
|
||
|
});
|
||
|
|
||
|
it('renders a "No users found" message', () => {
|
||
|
expect(wrapper.text()).toContain('No users found');
|
||
|
});
|
||
|
});
|
||
|
});
|