summaryrefslogtreecommitdiff
path: root/spec/frontend/sidebar/components/labels/labels_select_vue/label_item_spec.js
blob: e14c0e308ce0d0b4779d7b6437360d248972f0a5 (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
import { GlLink } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';

import LabelItem from '~/sidebar/components/labels/labels_select_vue/label_item.vue';
import { mockRegularLabel } from './mock_data';

const mockLabel = { ...mockRegularLabel, set: true };

const createComponent = ({
  label = mockLabel,
  isLabelSet = mockLabel.set,
  highlight = true,
} = {}) =>
  shallowMount(LabelItem, {
    propsData: {
      label,
      isLabelSet,
      highlight,
    },
  });

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

  beforeEach(() => {
    wrapper = createComponent();
  });

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

  describe('template', () => {
    it('renders gl-link component', () => {
      expect(wrapper.findComponent(GlLink).exists()).toBe(true);
    });

    it('renders component root with class `is-focused` when `highlight` prop is true', () => {
      const wrapperTemp = createComponent({
        highlight: true,
      });

      expect(wrapperTemp.classes()).toContain('is-focused');

      wrapperTemp.destroy();
    });

    it.each`
      isLabelSet | isLabelIndeterminate | testId                  | iconName
      ${true}    | ${false}             | ${'checked-icon'}       | ${'mobile-issue-close'}
      ${false}   | ${true}              | ${'indeterminate-icon'} | ${'dash'}
    `(
      'renders visible gl-icon component when `isLabelSet` prop is $isLabelSet and `isLabelIndeterminate` is $isLabelIndeterminate',
      ({ isLabelSet, isLabelIndeterminate, testId, iconName }) => {
        const wrapperTemp = createComponent({
          isLabelSet,
          isLabelIndeterminate,
        });

        const iconEl = wrapperTemp.find(`[data-testid="${testId}"]`);

        expect(iconEl.isVisible()).toBe(true);
        expect(iconEl.props('name')).toBe(iconName);

        wrapperTemp.destroy();
      },
    );

    it('renders visible span element as placeholder instead of gl-icon when `isLabelSet` prop is false', () => {
      const wrapperTemp = createComponent({
        isLabelSet: false,
      });

      const placeholderEl = wrapperTemp.find('[data-testid="no-icon"]');

      expect(placeholderEl.isVisible()).toBe(true);

      wrapperTemp.destroy();
    });

    it('renders label color element', () => {
      const colorEl = wrapper.find('[data-testid="label-color-box"]');

      expect(colorEl.exists()).toBe(true);
      expect(colorEl.attributes('style')).toBe('background-color: rgb(186, 218, 85);');
    });

    it('renders label title', () => {
      expect(wrapper.text()).toContain(mockLabel.title);
    });
  });
});