2018-11-08 19:23:39 +05:30
|
|
|
import { editor as monacoEditor } from 'monaco-editor';
|
|
|
|
import Editor from '~/ide/lib/editor';
|
2018-05-09 12:01:36 +05:30
|
|
|
import { file } from '../helpers';
|
|
|
|
|
|
|
|
describe('Multi-file editor library', () => {
|
|
|
|
let instance;
|
|
|
|
let el;
|
|
|
|
let holder;
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
beforeEach(() => {
|
2018-05-09 12:01:36 +05:30
|
|
|
el = document.createElement('div');
|
|
|
|
holder = document.createElement('div');
|
|
|
|
el.appendChild(holder);
|
|
|
|
|
|
|
|
document.body.appendChild(el);
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
instance = Editor.create();
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
instance.dispose();
|
|
|
|
|
|
|
|
el.remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('creates instance of editor', () => {
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(Editor.editorInstance).not.toBeNull();
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('creates instance returns cached instance', () => {
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(Editor.create()).toEqual(instance);
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('createInstance', () => {
|
|
|
|
it('creates editor instance', () => {
|
2018-11-08 19:23:39 +05:30
|
|
|
spyOn(monacoEditor, 'create').and.callThrough();
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
instance.createInstance(holder);
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(monacoEditor.create).toHaveBeenCalled();
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('creates dirty diff controller', () => {
|
|
|
|
instance.createInstance(holder);
|
|
|
|
|
|
|
|
expect(instance.dirtyDiffController).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('creates model manager', () => {
|
|
|
|
instance.createInstance(holder);
|
|
|
|
|
|
|
|
expect(instance.modelManager).not.toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('createDiffInstance', () => {
|
|
|
|
it('creates editor instance', () => {
|
2018-11-08 19:23:39 +05:30
|
|
|
spyOn(monacoEditor, 'createDiffEditor').and.callThrough();
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
instance.createDiffInstance(holder);
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(monacoEditor.createDiffEditor).toHaveBeenCalledWith(holder, {
|
2018-05-09 12:01:36 +05:30
|
|
|
model: null,
|
|
|
|
contextmenu: true,
|
|
|
|
minimap: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
readOnly: true,
|
|
|
|
scrollBeyondLastLine: false,
|
|
|
|
quickSuggestions: false,
|
|
|
|
occurrencesHighlight: false,
|
|
|
|
wordWrap: 'on',
|
|
|
|
renderSideBySide: true,
|
2018-10-15 14:42:47 +05:30
|
|
|
renderLineHighlight: 'all',
|
|
|
|
hideCursorInOverviewRuler: false,
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('createModel', () => {
|
|
|
|
it('calls model manager addModel', () => {
|
|
|
|
spyOn(instance.modelManager, 'addModel');
|
|
|
|
|
|
|
|
instance.createModel('FILE');
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
expect(instance.modelManager.addModel).toHaveBeenCalledWith('FILE', null);
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('attachModel', () => {
|
|
|
|
let model;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
instance.createInstance(document.createElement('div'));
|
|
|
|
|
|
|
|
model = instance.createModel(file());
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets the current model on the instance', () => {
|
|
|
|
instance.attachModel(model);
|
|
|
|
|
|
|
|
expect(instance.currentModel).toBe(model);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('attaches the model to the current instance', () => {
|
|
|
|
spyOn(instance.instance, 'setModel');
|
|
|
|
|
|
|
|
instance.attachModel(model);
|
|
|
|
|
|
|
|
expect(instance.instance.setModel).toHaveBeenCalledWith(model.getModel());
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets original & modified when diff editor', () => {
|
|
|
|
spyOn(instance.instance, 'getEditorType').and.returnValue('vs.editor.IDiffEditor');
|
|
|
|
spyOn(instance.instance, 'setModel');
|
|
|
|
|
|
|
|
instance.attachModel(model);
|
|
|
|
|
|
|
|
expect(instance.instance.setModel).toHaveBeenCalledWith({
|
|
|
|
original: model.getOriginalModel(),
|
|
|
|
modified: model.getModel(),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('attaches the model to the dirty diff controller', () => {
|
|
|
|
spyOn(instance.dirtyDiffController, 'attachModel');
|
|
|
|
|
|
|
|
instance.attachModel(model);
|
|
|
|
|
|
|
|
expect(instance.dirtyDiffController.attachModel).toHaveBeenCalledWith(model);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('re-decorates with the dirty diff controller', () => {
|
|
|
|
spyOn(instance.dirtyDiffController, 'reDecorate');
|
|
|
|
|
|
|
|
instance.attachModel(model);
|
|
|
|
|
|
|
|
expect(instance.dirtyDiffController.reDecorate).toHaveBeenCalledWith(model);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('attachMergeRequestModel', () => {
|
|
|
|
let model;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
instance.createDiffInstance(document.createElement('div'));
|
|
|
|
|
|
|
|
const f = file();
|
|
|
|
f.mrChanges = { diff: 'ABC' };
|
|
|
|
f.baseRaw = 'testing';
|
|
|
|
|
|
|
|
model = instance.createModel(f);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets original & modified', () => {
|
|
|
|
spyOn(instance.instance, 'setModel');
|
|
|
|
|
|
|
|
instance.attachMergeRequestModel(model);
|
|
|
|
|
|
|
|
expect(instance.instance.setModel).toHaveBeenCalledWith({
|
|
|
|
original: model.getBaseModel(),
|
|
|
|
modified: model.getModel(),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('clearEditor', () => {
|
|
|
|
it('resets the editor model', () => {
|
|
|
|
instance.createInstance(document.createElement('div'));
|
|
|
|
|
|
|
|
spyOn(instance.instance, 'setModel');
|
|
|
|
|
|
|
|
instance.clearEditor();
|
|
|
|
|
|
|
|
expect(instance.instance.setModel).toHaveBeenCalledWith(null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('dispose', () => {
|
|
|
|
it('calls disposble dispose method', () => {
|
|
|
|
spyOn(instance.disposable, 'dispose').and.callThrough();
|
|
|
|
|
|
|
|
instance.dispose();
|
|
|
|
|
|
|
|
expect(instance.disposable.dispose).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('resets instance', () => {
|
|
|
|
instance.createInstance(document.createElement('div'));
|
|
|
|
|
|
|
|
expect(instance.instance).not.toBeNull();
|
|
|
|
|
|
|
|
instance.dispose();
|
|
|
|
|
|
|
|
expect(instance.instance).toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not dispose modelManager', () => {
|
|
|
|
spyOn(instance.modelManager, 'dispose');
|
|
|
|
|
|
|
|
instance.dispose();
|
|
|
|
|
|
|
|
expect(instance.modelManager.dispose).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not dispose decorationsController', () => {
|
|
|
|
spyOn(instance.decorationsController, 'dispose');
|
|
|
|
|
|
|
|
instance.dispose();
|
|
|
|
|
|
|
|
expect(instance.decorationsController.dispose).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('updateDiffView', () => {
|
|
|
|
describe('edit mode', () => {
|
|
|
|
it('does not update options', () => {
|
|
|
|
instance.createInstance(holder);
|
|
|
|
|
|
|
|
spyOn(instance.instance, 'updateOptions');
|
|
|
|
|
|
|
|
instance.updateDiffView();
|
|
|
|
|
|
|
|
expect(instance.instance.updateOptions).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('diff mode', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
instance.createDiffInstance(holder);
|
|
|
|
|
|
|
|
spyOn(instance.instance, 'updateOptions').and.callThrough();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets renderSideBySide to false if el is less than 700 pixels', () => {
|
|
|
|
spyOnProperty(instance.instance.getDomNode(), 'offsetWidth').and.returnValue(600);
|
|
|
|
|
|
|
|
expect(instance.instance.updateOptions).not.toHaveBeenCalledWith({
|
|
|
|
renderSideBySide: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets renderSideBySide to false if el is more than 700 pixels', () => {
|
|
|
|
spyOnProperty(instance.instance.getDomNode(), 'offsetWidth').and.returnValue(800);
|
|
|
|
|
|
|
|
expect(instance.instance.updateOptions).not.toHaveBeenCalledWith({
|
|
|
|
renderSideBySide: true,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('isDiffEditorType', () => {
|
|
|
|
it('returns true when diff editor', () => {
|
|
|
|
instance.createDiffInstance(holder);
|
|
|
|
|
|
|
|
expect(instance.isDiffEditorType).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns false when not diff editor', () => {
|
|
|
|
instance.createInstance(holder);
|
|
|
|
|
|
|
|
expect(instance.isDiffEditorType).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
it('sets quickSuggestions to false when language is markdown', () => {
|
|
|
|
instance.createInstance(holder);
|
|
|
|
|
|
|
|
spyOn(instance.instance, 'updateOptions').and.callThrough();
|
|
|
|
|
|
|
|
const model = instance.createModel({
|
|
|
|
...file(),
|
|
|
|
key: 'index.md',
|
|
|
|
path: 'index.md',
|
|
|
|
});
|
|
|
|
|
|
|
|
instance.attachModel(model);
|
|
|
|
|
|
|
|
expect(instance.instance.updateOptions).toHaveBeenCalledWith({
|
|
|
|
readOnly: false,
|
|
|
|
quickSuggestions: false,
|
|
|
|
});
|
|
|
|
});
|
2018-05-09 12:01:36 +05:30
|
|
|
});
|