2018-10-15 14:42:47 +05:30
|
|
|
import actions, {
|
|
|
|
stageAllChanges,
|
|
|
|
unstageAllChanges,
|
|
|
|
toggleFileFinder,
|
|
|
|
setCurrentBranchId,
|
|
|
|
setEmptyStateSvgs,
|
|
|
|
updateActivityBarView,
|
|
|
|
updateTempFlagForEntry,
|
2018-11-08 19:23:39 +05:30
|
|
|
setErrorMessage,
|
2018-11-18 11:00:15 +05:30
|
|
|
deleteEntry,
|
|
|
|
renameEntry,
|
2018-10-15 14:42:47 +05:30
|
|
|
} from '~/ide/stores/actions';
|
2018-05-09 12:01:36 +05:30
|
|
|
import store from '~/ide/stores';
|
2018-10-15 14:42:47 +05:30
|
|
|
import * as types from '~/ide/stores/mutation_types';
|
2018-05-09 12:01:36 +05:30
|
|
|
import router from '~/ide/ide_router';
|
|
|
|
import { resetStore, file } 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('Multi-file store actions', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
spyOn(router, 'push');
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
resetStore(store);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('redirectToUrl', () => {
|
|
|
|
it('calls visitUrl', done => {
|
2018-10-15 14:42:47 +05:30
|
|
|
const visitUrl = spyOnDependency(actions, 'visitUrl');
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('redirectToUrl', 'test')
|
|
|
|
.then(() => {
|
2018-10-15 14:42:47 +05:30
|
|
|
expect(visitUrl).toHaveBeenCalledWith('test');
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('setInitialData', () => {
|
|
|
|
it('commits initial data', done => {
|
|
|
|
store
|
|
|
|
.dispatch('setInitialData', { canCommit: true })
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.canCommit).toBeTruthy();
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('discardAllChanges', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
const f = file('discardAll');
|
|
|
|
f.changed = true;
|
|
|
|
|
|
|
|
store.state.openFiles.push(f);
|
|
|
|
store.state.changedFiles.push(f);
|
|
|
|
store.state.entries[f.path] = f;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('discards changes in file', done => {
|
|
|
|
store
|
|
|
|
.dispatch('discardAllChanges')
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.openFiles.changed).toBeFalsy();
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes all files from changedFiles state', done => {
|
|
|
|
store
|
|
|
|
.dispatch('discardAllChanges')
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.changedFiles.length).toBe(0);
|
|
|
|
expect(store.state.openFiles.length).toBe(1);
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('closeAllFiles', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
const f = file('closeAll');
|
|
|
|
store.state.openFiles.push(f);
|
|
|
|
store.state.openFiles[0].opened = true;
|
|
|
|
store.state.entries[f.path] = f;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('closes all open files', done => {
|
|
|
|
store
|
|
|
|
.dispatch('closeAllFiles')
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.openFiles.length).toBe(0);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('createTempEntry', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
document.body.innerHTML += '<div class="flash-container"></div>';
|
|
|
|
|
|
|
|
store.state.currentProjectId = 'abcproject';
|
|
|
|
store.state.currentBranchId = 'mybranch';
|
|
|
|
|
|
|
|
store.state.trees['abcproject/mybranch'] = {
|
|
|
|
tree: [],
|
|
|
|
};
|
|
|
|
store.state.projects.abcproject = {
|
|
|
|
web_url: '',
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
document.querySelector('.flash-container').remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('tree', () => {
|
|
|
|
it('creates temp tree', done => {
|
|
|
|
store
|
|
|
|
.dispatch('createTempEntry', {
|
|
|
|
branchId: store.state.currentBranchId,
|
|
|
|
name: 'test',
|
|
|
|
type: 'tree',
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
const entry = store.state.entries.test;
|
|
|
|
|
|
|
|
expect(entry).not.toBeNull();
|
|
|
|
expect(entry.type).toBe('tree');
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('creates new folder inside another tree', done => {
|
|
|
|
const tree = {
|
|
|
|
type: 'tree',
|
|
|
|
name: 'testing',
|
|
|
|
path: 'testing',
|
|
|
|
tree: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
store.state.entries[tree.path] = tree;
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('createTempEntry', {
|
|
|
|
branchId: store.state.currentBranchId,
|
|
|
|
name: 'testing/test',
|
|
|
|
type: 'tree',
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
expect(tree.tree[0].tempFile).toBeTruthy();
|
|
|
|
expect(tree.tree[0].name).toBe('test');
|
|
|
|
expect(tree.tree[0].type).toBe('tree');
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not create new tree if already exists', done => {
|
|
|
|
const tree = {
|
|
|
|
type: 'tree',
|
|
|
|
path: 'testing',
|
|
|
|
tempFile: false,
|
|
|
|
tree: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
store.state.entries[tree.path] = tree;
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('createTempEntry', {
|
|
|
|
branchId: store.state.currentBranchId,
|
|
|
|
name: 'testing',
|
|
|
|
type: 'tree',
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.entries[tree.path].tempFile).toEqual(false);
|
|
|
|
expect(document.querySelector('.flash-alert')).not.toBeNull();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('blob', () => {
|
|
|
|
it('creates temp file', done => {
|
|
|
|
store
|
|
|
|
.dispatch('createTempEntry', {
|
|
|
|
name: 'test',
|
|
|
|
branchId: 'mybranch',
|
|
|
|
type: 'blob',
|
|
|
|
})
|
|
|
|
.then(f => {
|
|
|
|
expect(f.tempFile).toBeTruthy();
|
2018-10-15 14:42:47 +05:30
|
|
|
expect(store.state.trees['abcproject/mybranch'].tree.length).toBe(1);
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds tmp file to open files', done => {
|
|
|
|
store
|
|
|
|
.dispatch('createTempEntry', {
|
|
|
|
name: 'test',
|
|
|
|
branchId: 'mybranch',
|
|
|
|
type: 'blob',
|
|
|
|
})
|
|
|
|
.then(f => {
|
|
|
|
expect(store.state.openFiles.length).toBe(1);
|
|
|
|
expect(store.state.openFiles[0].name).toBe(f.name);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds tmp file to changed files', done => {
|
|
|
|
store
|
|
|
|
.dispatch('createTempEntry', {
|
|
|
|
name: 'test',
|
|
|
|
branchId: 'mybranch',
|
|
|
|
type: 'blob',
|
|
|
|
})
|
|
|
|
.then(f => {
|
|
|
|
expect(store.state.changedFiles.length).toBe(1);
|
|
|
|
expect(store.state.changedFiles[0].name).toBe(f.name);
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets tmp file as active', done => {
|
|
|
|
store
|
|
|
|
.dispatch('createTempEntry', {
|
|
|
|
name: 'test',
|
|
|
|
branchId: 'mybranch',
|
|
|
|
type: 'blob',
|
|
|
|
})
|
|
|
|
.then(f => {
|
|
|
|
expect(f.active).toBeTruthy();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('creates flash message if file already exists', done => {
|
|
|
|
const f = file('test', '1', 'blob');
|
|
|
|
store.state.trees['abcproject/mybranch'].tree = [f];
|
|
|
|
store.state.entries[f.path] = f;
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('createTempEntry', {
|
|
|
|
name: 'test',
|
|
|
|
branchId: 'mybranch',
|
|
|
|
type: 'blob',
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
expect(document.querySelector('.flash-alert')).not.toBeNull();
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('scrollToTab', () => {
|
|
|
|
it('focuses the current active element', done => {
|
|
|
|
document.body.innerHTML +=
|
|
|
|
'<div id="tabs"><div class="active"><div class="repo-tab"></div></div></div>';
|
|
|
|
const el = document.querySelector('.repo-tab');
|
|
|
|
spyOn(el, 'focus');
|
|
|
|
|
|
|
|
store
|
|
|
|
.dispatch('scrollToTab')
|
|
|
|
.then(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(el.focus).toHaveBeenCalled();
|
|
|
|
|
|
|
|
document.getElementById('tabs').remove();
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
describe('stageAllChanges', () => {
|
|
|
|
it('adds all files from changedFiles to stagedFiles', done => {
|
2018-11-20 20:47:30 +05:30
|
|
|
const openFile = { ...file(), path: 'test' };
|
|
|
|
|
|
|
|
store.state.openFiles.push(openFile);
|
|
|
|
store.state.stagedFiles.push(openFile);
|
|
|
|
store.state.changedFiles.push(openFile, file('new'));
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
testAction(
|
|
|
|
stageAllChanges,
|
|
|
|
null,
|
|
|
|
store.state,
|
|
|
|
[
|
|
|
|
{ type: types.SET_LAST_COMMIT_MSG, payload: '' },
|
|
|
|
{ type: types.STAGE_CHANGE, payload: store.state.changedFiles[0].path },
|
|
|
|
{ type: types.STAGE_CHANGE, payload: store.state.changedFiles[1].path },
|
|
|
|
],
|
2018-11-20 20:47:30 +05:30
|
|
|
[
|
|
|
|
{
|
|
|
|
type: 'openPendingTab',
|
|
|
|
payload: { file: openFile, keyPrefix: 'staged' },
|
|
|
|
},
|
|
|
|
],
|
2018-10-15 14:42:47 +05:30
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('unstageAllChanges', () => {
|
|
|
|
it('removes all files from stagedFiles after unstaging', done => {
|
2018-11-20 20:47:30 +05:30
|
|
|
const openFile = { ...file(), path: 'test' };
|
|
|
|
|
|
|
|
store.state.openFiles.push(openFile);
|
|
|
|
store.state.changedFiles.push(openFile);
|
|
|
|
store.state.stagedFiles.push(openFile, file('new'));
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
testAction(
|
|
|
|
unstageAllChanges,
|
|
|
|
null,
|
|
|
|
store.state,
|
|
|
|
[
|
|
|
|
{ type: types.UNSTAGE_CHANGE, payload: store.state.stagedFiles[0].path },
|
|
|
|
{ type: types.UNSTAGE_CHANGE, payload: store.state.stagedFiles[1].path },
|
|
|
|
],
|
2018-11-20 20:47:30 +05:30
|
|
|
[
|
|
|
|
{
|
|
|
|
type: 'openPendingTab',
|
|
|
|
payload: { file: openFile, keyPrefix: 'unstaged' },
|
|
|
|
},
|
|
|
|
],
|
2018-10-15 14:42:47 +05:30
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
describe('updateViewer', () => {
|
|
|
|
it('updates viewer state', done => {
|
|
|
|
store
|
|
|
|
.dispatch('updateViewer', 'diff')
|
|
|
|
.then(() => {
|
|
|
|
expect(store.state.viewer).toBe('diff');
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
|
|
|
});
|
|
|
|
});
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
describe('updateActivityBarView', () => {
|
|
|
|
it('commits UPDATE_ACTIVITY_BAR_VIEW', done => {
|
|
|
|
testAction(
|
|
|
|
updateActivityBarView,
|
|
|
|
'test',
|
|
|
|
{},
|
|
|
|
[{ type: 'UPDATE_ACTIVITY_BAR_VIEW', payload: 'test' }],
|
|
|
|
[],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('setEmptyStateSvgs', () => {
|
|
|
|
it('commits setEmptyStateSvgs', done => {
|
|
|
|
testAction(
|
|
|
|
setEmptyStateSvgs,
|
|
|
|
'svg',
|
|
|
|
{},
|
|
|
|
[{ type: 'SET_EMPTY_STATE_SVGS', payload: 'svg' }],
|
|
|
|
[],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('updateTempFlagForEntry', () => {
|
|
|
|
it('commits UPDATE_TEMP_FLAG', done => {
|
|
|
|
const f = {
|
|
|
|
...file(),
|
|
|
|
path: 'test',
|
|
|
|
tempFile: true,
|
|
|
|
};
|
|
|
|
store.state.entries[f.path] = f;
|
|
|
|
|
|
|
|
testAction(
|
|
|
|
updateTempFlagForEntry,
|
|
|
|
{ file: f, tempFile: false },
|
|
|
|
store.state,
|
|
|
|
[{ type: 'UPDATE_TEMP_FLAG', payload: { path: f.path, tempFile: false } }],
|
|
|
|
[],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('commits UPDATE_TEMP_FLAG and dispatches for parent', done => {
|
|
|
|
const parent = {
|
|
|
|
...file(),
|
|
|
|
path: 'testing',
|
|
|
|
};
|
|
|
|
const f = {
|
|
|
|
...file(),
|
|
|
|
path: 'test',
|
|
|
|
parentPath: 'testing',
|
|
|
|
};
|
|
|
|
store.state.entries[parent.path] = parent;
|
|
|
|
store.state.entries[f.path] = f;
|
|
|
|
|
|
|
|
testAction(
|
|
|
|
updateTempFlagForEntry,
|
|
|
|
{ file: f, tempFile: false },
|
|
|
|
store.state,
|
|
|
|
[{ type: 'UPDATE_TEMP_FLAG', payload: { path: f.path, tempFile: false } }],
|
|
|
|
[{ type: 'updateTempFlagForEntry', payload: { file: parent, tempFile: false } }],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('setCurrentBranchId', () => {
|
|
|
|
it('commits setCurrentBranchId', done => {
|
|
|
|
testAction(
|
|
|
|
setCurrentBranchId,
|
|
|
|
'branchId',
|
|
|
|
{},
|
|
|
|
[{ type: 'SET_CURRENT_BRANCH', payload: 'branchId' }],
|
|
|
|
[],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('toggleFileFinder', () => {
|
|
|
|
it('commits TOGGLE_FILE_FINDER', done => {
|
|
|
|
testAction(
|
|
|
|
toggleFileFinder,
|
|
|
|
true,
|
|
|
|
null,
|
|
|
|
[{ type: 'TOGGLE_FILE_FINDER', payload: true }],
|
|
|
|
[],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
describe('setErrorMessage', () => {
|
|
|
|
it('commis error messsage', done => {
|
|
|
|
testAction(
|
|
|
|
setErrorMessage,
|
|
|
|
'error',
|
|
|
|
null,
|
|
|
|
[{ type: types.SET_ERROR_MESSAGE, payload: 'error' }],
|
|
|
|
[],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2018-11-18 11:00:15 +05:30
|
|
|
|
|
|
|
describe('deleteEntry', () => {
|
|
|
|
it('commits entry deletion', done => {
|
|
|
|
store.state.entries.path = 'testing';
|
|
|
|
|
|
|
|
testAction(
|
|
|
|
deleteEntry,
|
|
|
|
'path',
|
|
|
|
store.state,
|
|
|
|
[{ type: types.DELETE_ENTRY, payload: 'path' }],
|
|
|
|
[{ type: 'burstUnusedSeal' }],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('renameEntry', () => {
|
|
|
|
it('renames entry', done => {
|
|
|
|
store.state.entries.test = {
|
|
|
|
tree: [],
|
|
|
|
};
|
|
|
|
|
|
|
|
testAction(
|
|
|
|
renameEntry,
|
|
|
|
{ path: 'test', name: 'new-name' },
|
|
|
|
store.state,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
type: types.RENAME_ENTRY,
|
|
|
|
payload: { path: 'test', name: 'new-name', entryPath: null },
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[{ type: 'deleteEntry', payload: 'test' }],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renames all entries in tree', done => {
|
|
|
|
store.state.entries.test = {
|
|
|
|
type: 'tree',
|
|
|
|
tree: [
|
|
|
|
{
|
|
|
|
path: 'tree-1',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: 'tree-2',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
testAction(
|
|
|
|
renameEntry,
|
|
|
|
{ path: 'test', name: 'new-name' },
|
|
|
|
store.state,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
type: types.RENAME_ENTRY,
|
|
|
|
payload: { path: 'test', name: 'new-name', entryPath: null },
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{ type: 'renameEntry', payload: { path: 'test', name: 'new-name', entryPath: 'tree-1' } },
|
|
|
|
{ type: 'renameEntry', payload: { path: 'test', name: 'new-name', entryPath: 'tree-2' } },
|
|
|
|
{ type: 'deleteEntry', payload: 'test' },
|
|
|
|
],
|
|
|
|
done,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|