debian-mirror-gitlab/spec/frontend/editor/editor_lite_spec.js

401 lines
12 KiB
JavaScript
Raw Normal View History

2020-05-24 23:13:21 +05:30
import { editor as monacoEditor, languages as monacoLanguages, Uri } from 'monaco-editor';
2020-03-13 15:44:24 +05:30
import Editor from '~/editor/editor_lite';
2020-04-08 14:13:33 +05:30
import { DEFAULT_THEME, themes } from '~/ide/lib/themes';
2020-11-24 15:15:51 +05:30
import { EDITOR_LITE_INSTANCE_ERROR_NO_EL, URI_PREFIX } from '~/editor/constants';
2020-10-24 23:57:45 +05:30
2020-03-13 15:44:24 +05:30
describe('Base editor', () => {
let editorEl;
let editor;
const blobContent = 'Foo Bar';
const blobPath = 'test.md';
2020-10-24 23:57:45 +05:30
const blobGlobalId = 'snippet_777';
const fakeModel = { foo: 'bar', dispose: jest.fn() };
2020-03-13 15:44:24 +05:30
beforeEach(() => {
setFixtures('<div id="editor" data-editor-loading></div>');
editorEl = document.getElementById('editor');
editor = new Editor();
});
afterEach(() => {
editor.dispose();
editorEl.remove();
});
2020-10-24 23:57:45 +05:30
const createUri = (...paths) => Uri.file([URI_PREFIX, ...paths].join('/'));
2020-03-13 15:44:24 +05:30
it('initializes Editor with basic properties', () => {
expect(editor).toBeDefined();
2020-11-24 15:15:51 +05:30
expect(editor.instances).toEqual([]);
2020-03-13 15:44:24 +05:30
});
it('removes `editor-loading` data attribute from the target DOM element', () => {
editor.createInstance({ el: editorEl });
expect(editorEl.dataset.editorLoading).toBeUndefined();
});
describe('instance of the Editor', () => {
let modelSpy;
let instanceSpy;
let setModel;
let dispose;
beforeEach(() => {
2020-05-24 23:13:21 +05:30
setModel = jest.fn();
dispose = jest.fn();
modelSpy = jest.spyOn(monacoEditor, 'createModel').mockImplementation(() => fakeModel);
instanceSpy = jest.spyOn(monacoEditor, 'create').mockImplementation(() => ({
2020-03-13 15:44:24 +05:30
setModel,
dispose,
2020-11-24 15:15:51 +05:30
onDidDispose: jest.fn(),
2020-05-24 23:13:21 +05:30
}));
2020-03-13 15:44:24 +05:30
});
2020-11-24 15:15:51 +05:30
it('throws an error if no dom element is supplied', () => {
expect(() => {
editor.createInstance();
}).toThrow(EDITOR_LITE_INSTANCE_ERROR_NO_EL);
2020-03-13 15:44:24 +05:30
expect(modelSpy).not.toHaveBeenCalled();
expect(instanceSpy).not.toHaveBeenCalled();
expect(setModel).not.toHaveBeenCalled();
});
it('creates model to be supplied to Monaco editor', () => {
editor.createInstance({ el: editorEl, blobPath, blobContent });
2020-10-24 23:57:45 +05:30
expect(modelSpy).toHaveBeenCalledWith(blobContent, undefined, createUri(blobPath));
2020-03-13 15:44:24 +05:30
expect(setModel).toHaveBeenCalledWith(fakeModel);
});
it('initializes the instance on a supplied DOM node', () => {
editor.createInstance({ el: editorEl });
expect(editor.editorEl).not.toBe(null);
2020-05-24 23:13:21 +05:30
expect(instanceSpy).toHaveBeenCalledWith(editorEl, expect.anything());
2020-03-13 15:44:24 +05:30
});
2020-10-24 23:57:45 +05:30
it('with blobGlobalId, creates model with id in uri', () => {
editor.createInstance({ el: editorEl, blobPath, blobContent, blobGlobalId });
expect(modelSpy).toHaveBeenCalledWith(
blobContent,
undefined,
createUri(blobGlobalId, blobPath),
);
});
2020-11-24 15:15:51 +05:30
it('initializes instance with passed properties', () => {
const instanceOptions = {
foo: 'bar',
};
editor.createInstance({
el: editorEl,
...instanceOptions,
});
expect(instanceSpy).toHaveBeenCalledWith(editorEl, expect.objectContaining(instanceOptions));
});
it('disposes instance when the editor is disposed', () => {
editor.createInstance({ el: editorEl, blobPath, blobContent, blobGlobalId });
expect(dispose).not.toHaveBeenCalled();
editor.dispose();
expect(dispose).toHaveBeenCalled();
});
});
describe('multiple instances', () => {
let instanceSpy;
let inst1Args;
let inst2Args;
let editorEl1;
let editorEl2;
let inst1;
let inst2;
const readOnlyIndex = '68'; // readOnly option has the internal index of 68 in the editor's options
beforeEach(() => {
setFixtures('<div id="editor1"></div><div id="editor2"></div>');
editorEl1 = document.getElementById('editor1');
editorEl2 = document.getElementById('editor2');
inst1Args = {
el: editorEl1,
blobGlobalId,
};
inst2Args = {
el: editorEl2,
blobContent,
blobPath,
blobGlobalId,
};
editor = new Editor();
instanceSpy = jest.spyOn(monacoEditor, 'create');
});
afterEach(() => {
editor.dispose();
});
it('can initialize several instances of the same editor', () => {
editor.createInstance(inst1Args);
expect(editor.instances).toHaveLength(1);
editor.createInstance(inst2Args);
expect(instanceSpy).toHaveBeenCalledTimes(2);
expect(editor.instances).toHaveLength(2);
});
it('sets independent models on independent instances', () => {
inst1 = editor.createInstance(inst1Args);
inst2 = editor.createInstance(inst2Args);
const model1 = inst1.getModel();
const model2 = inst2.getModel();
expect(model1).toBeDefined();
expect(model2).toBeDefined();
expect(model1).not.toEqual(model2);
});
it('shares global editor options among all instances', () => {
editor = new Editor({
readOnly: true,
});
inst1 = editor.createInstance(inst1Args);
expect(inst1.getOption(readOnlyIndex)).toBe(true);
inst2 = editor.createInstance(inst2Args);
expect(inst2.getOption(readOnlyIndex)).toBe(true);
});
it('allows overriding editor options on the instance level', () => {
editor = new Editor({
readOnly: true,
});
inst1 = editor.createInstance({
...inst1Args,
readOnly: false,
});
expect(inst1.getOption(readOnlyIndex)).toBe(false);
});
it('disposes instances and relevant models independently from each other', () => {
inst1 = editor.createInstance(inst1Args);
inst2 = editor.createInstance(inst2Args);
expect(inst1.getModel()).not.toBe(null);
expect(inst2.getModel()).not.toBe(null);
expect(editor.instances).toHaveLength(2);
expect(monacoEditor.getModels()).toHaveLength(2);
inst1.dispose();
expect(inst1.getModel()).toBe(null);
expect(inst2.getModel()).not.toBe(null);
expect(editor.instances).toHaveLength(1);
expect(monacoEditor.getModels()).toHaveLength(1);
});
2020-03-13 15:44:24 +05:30
});
describe('implementation', () => {
2020-11-24 15:15:51 +05:30
let instance;
2020-03-13 15:44:24 +05:30
beforeEach(() => {
2020-11-24 15:15:51 +05:30
instance = editor.createInstance({ el: editorEl, blobPath, blobContent });
2020-03-13 15:44:24 +05:30
});
it('correctly proxies value from the model', () => {
2020-11-24 15:15:51 +05:30
expect(instance.getValue()).toBe(blobContent);
2020-03-13 15:44:24 +05:30
});
it('is capable of changing the language of the model', () => {
2020-05-24 23:13:21 +05:30
// ignore warnings and errors Monaco posts during setup
// (due to being called from Jest/Node.js environment)
jest.spyOn(console, 'warn').mockImplementation(() => {});
jest.spyOn(console, 'error').mockImplementation(() => {});
2020-03-13 15:44:24 +05:30
const blobRenamedPath = 'test.js';
2020-11-24 15:15:51 +05:30
expect(instance.getModel().getLanguageIdentifier().language).toBe('markdown');
instance.updateModelLanguage(blobRenamedPath);
2020-03-13 15:44:24 +05:30
2020-11-24 15:15:51 +05:30
expect(instance.getModel().getLanguageIdentifier().language).toBe('javascript');
2020-03-13 15:44:24 +05:30
});
it('falls back to plaintext if there is no language associated with an extension', () => {
const blobRenamedPath = 'test.myext';
2020-05-24 23:13:21 +05:30
const spy = jest.spyOn(console, 'error').mockImplementation(() => {});
2020-03-13 15:44:24 +05:30
2020-11-24 15:15:51 +05:30
instance.updateModelLanguage(blobRenamedPath);
2020-03-13 15:44:24 +05:30
expect(spy).not.toHaveBeenCalled();
2020-11-24 15:15:51 +05:30
expect(instance.getModel().getLanguageIdentifier().language).toBe('plaintext');
2020-03-13 15:44:24 +05:30
});
});
2020-04-08 14:13:33 +05:30
2020-07-28 23:09:34 +05:30
describe('extensions', () => {
2020-11-24 15:15:51 +05:30
let instance;
2020-07-28 23:09:34 +05:30
const foo1 = jest.fn();
const foo2 = jest.fn();
const bar = jest.fn();
const MyExt1 = {
foo: foo1,
};
const MyExt2 = {
bar,
};
const MyExt3 = {
foo: foo2,
};
beforeEach(() => {
2020-11-24 15:15:51 +05:30
instance = editor.createInstance({ el: editorEl, blobPath, blobContent });
2020-07-28 23:09:34 +05:30
});
it('is extensible with the extensions', () => {
2020-11-24 15:15:51 +05:30
expect(instance.foo).toBeUndefined();
2020-07-28 23:09:34 +05:30
editor.use(MyExt1);
2020-11-24 15:15:51 +05:30
expect(instance.foo).toEqual(foo1);
2020-07-28 23:09:34 +05:30
});
it('does not fail if no extensions supplied', () => {
const spy = jest.spyOn(global.console, 'error');
editor.use();
expect(spy).not.toHaveBeenCalled();
});
it('is extensible with multiple extensions', () => {
2020-11-24 15:15:51 +05:30
expect(instance.foo).toBeUndefined();
expect(instance.bar).toBeUndefined();
2020-07-28 23:09:34 +05:30
editor.use([MyExt1, MyExt2]);
2020-11-24 15:15:51 +05:30
expect(instance.foo).toEqual(foo1);
expect(instance.bar).toEqual(bar);
2020-07-28 23:09:34 +05:30
});
it('uses the last definition of a method in case of an overlap', () => {
editor.use([MyExt1, MyExt2, MyExt3]);
2020-11-24 15:15:51 +05:30
expect(instance).toEqual(
2020-07-28 23:09:34 +05:30
expect.objectContaining({
foo: foo2,
bar,
}),
);
});
it('correctly resolves references withing extensions', () => {
const FunctionExt = {
inst() {
2020-11-24 15:15:51 +05:30
return this;
2020-07-28 23:09:34 +05:30
},
mod() {
2020-11-24 15:15:51 +05:30
return this.getModel();
2020-07-28 23:09:34 +05:30
},
};
editor.use(FunctionExt);
2020-11-24 15:15:51 +05:30
expect(instance.inst()).toEqual(editor.instances[0]);
});
describe('multiple instances', () => {
let inst1;
let inst2;
let editorEl1;
let editorEl2;
beforeEach(() => {
setFixtures('<div id="editor1"></div><div id="editor2"></div>');
editorEl1 = document.getElementById('editor1');
editorEl2 = document.getElementById('editor2');
inst1 = editor.createInstance({ el: editorEl1, blobPath: `foo-${blobPath}` });
inst2 = editor.createInstance({ el: editorEl2, blobPath: `bar-${blobPath}` });
});
afterEach(() => {
editor.dispose();
editorEl1.remove();
editorEl2.remove();
});
it('extends all instances if no specific instance is passed', () => {
editor.use(MyExt1);
expect(inst1.foo).toEqual(foo1);
expect(inst2.foo).toEqual(foo1);
});
it('extends specific instance if it has been passed', () => {
editor.use(MyExt1, inst2);
expect(inst1.foo).toBeUndefined();
expect(inst2.foo).toEqual(foo1);
});
2020-07-28 23:09:34 +05:30
});
});
2020-05-24 23:13:21 +05:30
describe('languages', () => {
it('registers custom languages defined with Monaco', () => {
expect(monacoLanguages.getLanguages()).toEqual(
expect.arrayContaining([
expect.objectContaining({
id: 'vue',
}),
]),
);
});
});
2020-04-08 14:13:33 +05:30
describe('syntax highlighting theme', () => {
let themeDefineSpy;
let themeSetSpy;
let defaultScheme;
beforeEach(() => {
2020-05-24 23:13:21 +05:30
themeDefineSpy = jest.spyOn(monacoEditor, 'defineTheme').mockImplementation(() => {});
themeSetSpy = jest.spyOn(monacoEditor, 'setTheme').mockImplementation(() => {});
2020-04-08 14:13:33 +05:30
defaultScheme = window.gon.user_color_scheme;
});
afterEach(() => {
window.gon.user_color_scheme = defaultScheme;
});
it('sets default syntax highlighting theme', () => {
const expectedTheme = themes.find(t => t.name === DEFAULT_THEME);
editor = new Editor();
expect(themeDefineSpy).toHaveBeenCalledWith(DEFAULT_THEME, expectedTheme.data);
expect(themeSetSpy).toHaveBeenCalledWith(DEFAULT_THEME);
});
it('sets correct theme if it is set in users preferences', () => {
const expectedTheme = themes.find(t => t.name !== DEFAULT_THEME);
expect(expectedTheme.name).not.toBe(DEFAULT_THEME);
window.gon.user_color_scheme = expectedTheme.name;
editor = new Editor();
expect(themeDefineSpy).toHaveBeenCalledWith(expectedTheme.name, expectedTheme.data);
expect(themeSetSpy).toHaveBeenCalledWith(expectedTheme.name);
});
it('falls back to default theme if a selected one is not supported yet', () => {
const name = 'non-existent-theme';
const nonExistentTheme = { name };
window.gon.user_color_scheme = nonExistentTheme.name;
editor = new Editor();
expect(themeDefineSpy).not.toHaveBeenCalled();
expect(themeSetSpy).toHaveBeenCalledWith(DEFAULT_THEME);
});
});
2020-03-13 15:44:24 +05:30
});