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

user_limit_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: bbc17932a492ffc6ffc0dda9dfc1183fa7245f66 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import { GlAlert, GlSprintf } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import UserLimitNotification from '~/invite_members/components/user_limit_notification.vue';

import {
  REACHED_LIMIT_MESSAGE,
  REACHED_LIMIT_UPGRADE_SUGGESTION_MESSAGE,
} from '~/invite_members/constants';

import { freeUsersLimit, membersCount } from '../mock_data/member_modal';

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

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

  const createComponent = (
    closeToLimit = false,
    reachedLimit = false,
    usersLimitDataset = {},
    props = {},
  ) => {
    wrapper = shallowMountExtended(UserLimitNotification, {
      propsData: {
        closeToLimit,
        reachedLimit,
        usersLimitDataset: {
          freeUsersLimit,
          membersCount,
          newTrialRegistrationPath: 'newTrialRegistrationPath',
          purchasePath: 'purchasePath',
          ...usersLimitDataset,
        },
        ...props,
      },
      provide: { name: 'my group' },
      stubs: { GlSprintf },
    });
  };

  afterEach(() => {
    wrapper.destroy();
  });

  describe('when limit is not reached', () => {
    it('renders empty block', () => {
      createComponent();

      expect(findAlert().exists()).toBe(false);
    });
  });

  describe('when close to limit with a personal namepace', () => {
    beforeEach(() => {
      createComponent(true, false, { membersCount: 3, userNamespace: true });
    });

    it('renders the limit for a personal namespace', () => {
      const alert = findAlert();

      expect(alert.attributes('title')).toEqual(
        'You only have space for 2 more members in your personal projects',
      );
      expect(alert.text()).toEqual(
        'To make more space, you can remove members who no longer need access.',
      );
    });
  });

  describe('when close to limit', () => {
    it("renders user's limit notification", () => {
      createComponent(true, false, { membersCount: 3 });

      const alert = findAlert();

      expect(alert.attributes('title')).toEqual(
        'You only have space for 2 more members in my group',
      );

      expect(alert.text()).toEqual(
        'To get more members an owner of this namespace can start a trial or upgrade to a paid tier.',
      );
    });
  });

  describe('when limit is reached', () => {
    it("renders user's limit notification", () => {
      createComponent(true, true);

      const alert = findAlert();

      expect(alert.attributes('title')).toEqual("You've reached your 5 members limit for my group");
      expect(alert.text()).toEqual(REACHED_LIMIT_UPGRADE_SUGGESTION_MESSAGE);
    });

    describe('when free user namespace', () => {
      it("renders user's limit notification", () => {
        createComponent(true, true, { userNamespace: true });

        const alert = findAlert();

        expect(alert.attributes('title')).toEqual(
          "You've reached your 5 members limit for your personal projects",
        );

        expect(alert.text()).toEqual(REACHED_LIMIT_MESSAGE);
      });
    });
  });
});