summaryrefslogtreecommitdiff
path: root/spec/frontend/runner/components/runner_tags_spec.js
blob: 7bb3f65e4ba067f92b10e4a4dce92485cc03b77a (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
import { GlBadge } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import RunnerTags from '~/runner/components/runner_tags.vue';

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

  const findBadge = () => wrapper.findComponent(GlBadge);
  const findBadgesAt = (i = 0) => wrapper.findAllComponents(GlBadge).at(i);

  const createComponent = ({ props = {} } = {}) => {
    wrapper = shallowMount(RunnerTags, {
      propsData: {
        tagList: ['tag1', 'tag2'],
        ...props,
      },
    });
  };

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

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

  it('Displays tags text', () => {
    expect(wrapper.text()).toMatchInterpolatedText('tag1 tag2');

    expect(findBadgesAt(0).text()).toBe('tag1');
    expect(findBadgesAt(1).text()).toBe('tag2');
  });

  it('Displays tags with correct style', () => {
    expect(findBadge().props('size')).toBe('md');
    expect(findBadge().props('variant')).toBe('info');
  });

  it('Displays tags with small size', () => {
    createComponent({
      props: { size: 'sm' },
    });

    expect(findBadge().props('size')).toBe('sm');
  });

  it('Displays tags with a variant', () => {
    createComponent({
      props: { variant: 'warning' },
    });

    expect(findBadge().props('variant')).toBe('warning');
  });

  it('Is empty when there are no tags', () => {
    createComponent({
      props: { tagList: null },
    });

    expect(wrapper.text()).toBe('');
    expect(findBadge().exists()).toBe(false);
  });
});