summaryrefslogtreecommitdiff
path: root/spec/javascripts/jobs/components/unmet_prerequisites_block_spec.js
blob: 68fcb32121485fb064e5053390e8fc083b8a74fc (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
import Vue from 'vue';
import component from '~/jobs/components/unmet_prerequisites_block.vue';
import mountComponent from '../../helpers/vue_mount_component_helper';

describe('Unmet Prerequisites Block Job component', () => {
  const Component = Vue.extend(component);
  let vm;
  const helpPath = '/user/project/clusters/index.html#troubleshooting-failed-deployment-jobs';

  beforeEach(() => {
    vm = mountComponent(Component, {
      hasNoRunnersForProject: true,
      helpPath,
    });
  });

  afterEach(() => {
    vm.$destroy();
  });

  it('renders an alert with the correct message', () => {
    const container = vm.$el.querySelector('.js-failed-unmet-prerequisites');
    const alertMessage =
      'This job failed because the necessary resources were not successfully created.';

    expect(container).not.toBeNull();
    expect(container.innerHTML).toContain(alertMessage);
  });

  it('renders link to help page', () => {
    const helpLink = vm.$el.querySelector('.js-help-path');

    expect(helpLink).not.toBeNull();
    expect(helpLink.innerHTML).toContain('More information');
    expect(helpLink.getAttribute('href')).toEqual(helpPath);
  });
});