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

invite_group_notification_spec.js « components « invite_members « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e6ba6da9f43414cf5ac3f32f6a5b8253d021f9f (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
import { GlAlert, GlLink, GlSprintf } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import { sprintf } from '~/locale';
import InviteGroupNotification from '~/invite_members/components/invite_group_notification.vue';
import { GROUP_MODAL_ALERT_BODY } from '~/invite_members/constants';

describe('InviteGroupNotification', () => {
  let wrapper;

  const findAlert = () => wrapper.findComponent(GlAlert);
  const findLink = () => wrapper.findComponent(GlLink);

  const createComponent = () => {
    wrapper = shallowMountExtended(InviteGroupNotification, {
      provide: { freeUsersLimit: 5 },
      propsData: { name: 'name' },
      stubs: { GlSprintf },
    });
  };

  describe('when rendering', () => {
    beforeEach(() => {
      createComponent();
    });

    it('passes the correct props', () => {
      expect(findAlert().props()).toMatchObject({ variant: 'warning', dismissible: false });
    });

    it('shows the correct message', () => {
      const message = sprintf(GROUP_MODAL_ALERT_BODY, { count: 5 });

      expect(findAlert().text()).toMatchInterpolatedText(message);
    });

    it('has a help link', () => {
      expect(findLink().attributes('href')).toEqual(
        'https://docs.gitlab.com/ee/user/group/manage.html#share-a-group-with-another-group',
      );
    });
  });
});