debian-mirror-gitlab/spec/frontend/admin/users/components/users_table_spec.js

73 lines
1.8 KiB
JavaScript
Raw Normal View History

2021-02-22 17:27:13 +05:30
import { GlTable } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
2021-03-11 19:13:27 +05:30
import AdminUserActions from '~/admin/users/components/user_actions.vue';
2021-03-08 18:12:59 +05:30
import AdminUserAvatar from '~/admin/users/components/user_avatar.vue';
2021-03-11 19:13:27 +05:30
import AdminUsersTable from '~/admin/users/components/users_table.vue';
2021-04-29 21:17:54 +05:30
import AdminUserDate from '~/vue_shared/components/user_date.vue';
2021-03-11 19:13:27 +05:30
2021-02-22 17:27:13 +05:30
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();
});
2021-03-11 19:13:27 +05:30
it('renders the projects count', () => {
expect(getCellByLabel(0, 'Projects').text()).toContain(`${user.projectsCount}`);
2021-03-08 18:12:59 +05:30
});
2021-03-11 19:13:27 +05:30
it('renders the user actions', () => {
expect(wrapper.find(AdminUserActions).exists()).toBe(true);
});
it.each`
component | label
${AdminUserAvatar} | ${'Name'}
${AdminUserDate} | ${'Created on'}
${AdminUserDate} | ${'Last activity'}
`('renders the component for column $label', ({ component, label }) => {
expect(getCellByLabel(0, label).find(component).exists()).toBe(true);
2021-02-22 17:27:13 +05:30
});
});
describe('when users is an empty array', () => {
beforeEach(() => {
initComponent({ users: [] });
});
it('renders a "No users found" message', () => {
expect(wrapper.text()).toContain('No users found');
});
});
});