summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/deployment_instance/deployment_instance_spec.js
blob: b812ced72c943e830b98d932ec623a9b27283b4d (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
93
94
95
96
97
98
99
100
101
102
103
import { shallowMount } from '@vue/test-utils';
import DeployBoardInstance from '~/vue_shared/components/deployment_instance.vue';
import { folder } from './mock_data';

describe('Deploy Board Instance', () => {
  let wrapper;

  const createComponent = (props = {}) =>
    shallowMount(DeployBoardInstance, {
      propsData: {
        status: 'succeeded',
        ...props,
      },
    });

  describe('as a non-canary deployment', () => {
    afterEach(() => {
      wrapper.destroy();
    });

    it('should render a div with the correct css status and tooltip data', () => {
      wrapper = createComponent({
        logsPath: folder.logs_path,
        tooltipText: 'This is a pod',
      });

      expect(wrapper.classes('deployment-instance-succeeded')).toBe(true);
      expect(wrapper.attributes('title')).toEqual('This is a pod');
    });

    it('should render a div without tooltip data', (done) => {
      wrapper = createComponent({
        status: 'deploying',
        tooltipText: '',
      });

      wrapper.vm.$nextTick(() => {
        expect(wrapper.classes('deployment-instance-deploying')).toBe(true);
        expect(wrapper.attributes('title')).toEqual('');
        done();
      });
    });

    it('should have a log path computed with a pod name as a parameter', () => {
      wrapper = createComponent({
        logsPath: folder.logs_path,
        podName: 'tanuki-1',
      });

      expect(wrapper.vm.computedLogPath).toEqual(
        '/root/review-app/-/logs?environment_name=foo&pod_name=tanuki-1',
      );
    });
  });

  describe('as a canary deployment', () => {
    afterEach(() => {
      wrapper.destroy();
    });

    it('should render a div with canary class when stable prop is provided as false', (done) => {
      wrapper = createComponent({
        stable: false,
      });

      wrapper.vm.$nextTick(() => {
        expect(wrapper.classes('deployment-instance-canary')).toBe(true);
        done();
      });
    });
  });

  describe('as a legend item', () => {
    afterEach(() => {
      wrapper.destroy();
    });

    it('should not be a link without a logsPath prop', (done) => {
      wrapper = createComponent({
        stable: false,
        logsPath: '',
      });

      wrapper.vm.$nextTick(() => {
        expect(wrapper.vm.computedLogPath).toBeNull();
        expect(wrapper.vm.isLink).toBeFalsy();
        done();
      });
    });

    it('should render a link without href if path is not passed', () => {
      wrapper = createComponent();

      expect(wrapper.attributes('href')).toBeUndefined();
    });

    it('should not have a tooltip', () => {
      wrapper = createComponent();

      expect(wrapper.attributes('title')).toEqual('');
    });
  });
});