123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- import { CodeMirrorEditorFactory } from '@jupyterlab/codemirror';
- import { ObservableJSON } from '@jupyterlab/observables';
- import { JSONEditor } from '@jupyterlab/codeeditor';
- import { framePromise } from '@jupyterlab/testutils';
- import { Message } from '@lumino/messaging';
- import { Widget } from '@lumino/widgets';
- import { simulate } from 'simulate-event';
- class LogEditor extends JSONEditor {
- methods: string[] = [];
- events: string[] = [];
- handleEvent(event: Event): void {
- super.handleEvent(event);
- this.events.push(event.type);
- }
- protected onAfterAttach(msg: Message): void {
- super.onAfterAttach(msg);
- this.methods.push('onAfterAttach');
- }
- protected onAfterShow(msg: Message): void {
- super.onAfterShow(msg);
- this.methods.push('onAfterShow');
- }
- protected onUpdateRequest(msg: Message): void {
- super.onUpdateRequest(msg);
- this.methods.push('onUpdateRequest');
- }
- protected onBeforeDetach(msg: Message): void {
- super.onBeforeDetach(msg);
- this.methods.push('onBeforeDetach');
- }
- }
- describe('codeeditor', () => {
- describe('JSONEditor', () => {
- let editor: LogEditor;
- const editorServices = new CodeMirrorEditorFactory();
- const editorFactory = editorServices.newInlineEditor.bind(editorServices);
- beforeEach(() => {
- editor = new LogEditor({ editorFactory });
- });
- afterEach(() => {
- editor.dispose();
- });
- describe('#constructor', () => {
- it('should create a new metadata editor', () => {
- const newEditor = new JSONEditor({ editorFactory });
- expect(newEditor).toBeInstanceOf(JSONEditor);
- });
- });
- describe('#headerNode', () => {
- it('should be the header node used by the editor', () => {
- expect(Array.from(editor.headerNode.classList)).toEqual(
- expect.arrayContaining(['jp-JSONEditor-header'])
- );
- });
- });
- describe('#editorHostNode', () => {
- it('should be the editor host node used by the editor', () => {
- expect(Array.from(editor.editorHostNode.classList)).toEqual(
- expect.arrayContaining(['jp-JSONEditor-host'])
- );
- });
- });
- describe('#revertButtonNode', () => {
- it('should be the revert button node used by the editor', () => {
- expect(
- editor.revertButtonNode.querySelector("[data-icon$='undo']")
- ).toBeDefined();
- });
- });
- describe('#commitButtonNode', () => {
- it('should be the commit button node used by the editor', () => {
- expect(
- editor.commitButtonNode.querySelector("[data-icon$='check']")
- ).toBeDefined();
- });
- });
- describe('#source', () => {
- it('should be the source of the metadata', () => {
- expect(editor.source).toBe(null);
- });
- it('should be settable', () => {
- const source = new ObservableJSON();
- editor.source = source;
- expect(editor.source).toBe(source);
- });
- it('should update the text area value', () => {
- const model = editor.model;
- expect(model.value.text).toBe('No data!');
- editor.source = new ObservableJSON();
- expect(model.value.text).toBe('{}');
- });
- });
- describe('#isDirty', () => {
- it('should test whether the editor value is dirty', () => {
- expect(editor.isDirty).toBe(false);
- Widget.attach(editor, document.body);
- editor.model.value.text = 'a';
- expect(editor.isDirty).toBe(true);
- });
- it('should be dirty if the value changes while focused', () => {
- editor.source = new ObservableJSON();
- Widget.attach(editor, document.body);
- editor.editor.focus();
- expect(editor.isDirty).toBe(false);
- editor.source.set('foo', 1);
- expect(editor.isDirty).toBe(true);
- });
- it('should not be set if not focused', () => {
- editor.source = new ObservableJSON();
- Widget.attach(editor, document.body);
- expect(editor.isDirty).toBe(false);
- editor.source.set('foo', 1);
- expect(editor.isDirty).toBe(false);
- });
- });
- describe('model.value.changed', () => {
- it('should add the error flag if invalid JSON', () => {
- editor.model.value.text = 'foo';
- expect(editor.hasClass('jp-mod-error')).toBe(true);
- });
- it('should show the commit button if the value has changed', () => {
- editor.model.value.text = '{"foo": 2}';
- editor.model.value.text = '{"foo": 1}';
- expect(editor.commitButtonNode.hidden).toBe(false);
- });
- it('should not show the commit button if the value is invalid', () => {
- editor.model.value.text = 'foo';
- expect(editor.commitButtonNode.hidden).toBe(true);
- });
- it('should show the revert button if the value has changed', () => {
- editor.model.value.text = 'foo';
- expect(editor.revertButtonNode.hidden).toBe(false);
- });
- });
- describe('#handleEvent()', () => {
- beforeEach(() => {
- Widget.attach(editor, document.body);
- });
- describe('blur', () => {
- it('should handle blur events on the host node', () => {
- editor.editor.focus();
- simulate(editor.editorHostNode, 'blur');
- expect(editor.events).toEqual(expect.arrayContaining(['blur']));
- });
- it('should revert to current data if there was no change', () => {
- editor.source = new ObservableJSON();
- editor.editor.focus();
- editor.source.set('foo', 1);
- const model = editor.model;
- expect(model.value.text).toBe('{}');
- simulate(editor.editorHostNode, 'blur');
- expect(model.value.text).toBe('{\n "foo": 1\n}');
- });
- it('should not revert to current data if there was a change', () => {
- editor.source = new ObservableJSON();
- editor.model.value.text = 'foo';
- editor.source.set('foo', 1);
- const model = editor.model;
- expect(model.value.text).toBe('foo');
- simulate(editor.editorHostNode, 'blur');
- expect(model.value.text).toBe('foo');
- expect(editor.commitButtonNode.hidden).toBe(true);
- expect(editor.revertButtonNode.hidden).toBe(false);
- });
- });
- describe('click', () => {
- it('should handle click events on the revert button', () => {
- simulate(editor.revertButtonNode, 'click');
- expect(editor.events).toEqual(expect.arrayContaining(['click']));
- });
- it('should revert the current data', () => {
- editor.source = new ObservableJSON();
- editor.model.value.text = 'foo';
- simulate(editor.revertButtonNode, 'click');
- expect(editor.model.value.text).toBe('{}');
- });
- it('should handle programmatic changes', () => {
- editor.source = new ObservableJSON();
- editor.model.value.text = 'foo';
- editor.source.set('foo', 1);
- simulate(editor.revertButtonNode, 'click');
- expect(editor.model.value.text).toBe('{\n "foo": 1\n}');
- });
- it('should handle click events on the commit button', () => {
- simulate(editor.commitButtonNode, 'click');
- expect(editor.events).toEqual(expect.arrayContaining(['click']));
- });
- it('should bail if it is not valid JSON', () => {
- editor.source = new ObservableJSON();
- editor.model.value.text = 'foo';
- editor.source.set('foo', 1);
- simulate(editor.commitButtonNode, 'click');
- expect(editor.model.value.text).toBe('foo');
- });
- it('should override a key that was set programmatically', () => {
- editor.source = new ObservableJSON();
- editor.model.value.text = '{"foo": 2}';
- editor.source.set('foo', 1);
- simulate(editor.commitButtonNode, 'click');
- expect(editor.model.value.text).toBe('{\n "foo": 2\n}');
- });
- it('should allow a programmatic key to update', () => {
- editor.source = new ObservableJSON();
- editor.source.set('foo', 1);
- editor.source.set('bar', 1);
- editor.model.value.text = '{"foo":1, "bar": 2}';
- editor.source.set('foo', 2);
- simulate(editor.commitButtonNode, 'click');
- const expected = '{\n "foo": 2,\n "bar": 2\n}';
- expect(editor.model.value.text).toBe(expected);
- });
- it('should allow a key to be added by the user', () => {
- editor.source = new ObservableJSON();
- editor.source.set('foo', 1);
- editor.source.set('bar', 1);
- editor.model.value.text = '{"foo":1, "bar": 2, "baz": 3}';
- editor.source.set('foo', 2);
- simulate(editor.commitButtonNode, 'click');
- const value = '{\n "foo": 2,\n "bar": 2,\n "baz": 3\n}';
- expect(editor.model.value.text).toBe(value);
- });
- it('should allow a key to be removed by the user', () => {
- editor.source = new ObservableJSON();
- editor.source.set('foo', 1);
- editor.source.set('bar', 1);
- editor.model.value.text = '{"foo": 1}';
- simulate(editor.commitButtonNode, 'click');
- expect(editor.model.value.text).toBe('{\n "foo": 1\n}');
- });
- it('should allow a key to be removed programmatically that was not set by the user', () => {
- editor.source = new ObservableJSON();
- editor.source.set('foo', 1);
- editor.source.set('bar', 1);
- editor.model.value.text = '{"foo": 1, "bar": 3}';
- editor.source.delete('foo');
- simulate(editor.commitButtonNode, 'click');
- expect(editor.model.value.text).toBe('{\n "bar": 3\n}');
- });
- it('should keep a key that was removed programmatically that was changed by the user', () => {
- editor.source = new ObservableJSON();
- editor.source.set('foo', 1);
- editor.source.set('bar', 1);
- editor.model.value.text = '{"foo": 2, "bar": 3}';
- editor.source.set('foo', null);
- simulate(editor.commitButtonNode, 'click');
- const expected = '{\n "foo": 2,\n "bar": 3\n}';
- expect(editor.model.value.text).toBe(expected);
- });
- });
- });
- describe('#onAfterAttach()', () => {
- it('should add event listeners', () => {
- Widget.attach(editor, document.body);
- expect(editor.methods).toEqual(
- expect.arrayContaining(['onAfterAttach'])
- );
- editor.editor.focus();
- simulate(editor.editorHostNode, 'blur');
- simulate(editor.revertButtonNode, 'click');
- simulate(editor.commitButtonNode, 'click');
- expect(editor.events).toEqual(['blur', 'click', 'click']);
- });
- });
- describe('#onAfterShow()', () => {
- it('should update the editor', async () => {
- editor.hide();
- Widget.attach(editor, document.body);
- editor.show();
- await framePromise();
- expect(editor.methods).toEqual(
- expect.arrayContaining(['onUpdateRequest'])
- );
- });
- });
- describe('#onBeforeDetach()', () => {
- it('should remove event listeners', () => {
- Widget.attach(editor, document.body);
- Widget.detach(editor);
- expect(editor.methods).toEqual(
- expect.arrayContaining(['onBeforeDetach'])
- );
- editor.editor.focus();
- simulate(editor.editorHostNode, 'blur');
- simulate(editor.revertButtonNode, 'click');
- simulate(editor.commitButtonNode, 'click');
- expect(editor.events).toEqual([]);
- });
- });
- describe('#source.changed', () => {
- it('should update the value', () => {
- editor.source = new ObservableJSON();
- editor.source.set('foo', 1);
- expect(editor.model.value.text).toBe('{\n "foo": 1\n}');
- });
- it('should bail if the input is dirty', () => {
- Widget.attach(editor, document.body);
- editor.source = new ObservableJSON();
- editor.model.value.text = 'ha';
- editor.source.set('foo', 2);
- expect(editor.model.value.text).toBe('ha');
- });
- it('should bail if the input is focused', () => {
- Widget.attach(editor, document.body);
- editor.model.value.text = '{}';
- editor.source = new ObservableJSON();
- editor.editor.focus();
- editor.source.set('foo', 2);
- expect(editor.model.value.text).toBe('{}');
- });
- });
- });
- });
|