summaryrefslogtreecommitdiff
path: root/spec/javascripts/environments/environment_rollback_spec.js
blob: 4a596baad09cfdf52157b11626cfc6945d5d46c9 (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
const RollbackComponent = require('~/environments/components/environment_rollback');

describe('Rollback Component', () => {
  preloadFixtures('static/environments/element.html.raw');

  const retryURL = 'https://gitlab.com/retry';

  beforeEach(() => {
    loadFixtures('static/environments/element.html.raw');
  });

  it('Should link to the provided retryUrl', () => {
    const component = new RollbackComponent({
      el: document.querySelector('.test-dom-element'),
      propsData: {
        retryUrl: retryURL,
        isLastDeployment: true,
      },
    });

    expect(component.$el.getAttribute('href')).toEqual(retryURL);
  });

  it('Should render Re-deploy label when isLastDeployment is true', () => {
    const component = new RollbackComponent({
      el: document.querySelector('.test-dom-element'),
      propsData: {
        retryUrl: retryURL,
        isLastDeployment: true,
      },
    });

    expect(component.$el.querySelector('span').textContent).toContain('Re-deploy');
  });

  it('Should render Rollback label when isLastDeployment is false', () => {
    const component = new RollbackComponent({
      el: document.querySelector('.test-dom-element'),
      propsData: {
        retryUrl: retryURL,
        isLastDeployment: false,
      },
    });

    expect(component.$el.querySelector('span').textContent).toContain('Rollback');
  });
});