summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_mr_widget/components/deployment_spec.js
blob: 059abc8b7fbf8daf5b27894f964ebdde47147779 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
import Vue from 'vue';
import deploymentComponent from '~/vue_merge_request_widget/components/deployment.vue';
import MRWidgetService from '~/vue_merge_request_widget/services/mr_widget_service';
import { getTimeago } from '~/lib/utils/datetime_utility';
import mountComponent from '../../helpers/vue_mount_component_helper';

describe('Deployment component', () => {
  const Component = Vue.extend(deploymentComponent);
  const deploymentMockData = {
    id: 15,
    name: 'review/diplo',
    url: '/root/review-apps/environments/15',
    stop_url: '/root/review-apps/environments/15/stop',
    metrics_url: '/root/review-apps/environments/15/deployments/1/metrics',
    metrics_monitoring_url: '/root/review-apps/environments/15/metrics',
    external_url: 'http://gitlab.com.',
    external_url_formatted: 'gitlab',
    deployed_at: '2017-03-22T22:44:42.258Z',
    deployed_at_formatted: 'Mar 22, 2017 10:44pm',
    changes: [
      {
        path: 'index.html',
        external_url: 'http://root-master-patch-91341.volatile-watch.surge.sh/index.html',
      },
      {
        path: 'imgs/gallery.html',
        external_url: 'http://root-master-patch-91341.volatile-watch.surge.sh/imgs/gallery.html',
      },
      {
        path: 'about/',
        external_url: 'http://root-master-patch-91341.volatile-watch.surge.sh/about/',
      },
    ],
  };

  let vm;

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

  describe('', () => {
    beforeEach(() => {
      vm = mountComponent(Component, { deployment: { ...deploymentMockData } });
    });

    describe('deployTimeago', () => {
      it('return formatted date', () => {
        const readable = getTimeago().format(deploymentMockData.deployed_at);

        expect(vm.deployTimeago).toEqual(readable);
      });
    });

    describe('hasExternalUrls', () => {
      it('should return true', () => {
        expect(vm.hasExternalUrls).toEqual(true);
      });

      it('should return false when deployment has no external_url_formatted', () => {
        vm.deployment.external_url_formatted = null;

        expect(vm.hasExternalUrls).toEqual(false);
      });

      it('should return false when deployment has no external_url', () => {
        vm.deployment.external_url = null;

        expect(vm.hasExternalUrls).toEqual(false);
      });
    });

    describe('hasDeploymentTime', () => {
      it('should return true', () => {
        expect(vm.hasDeploymentTime).toEqual(true);
      });

      it('should return false when deployment has no deployed_at', () => {
        vm.deployment.deployed_at = null;

        expect(vm.hasDeploymentTime).toEqual(false);
      });

      it('should return false when deployment has no deployed_at_formatted', () => {
        vm.deployment.deployed_at_formatted = null;

        expect(vm.hasDeploymentTime).toEqual(false);
      });
    });

    describe('hasDeploymentMeta', () => {
      it('should return true', () => {
        expect(vm.hasDeploymentMeta).toEqual(true);
      });

      it('should return false when deployment has no url', () => {
        vm.deployment.url = null;

        expect(vm.hasDeploymentMeta).toEqual(false);
      });

      it('should return false when deployment has no name', () => {
        vm.deployment.name = null;

        expect(vm.hasDeploymentMeta).toEqual(false);
      });
    });

    describe('stopEnvironment', () => {
      const url = '/foo/bar';
      const returnPromise = () =>
        new Promise(resolve => {
          resolve({
            data: {
              redirect_url: url,
            },
          });
        });
      const mockStopEnvironment = () => {
        vm.stopEnvironment(deploymentMockData);
        return vm;
      };

      it('should show a confirm dialog and call service.stopEnvironment when confirmed', done => {
        spyOn(window, 'confirm').and.returnValue(true);
        spyOn(MRWidgetService, 'stopEnvironment').and.returnValue(returnPromise(true));
        const visitUrl = spyOnDependency(deploymentComponent, 'visitUrl').and.returnValue(true);
        vm = mockStopEnvironment();

        expect(window.confirm).toHaveBeenCalled();
        expect(MRWidgetService.stopEnvironment).toHaveBeenCalledWith(deploymentMockData.stop_url);
        setTimeout(() => {
          expect(visitUrl).toHaveBeenCalledWith(url);
          done();
        }, 333);
      });

      it('should show a confirm dialog but should not work if the dialog is rejected', () => {
        spyOn(window, 'confirm').and.returnValue(false);
        spyOn(MRWidgetService, 'stopEnvironment').and.returnValue(returnPromise(false));
        vm = mockStopEnvironment();

        expect(window.confirm).toHaveBeenCalled();
        expect(MRWidgetService.stopEnvironment).not.toHaveBeenCalled();
      });
    });

    it('renders deployment name', () => {
      expect(vm.$el.querySelector('.js-deploy-meta').getAttribute('href')).toEqual(
        deploymentMockData.url,
      );

      expect(vm.$el.querySelector('.js-deploy-meta').innerText).toContain(deploymentMockData.name);
    });

    it('renders external URL', () => {
      expect(vm.$el.querySelector('.js-deploy-url').getAttribute('href')).toEqual(
        deploymentMockData.external_url,
      );

      expect(vm.$el.querySelector('.js-deploy-url').innerText).toContain('View app');
    });

    it('renders stop button', () => {
      expect(vm.$el.querySelector('.btn')).not.toBeNull();
    });

    it('renders deployment time', () => {
      expect(vm.$el.querySelector('.js-deploy-time').innerText).toContain(vm.deployTimeago);
    });

    it('renders metrics component', () => {
      expect(vm.$el.querySelector('.js-mr-memory-usage')).not.toBeNull();
    });
  });

  describe('with `features.ciEnvironmentsStatusChanges` enabled', () => {
    beforeEach(() => {
      window.gon = window.gon || {};
      window.gon.features = window.gon.features || {};
      window.gon.features.ciEnvironmentsStatusChanges = true;
      vm = mountComponent(Component, { deployment: { ...deploymentMockData } });
    });

    afterEach(() => {
      window.gon.features = {};
    });

    it('renders dropdown with changes', () => {
      expect(vm.$el.querySelector('.js-mr-wigdet-deployment-dropdown')).not.toBeNull();
      expect(vm.$el.querySelector('.js-deploy-url-feature-flag')).toBeNull();
    });
  });

  describe('with `features.ciEnvironmentsStatusChanges` disabled', () => {
    beforeEach(() => {
      window.gon = window.gon || {};
      window.gon.features = window.gon.features || {};
      window.gon.features.ciEnvironmentsStatusChanges = false;

      vm = mountComponent(Component, { deployment: { ...deploymentMockData } });
    });

    afterEach(() => {
      delete window.gon.features.ciEnvironmentsStatusChanges;
    });

    it('renders the old link to the review app', () => {
      expect(vm.$el.querySelector('.js-mr-wigdet-deployment-dropdown')).toBeNull();
      expect(vm.$el.querySelector('.js-deploy-url-feature-flag')).not.toBeNull();
    });
  });

  describe('without changes', () => {
    beforeEach(() => {
      window.gon = window.gon || {};
      window.gon.features = window.gon.features || {};
      window.gon.features.ciEnvironmentsStatusChanges = true;
      delete deploymentMockData.changes;

      vm = mountComponent(Component, { deployment: { ...deploymentMockData } });
    });

    afterEach(() => {
      delete window.gon.features.ciEnvironmentsStatusChanges;
    });

    it('renders the link to the review app without dropdown', () => {
      expect(vm.$el.querySelector('.js-mr-wigdet-deployment-dropdown')).toBeNull();
      expect(vm.$el.querySelector('.js-deploy-url-feature-flag')).not.toBeNull();
    });
  })

  describe('deployment status', () => {
    describe('running', () => {
      beforeEach(() => {
        vm = mountComponent(Component, {
          deployment: Object.assign({}, deploymentMockData, { status: 'running' }),
        });
      });

      it('renders information about running deployment', () => {
        expect(vm.$el.querySelector('.js-deployment-info').textContent).toContain('Deploying to');
      });
    });

    describe('success', () => {
      beforeEach(() => {
        vm = mountComponent(Component, {
          deployment: Object.assign({}, deploymentMockData, { status: 'success' }),
        });
      });

      it('renders information about finished deployment', () => {
        expect(vm.$el.querySelector('.js-deployment-info').textContent).toContain('Deployed to');
      });
    });

    describe('failed', () => {
      beforeEach(() => {
        vm = mountComponent(Component, {
          deployment: Object.assign({}, deploymentMockData, { status: 'failed' }),
        });
      });

      it('renders information about finished deployment', () => {
        expect(vm.$el.querySelector('.js-deployment-info').textContent).toContain(
          'Failed to deploy to',
        );
      });
    });
  });
});