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

user_actions_app_spec.js « components « actions « profile « users « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2ae3d8364f2afc5ae073581fdc0692140f7aa3f (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
import { GlDisclosureDropdown } from '@gitlab/ui';
import { mountExtended } from 'helpers/vue_test_utils_helper';
import UserActionsApp from '~/users/profile/actions/components/user_actions_app.vue';

describe('User Actions App', () => {
  let wrapper;

  const USER_ID = 'test-id';
  const DEFAULT_SUBSCRIPTION_PATH = '';

  const createWrapper = (propsData = {}) => {
    wrapper = mountExtended(UserActionsApp, {
      propsData: {
        userId: USER_ID,
        rssSubscriptionPath: DEFAULT_SUBSCRIPTION_PATH,
        ...propsData,
      },
    });
  };

  const findDropdown = () => wrapper.findComponent(GlDisclosureDropdown);
  const findActions = () => wrapper.findAllByTestId('disclosure-dropdown-item');
  const findAction = (position = 0) => findActions().at(position);
  const findSubscriptionLink = () => wrapper.findByTestId('user-profile-rss-subscription-link');

  it('shows dropdown', () => {
    createWrapper();
    expect(findDropdown().exists()).toBe(true);
  });

  describe('shows user action items', () => {
    it('should show items without RSS subscriptions', () => {
      createWrapper();
      expect(findActions()).toHaveLength(1);
    });

    it('should show items with RSS subscriptions', () => {
      createWrapper({
        rssSubscriptionPath: '/test/path',
      });
      expect(findActions()).toHaveLength(2);
    });
  });

  it('shows copy user id action', () => {
    createWrapper();
    expect(findAction().text()).toBe(`Copy user ID: ${USER_ID}`);
    expect(findAction().findComponent('button').attributes('data-clipboard-text')).toBe(USER_ID);
  });

  it('shows subscription link when subscription url was presented', () => {
    const testSubscriptionPath = '/test/path';

    createWrapper({
      rssSubscriptionPath: testSubscriptionPath,
    });

    const rssLink = findSubscriptionLink();
    expect(rssLink.exists()).toBe(true);
    expect(rssLink.attributes('href')).toBe(testSubscriptionPath);
    expect(rssLink.text()).toBe('Subscribe');
  });
});