summaryrefslogtreecommitdiff
path: root/spec/frontend/merge_request/components/status_box_spec.js
blob: e6b6512476b32f23c7e24a50551b68607de61f21 (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
import { nextTick } from 'vue';
import { shallowMount } from '@vue/test-utils';
import { GlSprintf } from '@gitlab/ui';
import StatusBox from '~/merge_request/components/status_box.vue';
import mrEventHub from '~/merge_request/eventhub';

let wrapper;

function factory(propsData) {
  wrapper = shallowMount(StatusBox, { propsData, stubs: { GlSprintf } });
}

const testCases = [
  {
    name: 'Open',
    state: 'opened',
    class: 'status-box-open',
    icon: 'issue-open-m',
  },
  {
    name: 'Closed',
    state: 'closed',
    class: 'status-box-mr-closed',
    icon: 'close',
  },
  {
    name: 'Merged',
    state: 'merged',
    class: 'status-box-mr-merged',
    icon: 'git-merge',
  },
];

describe('Merge request status box component', () => {
  afterEach(() => {
    wrapper.destroy();
    wrapper = null;
  });

  testCases.forEach((testCase) => {
    describe(`when merge request is ${testCase.name}`, () => {
      it('renders human readable test', () => {
        factory({
          initialState: testCase.state,
        });

        expect(wrapper.text()).toContain(testCase.name);
      });

      it('sets css class', () => {
        factory({
          initialState: testCase.state,
        });

        expect(wrapper.classes()).toContain(testCase.class);
      });

      it('renders icon', () => {
        factory({
          initialState: testCase.state,
        });

        expect(wrapper.find('[data-testid="status-icon"]').props('name')).toBe(testCase.icon);
      });
    });
  });

  it('updates with eventhub event', async () => {
    factory({
      initialState: 'opened',
    });

    expect(wrapper.text()).toContain('Open');

    mrEventHub.$emit('mr.state.updated', { state: 'closed' });

    await nextTick();

    expect(wrapper.text()).toContain('Closed');
  });
});