Welcome to mirror list, hosted at ThFree Co, Russian Federation.

users_table_spec.js « components « users « admin « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b79d2d4d39d20bfac8a9638f51e5d1a4422ab4e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import { GlTable } from '@gitlab/ui';
import { mount } from '@vue/test-utils';

import AdminUsersTable from '~/admin/users/components/users_table.vue';
import AdminUserAvatar from '~/admin/users/components/user_avatar.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 in column $label', ({ key, label }) => {
      expect(getCellByLabel(0, label).text()).toContain(`${user[key]}`);
    });

    it('renders an AdminUserAvatar component', () => {
      expect(getCellByLabel(0, 'Name').find(AdminUserAvatar).exists()).toBe(true);
    });
  });

  describe('when users is an empty array', () => {
    beforeEach(() => {
      initComponent({ users: [] });
    });

    it('renders a "No users found" message', () => {
      expect(wrapper.text()).toContain('No users found');
    });
  });
});