mediawiki-extensions-CodeMi.../tests/jest/codemirror.wikieditor.test.js
MusikAnimal 7d3482f89e Isolate build step to CM6 library and restructure files to work with RL
CodeMirror 6 requires the use of NPM, but we can still bundle all CM
packages into one file, and then everything else (i.e. our code) is
managed by ResourceLoader as per usual. This makes contribution
considerably easier as we no longer need a build step for each change.

CM5 files are now under resources/legacy, and the CM6 files are moved to
the root of the resources/ directory. Only one file,
codemirror.bundle.js, is managed by Rollup, while everything else is RL.
The Rollup output for now is put under resources/lib/ alongside the CM5
upstream files.

This patch is *mostly* renames of files, along with changing ECMAScript
Module (ESM) syntax into the CommonJS style that ResourceLoader prefers.
We also remove more modern JS syntax (i.e. private class methods) that
we were able to use before because we had a build step with Babel.

This patch should effectively make no user-facing changes, or to the
ResourceLoader modules we offer in Extension:CodeMirror.

Finally, bump version in extension.json to 6, to match the upstream lib,
and add Bhsd as an author :-)

Bug: T368053
Change-Id: Ie258e49f5df8db23a7344ac3c4c9300aaa991042
2024-07-31 22:45:48 -04:00

64 lines
2 KiB
JavaScript

mw.loader = { getState: jest.fn() };
const CodeMirrorWikiEditor = require( '../../resources/codemirror.wikieditor.js' ),
$textarea = $( '<textarea>' )
.text( 'The Smashing Pumpkins' ),
cmWe = new CodeMirrorWikiEditor( $textarea );
beforeEach( () => {
// Simulate the button that enables/disables CodeMirror as WikiEditor doesn't exist here.
const btn = document.createElement( 'span' );
btn.id = 'mw-editbutton-codemirror';
btn.classList.add( 'tool' );
btn.setAttribute( 'rel', 'CodeMirror' );
document.body.appendChild( btn );
// Add WikiEditor context to the textarea.
cmWe.$textarea.data = jest.fn().mockReturnValue( {
modules: {
toolbar: {
$toolbar: $( btn )
}
}
} );
// Initialize CodeMirror.
cmWe.initialize();
} );
describe( 'addCodeMirrorToWikiEditor', () => {
cmWe.$textarea.wikiEditor = jest.fn();
it( 'should add the button to the toolbar', () => {
cmWe.addCodeMirrorToWikiEditor();
expect( cmWe.$textarea.wikiEditor ).toHaveBeenCalledWith(
'addToToolbar',
expect.objectContaining( {
groups: { codemirror: expect.any( Object ) }
} )
);
} );
it( 'should be readonly when the textarea is also readonly', () => {
const textarea = document.createElement( 'textarea' );
textarea.readOnly = true;
const cmWe2 = new CodeMirrorWikiEditor( textarea );
cmWe2.initialize();
cmWe2.addCodeMirrorToWikiEditor();
expect( cmWe2.readOnly ).toEqual( true );
expect( cmWe2.state.readOnly ).toEqual( true );
} );
} );
describe( 'updateToolbarButton', () => {
it( 'should update the toolbar button based on the current CodeMirror state', () => {
const btn = document.getElementById( 'mw-editbutton-codemirror' );
cmWe.setCodeMirrorPreference( false );
cmWe.updateToolbarButton();
expect( btn.classList.contains( 'mw-editbutton-codemirror-active' ) ).toBeFalsy();
cmWe.setCodeMirrorPreference( true );
cmWe.updateToolbarButton();
expect( btn.classList.contains( 'mw-editbutton-codemirror-active' ) ).toBeTruthy();
} );
} );