import Vue from 'vue'; import '~/render_math'; import '~/render_gfm'; import issuableApp from '~/issue_show/components/app.vue'; import eventHub from '~/issue_show/event_hub'; import issueShowData from '../mock_data'; const issueShowInterceptor = data => (request, next) => { next(request.respondWith(JSON.stringify(data), { status: 200, headers: { 'POLL-INTERVAL': 1, }, })); }; describe('Issuable output', () => { document.body.innerHTML = ''; let vm; beforeEach(() => { const IssuableDescriptionComponent = Vue.extend(issuableApp); Vue.http.interceptors.push(issueShowInterceptor(issueShowData.initialRequest)); spyOn(eventHub, '$emit'); vm = new IssuableDescriptionComponent({ propsData: { canUpdate: true, canDestroy: true, canMove: true, endpoint: '/gitlab-org/gitlab-shell/issues/9/realtime_changes', issuableRef: '#1', initialTitle: '', initialDescriptionHtml: '', initialDescriptionText: '', markdownPreviewUrl: '/', markdownDocs: '/', projectsAutocompleteUrl: '/', isConfidential: false, }, }).$mount(); }); afterEach(() => { Vue.http.interceptors = _.without(Vue.http.interceptors, issueShowInterceptor); }); it('should render a title/description and update title/description on update', (done) => { setTimeout(() => { expect(document.querySelector('title').innerText).toContain('this is a title (#1)'); expect(vm.$el.querySelector('.title').innerHTML).toContain('

this is a title

'); expect(vm.$el.querySelector('.wiki').innerHTML).toContain('

this is a description!

'); expect(vm.$el.querySelector('.js-task-list-field').value).toContain('this is a description'); Vue.http.interceptors.push(issueShowInterceptor(issueShowData.secondRequest)); setTimeout(() => { expect(document.querySelector('title').innerText).toContain('2 (#1)'); expect(vm.$el.querySelector('.title').innerHTML).toContain('

2

'); expect(vm.$el.querySelector('.wiki').innerHTML).toContain('

42

'); expect(vm.$el.querySelector('.js-task-list-field').value).toContain('42'); done(); }); }); }); it('shows actions if permissions are correct', (done) => { vm.showForm = true; Vue.nextTick(() => { expect( vm.$el.querySelector('.btn'), ).not.toBeNull(); done(); }); }); it('does not show actions if permissions are incorrect', (done) => { vm.showForm = true; vm.canUpdate = false; Vue.nextTick(() => { expect( vm.$el.querySelector('.btn'), ).toBeNull(); done(); }); }); it('does not update formState if form is already open', (done) => { vm.openForm(); vm.state.titleText = 'testing 123'; vm.openForm(); Vue.nextTick(() => { expect( vm.store.formState.title, ).not.toBe('testing 123'); done(); }); }); describe('updateIssuable', () => { it('reloads the page if the confidential status has changed', (done) => { spyOn(gl.utils, 'visitUrl'); spyOn(vm.service, 'updateIssuable').and.callFake(() => new Promise((resolve) => { resolve({ json() { return { confidential: true, path: location.pathname, }; }, }); })); vm.updateIssuable(); setTimeout(() => { expect( gl.utils.visitUrl, ).toHaveBeenCalledWith(location.pathname); done(); }); }); it('correctly updates issuable data', (done) => { spyOn(vm.service, 'updateIssuable').and.callFake(() => new Promise((resolve) => { resolve(); })); vm.updateIssuable(); setTimeout(() => { expect( vm.service.updateIssuable, ).toHaveBeenCalledWith(vm.formState); expect( eventHub.$emit, ).toHaveBeenCalledWith('close.form'); done(); }); }); it('does not redirect if issue has not moved', (done) => { spyOn(gl.utils, 'visitUrl'); spyOn(vm.service, 'updateIssuable').and.callFake(() => new Promise((resolve) => { resolve({ json() { return { path: location.pathname, confidential: vm.isConfidential, }; }, }); })); vm.updateIssuable(); setTimeout(() => { expect( gl.utils.visitUrl, ).not.toHaveBeenCalled(); done(); }); }); it('redirects if issue is moved', (done) => { spyOn(gl.utils, 'visitUrl'); spyOn(vm.service, 'updateIssuable').and.callFake(() => new Promise((resolve) => { resolve({ json() { return { path: '/testing-issue-move', confidential: vm.isConfidential, }; }, }); })); vm.updateIssuable(); setTimeout(() => { expect( gl.utils.visitUrl, ).toHaveBeenCalledWith('/testing-issue-move'); done(); }); }); it('closes form on error', (done) => { spyOn(window, 'Flash').and.callThrough(); spyOn(vm.service, 'updateIssuable').and.callFake(() => new Promise((resolve, reject) => { reject(); })); vm.updateIssuable(); setTimeout(() => { expect( eventHub.$emit, ).toHaveBeenCalledWith('close.form'); expect( window.Flash, ).toHaveBeenCalledWith('Error updating issue'); done(); }); }); }); describe('deleteIssuable', () => { it('changes URL when deleted', (done) => { spyOn(gl.utils, 'visitUrl'); spyOn(vm.service, 'deleteIssuable').and.callFake(() => new Promise((resolve) => { resolve({ json() { return { path: '/test' }; }, }); })); vm.deleteIssuable(); setTimeout(() => { expect( gl.utils.visitUrl, ).toHaveBeenCalledWith('/test'); done(); }); }); it('stops polling when deleteing', (done) => { spyOn(gl.utils, 'visitUrl'); spyOn(vm.poll, 'stop'); spyOn(vm.service, 'deleteIssuable').and.callFake(() => new Promise((resolve) => { resolve({ json() { return { path: '/test' }; }, }); })); vm.deleteIssuable(); setTimeout(() => { expect( vm.poll.stop, ).toHaveBeenCalledWith(); done(); }); }); it('closes form on error', (done) => { spyOn(window, 'Flash').and.callThrough(); spyOn(vm.service, 'deleteIssuable').and.callFake(() => new Promise((resolve, reject) => { reject(); })); vm.deleteIssuable(); setTimeout(() => { expect( eventHub.$emit, ).toHaveBeenCalledWith('close.form'); expect( window.Flash, ).toHaveBeenCalledWith('Error deleting issue'); done(); }); }); }); describe('open form', () => { it('shows locked warning if form is open & data is different', (done) => { Vue.http.interceptors.push(issueShowInterceptor(issueShowData.initialRequest)); Vue.nextTick() .then(() => new Promise((resolve) => { setTimeout(resolve); })) .then(() => { vm.openForm(); Vue.http.interceptors.push(issueShowInterceptor(issueShowData.secondRequest)); return new Promise((resolve) => { setTimeout(resolve); }); }) .then(() => { expect( vm.formState.lockedWarningVisible, ).toBeTruthy(); expect( vm.$el.querySelector('.alert'), ).not.toBeNull(); done(); }) .catch(done.fail); }); }); });