2017-03-13 20:58:26 -04:00
|
|
|
import Vue from 'vue';
|
2017-04-20 07:48:54 -04:00
|
|
|
import rollbackComp from '~/environments/components/environment_rollback.vue';
|
2016-12-29 16:42:48 -05:00
|
|
|
|
2016-11-10 13:58:35 -05:00
|
|
|
describe('Rollback Component', () => {
|
|
|
|
const retryURL = 'https://gitlab.com/retry';
|
2017-03-13 20:58:26 -04:00
|
|
|
let RollbackComponent;
|
2016-11-10 13:58:35 -05:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2017-03-13 20:58:26 -04:00
|
|
|
RollbackComponent = Vue.extend(rollbackComp);
|
2016-11-10 13:58:35 -05:00
|
|
|
});
|
|
|
|
|
2017-03-13 20:58:26 -04:00
|
|
|
it('Should render Re-deploy label when isLastDeployment is true', () => {
|
2017-02-09 06:52:22 -05:00
|
|
|
const component = new RollbackComponent({
|
2016-11-10 13:58:35 -05:00
|
|
|
el: document.querySelector('.test-dom-element'),
|
|
|
|
propsData: {
|
2016-12-08 06:54:08 -05:00
|
|
|
retryUrl: retryURL,
|
|
|
|
isLastDeployment: true,
|
2016-11-10 13:58:35 -05:00
|
|
|
},
|
2017-03-13 20:58:26 -04:00
|
|
|
}).$mount();
|
2016-11-10 13:58:35 -05:00
|
|
|
|
2017-03-13 20:58:26 -04:00
|
|
|
expect(component.$el.querySelector('span').textContent).toContain('Re-deploy');
|
2016-11-10 13:58:35 -05:00
|
|
|
});
|
|
|
|
|
2017-03-13 20:58:26 -04:00
|
|
|
it('Should render Rollback label when isLastDeployment is false', () => {
|
2017-02-09 06:52:22 -05:00
|
|
|
const component = new RollbackComponent({
|
2016-11-10 13:58:35 -05:00
|
|
|
el: document.querySelector('.test-dom-element'),
|
|
|
|
propsData: {
|
2016-12-08 06:54:08 -05:00
|
|
|
retryUrl: retryURL,
|
2017-03-13 20:58:26 -04:00
|
|
|
isLastDeployment: false,
|
2016-11-10 13:58:35 -05:00
|
|
|
},
|
2017-03-13 20:58:26 -04:00
|
|
|
}).$mount();
|
2016-11-10 13:58:35 -05:00
|
|
|
|
2017-03-13 20:58:26 -04:00
|
|
|
expect(component.$el.querySelector('span').textContent).toContain('Rollback');
|
2016-11-10 13:58:35 -05:00
|
|
|
});
|
|
|
|
});
|