summaryrefslogtreecommitdiff
path: root/spec/frontend/runner/components/cells/runner_type_cell_spec.js
blob: 48958a282fcd48bd9c8354eb07ec8bb8923f4ac0 (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
import { GlBadge } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
import RunnerTypeCell from '~/runner/components/cells/runner_type_cell.vue';
import { INSTANCE_TYPE } from '~/runner/constants';

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

  const findBadges = () => wrapper.findAllComponents(GlBadge);

  const createComponent = ({ runner = {} } = {}) => {
    wrapper = mount(RunnerTypeCell, {
      propsData: {
        runner: {
          runnerType: INSTANCE_TYPE,
          active: true,
          locked: false,
          ...runner,
        },
      },
    });
  };

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

  it('Displays the runner type', () => {
    createComponent();

    expect(findBadges()).toHaveLength(1);
    expect(findBadges().at(0).text()).toBe('shared');
  });

  it('Displays locked and paused states', () => {
    createComponent({
      runner: {
        active: false,
        locked: true,
      },
    });

    expect(findBadges()).toHaveLength(3);
    expect(findBadges().at(0).text()).toBe('shared');
    expect(findBadges().at(1).text()).toBe('locked');
    expect(findBadges().at(2).text()).toBe('paused');
  });
});