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

subscriptions_spec.js « pages « subscriptions « jira_connect « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 198278efc1ff0a859ddbd600013de08b8f39fa89 (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
import { GlEmptyState } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import SubscriptionsPage from '~/jira_connect/subscriptions/pages/subscriptions.vue';
import AddNamespaceButton from '~/jira_connect/subscriptions/components/add_namespace_button.vue';
import SubscriptionsList from '~/jira_connect/subscriptions/components/subscriptions_list.vue';
import createStore from '~/jira_connect/subscriptions/store';

describe('SubscriptionsPage', () => {
  let wrapper;
  let store;

  const findAddNamespaceButton = () => wrapper.findComponent(AddNamespaceButton);
  const findSubscriptionsList = () => wrapper.findComponent(SubscriptionsList);
  const findEmptyState = () => wrapper.findComponent(GlEmptyState);

  const createComponent = ({ props } = {}) => {
    store = createStore();

    wrapper = shallowMount(SubscriptionsPage, {
      store,
      propsData: props,
    });
  };

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

  describe('template', () => {
    describe.each`
      scenario                   | expectSubscriptionsList | expectEmptyState
      ${'with subscriptions'}    | ${true}                 | ${false}
      ${'without subscriptions'} | ${false}                | ${true}
    `('$scenario', ({ expectEmptyState, expectSubscriptionsList }) => {
      beforeEach(() => {
        createComponent({
          props: {
            hasSubscriptions: expectSubscriptionsList,
          },
        });
      });

      it('renders button to add namespace', () => {
        expect(findAddNamespaceButton().exists()).toBe(true);
      });

      it(`${expectEmptyState ? 'renders' : 'does not render'} empty state`, () => {
        expect(findEmptyState().exists()).toBe(expectEmptyState);
      });

      it(`${expectSubscriptionsList ? 'renders' : 'does not render'} subscriptions list`, () => {
        expect(findSubscriptionsList().exists()).toBe(expectSubscriptionsList);
      });
    });
  });
});