2018-05-09 12:01:36 +05:30
|
|
|
import Vue from 'vue';
|
2018-11-08 19:23:39 +05:30
|
|
|
import MockAdapter from 'axios-mock-adapter';
|
|
|
|
import axios from '~/lib/utils/axios_utils';
|
2018-05-09 12:01:36 +05:30
|
|
|
import store from '~/ide/stores';
|
2018-10-15 14:42:47 +05:30
|
|
|
import * as actions from '~/ide/stores/actions/file';
|
|
|
|
import * as types from '~/ide/stores/mutation_types';
|
2018-05-09 12:01:36 +05:30
|
|
|
import service from '~/ide/services';
|
|
|
|
import router from '~/ide/ide_router';
|
|
|
|
import eventHub from '~/ide/eventhub';
|
|
|
|
import { file, resetStore } from '../../helpers';
|
2018-10-15 14:42:47 +05:30
|
|
|
import testAction from '../../../helpers/vuex_action_helper';
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
describe('IDE store file actions', () => {
|
2018-11-08 19:23:39 +05:30
|
|
|
let mock;
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
beforeEach(() => {
|
2018-11-08 19:23:39 +05:30
|
|
|
mock = new MockAdapter(axios);
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
spyOn(router, 'push');
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
2018-11-08 19:23:39 +05:30
|
|
|
mock.restore();
|
2018-05-09 12:01:36 +05:30
|
|
|
resetStore(store);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('closeFile', () => {
|
|
|
|
let localFile;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
localFile = file('testFile');
|
|
|
|
localFile.active = true;
|
|
|
|
localFile.opened = true;
|
|
|
|
localFile.parentTreeUrl = 'parentTreeUrl';
|
|
|
|
|
|
|
|
store.state.openFiles.push(localFile);
|
|
|
|
store.state.entries[localFile.path] = localFile;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('closes open files', done => {
|
|
|
|
store
|
|
|
|
.dispatch('closeFile', localFile)
|
|
|
|
.then(() => {
|
|
|
|
expect(localFile.opened).toBeFalsy();
|
|
|
|
expect(localFile.active).toBeFalsy();
|
|
|
|
expect(store.state.openFiles.length).toBe(0);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('closes file even if file has changes', done => {
|
|
|
|
store.state.changedFiles.push(localFile);
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('closeFile', localFile)
|
|
|
|
.then(Vue.nextTick)
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.openFiles.length).toBe(0);
|
|
|
|
expect(store.state.changedFiles.length).toBe(1);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('closes file & opens next available file', done => {
|
|
|
|
const f = {
|
|
|
|
...file('newOpenFile'),
|
|
|
|
url: '/newOpenFile',
|
|
|
|
};
|
|
|
|
|
|
|
|
store.state.openFiles.push(f);
|
|
|
|
store.state.entries[f.path] = f;
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('closeFile', localFile)
|
|
|
|
.then(Vue.nextTick)
|
|
|
|
.then(() => {
|
|
|
|
expect(router.push).toHaveBeenCalledWith(`/project${f.url}`);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes file if it pending', done => {
|
|
|
|
store.state.openFiles.push({
|
|
|
|
...localFile,
|
|
|
|
pending: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('closeFile', localFile)
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.openFiles.length).toBe(0);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('setFileActive', () => {
|
|
|
|
let localFile;
|
|
|
|
let scrollToTabSpy;
|
|
|
|
let oldScrollToTab;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
scrollToTabSpy = jasmine.createSpy('scrollToTab');
|
|
|
|
oldScrollToTab = store._actions.scrollToTab; // eslint-disable-line
|
|
|
|
store._actions.scrollToTab = [scrollToTabSpy]; // eslint-disable-line
|
|
|
|
|
|
|
|
localFile = file('setThisActive');
|
|
|
|
|
|
|
|
store.state.entries[localFile.path] = localFile;
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
store._actions.scrollToTab = oldScrollToTab; // eslint-disable-line
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls scrollToTab', done => {
|
|
|
|
store
|
|
|
|
.dispatch('setFileActive', localFile.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(scrollToTabSpy).toHaveBeenCalled();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets the file active', done => {
|
|
|
|
store
|
|
|
|
.dispatch('setFileActive', localFile.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(localFile.active).toBeTruthy();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns early if file is already active', done => {
|
|
|
|
localFile.active = true;
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('setFileActive', localFile.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(scrollToTabSpy).not.toHaveBeenCalled();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets current active file to not active', done => {
|
|
|
|
const f = file('newActive');
|
|
|
|
store.state.entries[f.path] = f;
|
|
|
|
localFile.active = true;
|
|
|
|
store.state.openFiles.push(localFile);
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('setFileActive', f.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(localFile.active).toBeFalsy();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('resets location.hash for line highlighting', done => {
|
2018-11-08 19:23:39 +05:30
|
|
|
window.location.hash = 'test';
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('setFileActive', localFile.path)
|
|
|
|
.then(() => {
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(window.location.hash).not.toBe('test');
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getFileData', () => {
|
|
|
|
let localFile;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2018-11-08 19:23:39 +05:30
|
|
|
spyOn(service, 'getFileData').and.callThrough();
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
localFile = file(`newCreate-${Math.random()}`);
|
2018-11-08 19:23:39 +05:30
|
|
|
localFile.url = `${gl.TEST_HOST}/getFileDataURL`;
|
2018-05-09 12:01:36 +05:30
|
|
|
store.state.entries[localFile.path] = localFile;
|
|
|
|
});
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
describe('success', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
mock.onGet(`${gl.TEST_HOST}/getFileDataURL`).replyOnce(
|
|
|
|
200,
|
|
|
|
{
|
|
|
|
blame_path: 'blame_path',
|
|
|
|
commits_path: 'commits_path',
|
|
|
|
permalink: 'permalink',
|
|
|
|
raw_path: 'raw_path',
|
|
|
|
binary: false,
|
|
|
|
html: '123',
|
|
|
|
render_error: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'page-title': 'testing getFileData',
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('calls the service', done => {
|
|
|
|
store
|
|
|
|
.dispatch('getFileData', { path: localFile.path })
|
|
|
|
.then(() => {
|
|
|
|
expect(service.getFileData).toHaveBeenCalledWith(`${gl.TEST_HOST}/getFileDataURL`);
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('sets the file data', done => {
|
|
|
|
store
|
|
|
|
.dispatch('getFileData', { path: localFile.path })
|
|
|
|
.then(() => {
|
|
|
|
expect(localFile.blamePath).toBe('blame_path');
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('sets document title', done => {
|
|
|
|
store
|
|
|
|
.dispatch('getFileData', { path: localFile.path })
|
|
|
|
.then(() => {
|
|
|
|
expect(document.title).toBe('testing getFileData');
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('sets the file as active', done => {
|
|
|
|
store
|
|
|
|
.dispatch('getFileData', { path: localFile.path })
|
|
|
|
.then(() => {
|
|
|
|
expect(localFile.active).toBeTruthy();
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('sets the file not as active if we pass makeFileActive false', done => {
|
|
|
|
store
|
|
|
|
.dispatch('getFileData', { path: localFile.path, makeFileActive: false })
|
|
|
|
.then(() => {
|
|
|
|
expect(localFile.active).toBeFalsy();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds the file to open files', done => {
|
|
|
|
store
|
|
|
|
.dispatch('getFileData', { path: localFile.path })
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.openFiles.length).toBe(1);
|
|
|
|
expect(store.state.openFiles[0].name).toBe(localFile.name);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
describe('error', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
mock.onGet(`${gl.TEST_HOST}/getFileDataURL`).networkError();
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('dispatches error action', done => {
|
|
|
|
const dispatch = jasmine.createSpy('dispatch');
|
|
|
|
|
|
|
|
actions
|
|
|
|
.getFileData({ state: store.state, commit() {}, dispatch }, { path: localFile.path })
|
|
|
|
.then(() => {
|
|
|
|
expect(dispatch).toHaveBeenCalledWith('setErrorMessage', {
|
|
|
|
text: 'An error occured whilst loading the file.',
|
|
|
|
action: jasmine.any(Function),
|
|
|
|
actionText: 'Please try again',
|
|
|
|
actionPayload: {
|
|
|
|
path: localFile.path,
|
|
|
|
makeFileActive: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getRawFileData', () => {
|
|
|
|
let tmpFile;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2018-11-08 19:23:39 +05:30
|
|
|
spyOn(service, 'getRawFileData').and.callThrough();
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
tmpFile = file('tmpFile');
|
|
|
|
store.state.entries[tmpFile.path] = tmpFile;
|
|
|
|
});
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
describe('success', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
mock.onGet(/(.*)/).replyOnce(200, 'raw');
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('calls getRawFileData service method', done => {
|
|
|
|
store
|
|
|
|
.dispatch('getRawFileData', { path: tmpFile.path })
|
|
|
|
.then(() => {
|
|
|
|
expect(service.getRawFileData).toHaveBeenCalledWith(tmpFile);
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('updates file raw data', done => {
|
|
|
|
store
|
|
|
|
.dispatch('getRawFileData', { path: tmpFile.path })
|
|
|
|
.then(() => {
|
|
|
|
expect(tmpFile.raw).toBe('raw');
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls also getBaseRawFileData service method', done => {
|
|
|
|
spyOn(service, 'getBaseRawFileData').and.returnValue(Promise.resolve('baseraw'));
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
store.state.currentProjectId = 'gitlab-org/gitlab-ce';
|
|
|
|
store.state.currentMergeRequestId = '1';
|
|
|
|
store.state.projects = {
|
|
|
|
'gitlab-org/gitlab-ce': {
|
|
|
|
mergeRequests: {
|
|
|
|
1: {
|
|
|
|
baseCommitSha: 'SHA',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
tmpFile.mrChange = { new_file: false };
|
|
|
|
|
|
|
|
store
|
2018-11-18 11:00:15 +05:30
|
|
|
.dispatch('getRawFileData', { path: tmpFile.path })
|
2018-11-08 19:23:39 +05:30
|
|
|
.then(() => {
|
|
|
|
expect(service.getBaseRawFileData).toHaveBeenCalledWith(tmpFile, 'SHA');
|
|
|
|
expect(tmpFile.baseRaw).toBe('baseraw');
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
describe('return JSON', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
mock.onGet(/(.*)/).replyOnce(200, JSON.stringify({ test: '123' }));
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('does not parse returned JSON', done => {
|
|
|
|
store
|
|
|
|
.dispatch('getRawFileData', { path: tmpFile.path })
|
|
|
|
.then(() => {
|
|
|
|
expect(tmpFile.raw).toEqual('{"test":"123"}');
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
describe('error', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
mock.onGet(/(.*)/).networkError();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('dispatches error action', done => {
|
|
|
|
const dispatch = jasmine.createSpy('dispatch');
|
|
|
|
|
|
|
|
actions
|
2018-11-18 11:00:15 +05:30
|
|
|
.getRawFileData({ state: store.state, commit() {}, dispatch }, { path: tmpFile.path })
|
2018-11-08 19:23:39 +05:30
|
|
|
.then(done.fail)
|
|
|
|
.catch(() => {
|
|
|
|
expect(dispatch).toHaveBeenCalledWith('setErrorMessage', {
|
|
|
|
text: 'An error occured whilst loading the file content.',
|
|
|
|
action: jasmine.any(Function),
|
|
|
|
actionText: 'Please try again',
|
|
|
|
actionPayload: {
|
|
|
|
path: tmpFile.path,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('changeFileContent', () => {
|
|
|
|
let tmpFile;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
tmpFile = file('tmpFile');
|
|
|
|
store.state.entries[tmpFile.path] = tmpFile;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('updates file content', done => {
|
|
|
|
store
|
|
|
|
.dispatch('changeFileContent', {
|
|
|
|
path: tmpFile.path,
|
|
|
|
content: 'content',
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
expect(tmpFile.content).toBe('content');
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds file into changedFiles array', done => {
|
|
|
|
store
|
|
|
|
.dispatch('changeFileContent', {
|
|
|
|
path: tmpFile.path,
|
|
|
|
content: 'content',
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.changedFiles.length).toBe(1);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds file once into changedFiles array', done => {
|
|
|
|
store
|
|
|
|
.dispatch('changeFileContent', {
|
|
|
|
path: tmpFile.path,
|
|
|
|
content: 'content',
|
|
|
|
})
|
|
|
|
.then(() =>
|
|
|
|
store.dispatch('changeFileContent', {
|
|
|
|
path: tmpFile.path,
|
|
|
|
content: 'content 123',
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.changedFiles.length).toBe(1);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes file from changedFiles array if not changed', done => {
|
|
|
|
store
|
|
|
|
.dispatch('changeFileContent', {
|
|
|
|
path: tmpFile.path,
|
|
|
|
content: 'content',
|
|
|
|
})
|
|
|
|
.then(() =>
|
|
|
|
store.dispatch('changeFileContent', {
|
|
|
|
path: tmpFile.path,
|
|
|
|
content: '',
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.changedFiles.length).toBe(0);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
it('bursts unused seal', done => {
|
|
|
|
store
|
|
|
|
.dispatch('changeFileContent', {
|
|
|
|
path: tmpFile.path,
|
|
|
|
content: 'content',
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.unusedSeal).toBe(false);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('discardFileChanges', () => {
|
|
|
|
let tmpFile;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
spyOn(eventHub, '$on');
|
2018-10-15 14:42:47 +05:30
|
|
|
spyOn(eventHub, '$emit');
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
tmpFile = file();
|
|
|
|
tmpFile.content = 'testing';
|
|
|
|
|
|
|
|
store.state.changedFiles.push(tmpFile);
|
|
|
|
store.state.entries[tmpFile.path] = tmpFile;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('resets file content', done => {
|
|
|
|
store
|
|
|
|
.dispatch('discardFileChanges', tmpFile.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(tmpFile.content).not.toBe('testing');
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes file from changedFiles array', done => {
|
|
|
|
store
|
|
|
|
.dispatch('discardFileChanges', tmpFile.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.changedFiles.length).toBe(0);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('closes temp file', done => {
|
|
|
|
tmpFile.tempFile = true;
|
|
|
|
tmpFile.opened = true;
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('discardFileChanges', tmpFile.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(tmpFile.opened).toBeFalsy();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not re-open a closed temp file', done => {
|
|
|
|
tmpFile.tempFile = true;
|
|
|
|
|
|
|
|
expect(tmpFile.opened).toBeFalsy();
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('discardFileChanges', tmpFile.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(tmpFile.opened).toBeFalsy();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
it('pushes route for active file', done => {
|
|
|
|
tmpFile.active = true;
|
|
|
|
store.state.openFiles.push(tmpFile);
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('discardFileChanges', tmpFile.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(router.push).toHaveBeenCalledWith(`/project${tmpFile.url}`);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('emits eventHub event to dispose cached model', done => {
|
|
|
|
store
|
|
|
|
.dispatch('discardFileChanges', tmpFile.path)
|
|
|
|
.then(() => {
|
|
|
|
expect(eventHub.$emit).toHaveBeenCalled();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('stageChange', () => {
|
|
|
|
it('calls STAGE_CHANGE with file path', done => {
|
|
|
|
testAction(
|
|
|
|
actions.stageChange,
|
|
|
|
'path',
|
|
|
|
store.state,
|
|
|
|
[
|
|
|
|
{ type: types.STAGE_CHANGE, payload: 'path' },
|
|
|
|
{ type: types.SET_LAST_COMMIT_MSG, payload: '' },
|
|
|
|
],
|
|
|
|
[],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('unstageChange', () => {
|
|
|
|
it('calls UNSTAGE_CHANGE with file path', done => {
|
|
|
|
testAction(
|
|
|
|
actions.unstageChange,
|
|
|
|
'path',
|
|
|
|
store.state,
|
2018-11-18 11:00:15 +05:30
|
|
|
[{ type: types.UNSTAGE_CHANGE, payload: 'path' }],
|
2018-10-15 14:42:47 +05:30
|
|
|
[],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('openPendingTab', () => {
|
|
|
|
let f;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
f = {
|
|
|
|
...file(),
|
|
|
|
projectId: '123',
|
|
|
|
};
|
|
|
|
|
|
|
|
store.state.entries[f.path] = f;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('makes file pending in openFiles', done => {
|
|
|
|
store
|
2018-10-15 14:42:47 +05:30
|
|
|
.dispatch('openPendingTab', { file: f, keyPrefix: 'pending' })
|
2018-05-09 12:01:36 +05:30
|
|
|
.then(() => {
|
|
|
|
expect(store.state.openFiles[0].pending).toBe(true);
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns true when opened', done => {
|
|
|
|
store
|
2018-10-15 14:42:47 +05:30
|
|
|
.dispatch('openPendingTab', { file: f, keyPrefix: 'pending' })
|
2018-05-09 12:01:36 +05:30
|
|
|
.then(added => {
|
|
|
|
expect(added).toBe(true);
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it('returns false when already opened', done => {
|
|
|
|
store.state.openFiles.push({
|
|
|
|
...f,
|
|
|
|
active: true,
|
|
|
|
key: `pending-${f.key}`,
|
|
|
|
});
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('openPendingTab', { file: f, keyPrefix: 'pending' })
|
|
|
|
.then(added => {
|
|
|
|
expect(added).toBe(false);
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
it('pushes router URL when added', done => {
|
|
|
|
store.state.currentBranchId = 'master';
|
|
|
|
|
|
|
|
store
|
2018-10-15 14:42:47 +05:30
|
|
|
.dispatch('openPendingTab', { file: f, keyPrefix: 'pending' })
|
2018-05-09 12:01:36 +05:30
|
|
|
.then(() => {
|
|
|
|
expect(router.push).toHaveBeenCalledWith('/project/123/tree/master/');
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('removePendingTab', () => {
|
|
|
|
let f;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
spyOn(eventHub, '$emit');
|
|
|
|
|
|
|
|
f = {
|
|
|
|
...file('pendingFile'),
|
|
|
|
pending: true,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes pending file from open files', done => {
|
|
|
|
store.state.openFiles.push(f);
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('removePendingTab', f)
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.openFiles.length).toBe(0);
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('emits event to dispose model', done => {
|
|
|
|
store
|
|
|
|
.dispatch('removePendingTab', f)
|
|
|
|
.then(() => {
|
|
|
|
expect(eventHub.$emit).toHaveBeenCalledWith(`editor.update.model.dispose.${f.key}`);
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|