/*! * VisualEditor UserInterface MWWikitextStringTransferHandler tests. * * @copyright 2011-2017 VisualEditor Team and others; see http://ve.mit-license.org */ var MWWIKITEXT_MOCK_API = true; QUnit.module( 've.ui.MWWikitextStringTransferHandler', QUnit.newMwEnvironment( { setup: function () { // Mock XHR for mw.Api() this.server = MWWIKITEXT_MOCK_API ? this.sandbox.useFakeServer() : null; ve.test.utils.mwEnvironment.setup.call( this ); }, teardown: ve.test.utils.mwEnvironment.teardown } ) ); /* Tests */ function runWikitextStringHandlerTest( assert, server, string, mimeType, expectedResponse, expectedData, annotations, assertDom, msg ) { var handler, i, j, name, done = assert.async(), item = ve.ui.DataTransferItem.static.newFromString( string, mimeType ), doc = new ve.dm.Document( [] ), mockSurface = { getModel: function () { return { getDocument: function () { return doc; } }; }, createProgress: function () { return $.Deferred().promise(); } }; // Preprocess the expectedData array for ( i = 0; i < expectedData.length; i++ ) { if ( Array.isArray( expectedData[ i ] ) ) { for ( j = 0; j < expectedData[ i ][ 1 ].length; j++ ) { if ( typeof expectedData[ i ][ 1 ][ j ] === 'number' ) { expectedData[ i ][ 1 ][ j ] = annotations[ expectedData[ i ][ 1 ][ j ] ]; } } } } // Check we match the wikitext string handler name = ve.ui.dataTransferHandlerFactory.getHandlerNameForItem( item ); assert.strictEqual( name, 'wikitextString', msg + ': triggers match function' ); // Invoke the handler handler = ve.ui.dataTransferHandlerFactory.create( 'wikitextString', mockSurface, item ); handler.getInsertableData().done( function ( doc2 ) { var actualData = doc2.getData(); ve.dm.example.postprocessAnnotations( actualData, doc2.getStore() ); if ( assertDom ) { assert.equalLinearDataWithDom( doc2.getStore(), actualData, expectedData, msg + ': data match (with DOM)' ); } else { assert.equalLinearData( actualData, expectedData, msg + ': data match' ); } done(); } ); if ( server ) { server.respond( [ 200, { 'Content-Type': 'application/json' }, JSON.stringify( { visualeditor: { result: 'success', content: '' + expectedResponse + '' } } ) ] ); } } QUnit.test( 'convert', function ( assert ) { var i, cases = [ { msg: 'Simple link', // Put link in the middle of text to verify that the // start-of-line and end-or-line anchors on the heading // identification pattern don't affect link identification pasteString: 'some [[Foo]] text', pasteType: 'text/plain', parsoidResponse: '

some Foo text

', annotations: [ { type: 'link/mwInternal', attributes: { hrefPrefix: './', lookupTitle: 'Foo', normalizedTitle: 'Foo', origTitle: 'Foo', title: 'Foo' } } ], expectedData: [ 's', 'o', 'm', 'e', ' ', [ 'F', [ 0 ] ], [ 'o', [ 0 ] ], [ 'o', [ 0 ] ], ' ', 't', 'e', 'x', 't', { type: 'internalList' }, { type: '/internalList' } ] }, { msg: 'Simple link with no p-wrapping', pasteString: '*[[Foo]]', pasteType: 'text/plain', parsoidResponse: '', annotations: [ { type: 'link/mwInternal', attributes: { hrefPrefix: './', lookupTitle: 'Foo', normalizedTitle: 'Foo', origTitle: 'Foo', title: 'Foo' } } ], expectedData: [ { type: 'list', attributes: { style: 'bullet' } }, { type: 'listItem' }, { type: 'paragraph', internal: { generated: 'wrapper' } }, [ 'F', [ 0 ] ], [ 'o', [ 0 ] ], [ 'o', [ 0 ] ], { type: '/paragraph' }, { type: '/listItem' }, { type: '/list' }, { type: 'internalList' }, { type: '/internalList' } ] }, { msg: 'Headings, only RESTBase IDs stripped', pasteString: '==heading==', pasteType: 'text/plain', parsoidResponse: '

foo

bar

', annotations: [], assertDom: true, expectedData: [ { type: 'mwHeading', attributes: { level: 2 }, originalDomElements: $( '

foo

' ).toArray() }, 'f', 'o', 'o', { type: '/mwHeading' }, { type: 'mwHeading', attributes: { level: 2 }, originalDomElements: $( '

bar

' ).toArray() }, 'b', 'a', 'r', { type: '/mwHeading' }, { type: 'internalList' }, { type: '/internalList' } ] }, { msg: 'Magic link (RFC)', pasteString: 'RFC 1234', pasteType: 'text/plain', parsoidResponse: '

RFC 1234

', annotations: [], expectedData: [ { type: 'link/mwMagic', attributes: { content: 'RFC 1234', origText: 'RFC 1234', origHtml: 'RFC 1234' } }, { type: '/link/mwMagic' }, { type: 'internalList' }, { type: '/internalList' } ] }, { msg: 'Magic link (PMID)', pasteString: 'PMID 1234', pasteType: 'text/plain', parsoidResponse: '

PMID 1234

', annotations: [], expectedData: [ { type: 'link/mwMagic', attributes: { content: 'PMID 1234', origText: 'PMID 1234', origHtml: 'PMID 1234' } }, { type: '/link/mwMagic' }, { type: 'internalList' }, { type: '/internalList' } ] }, { msg: 'Magic link (ISBN)', pasteString: 'ISBN 123456789X', pasteType: 'text/plain', parsoidResponse: '

ISBN 123456789X

', annotations: [], expectedData: [ { type: 'link/mwMagic', attributes: { content: 'ISBN 123456789X', origText: 'ISBN 123456789X', origHtml: 'ISBN 123456789X' } }, { type: '/link/mwMagic' }, { type: 'internalList' }, { type: '/internalList' } ] }, { msg: 'Simple reference', pasteString: 'Foo', pasteType: 'text/plain', parsoidResponse: '

[1]

' + '
    ' + '
  1. Foo
  2. ' + '
', annotations: [], expectedData: [ { type: 'mwReference', attributes: { mw: { attrs: {}, body: { id: 'mw-reference-text-cite_note-1' }, name: 'ref' }, contentsUsed: true, listGroup: 'mwReference/', listIndex: 0, listKey: 'auto/0', originalMw: '{"name":"ref","body":{"id":"mw-reference-text-cite_note-1"},"attrs":{}}', refGroup: '', refListItemId: 'mw-reference-text-cite_note-1' } }, { type: '/mwReference' }, { type: 'internalList' }, { type: 'internalItem' }, { type: 'paragraph', internal: { generated: 'wrapper' } }, 'F', 'o', 'o', { type: '/paragraph' }, { type: '/internalItem' }, { type: '/internalList' } ] }, { msg: 'Reference template with autoGenerated content', pasteString: '{{reference}}', pasteType: 'text/plain', parsoidResponse: '

[1]

' + '
    ' + '
  1. Reference list
  2. ' + '
', annotations: [], expectedData: [ { type: 'mwTransclusionInline', attributes: { mw: {}, originalMw: null } }, { type: '/mwTransclusionInline' }, { type: 'internalList' }, { type: '/internalList' } ] } ]; QUnit.expect( cases.length * 2 ); for ( i = 0; i < cases.length; i++ ) { runWikitextStringHandlerTest( assert, this.server, cases[ i ].pasteString, cases[ i ].pasteType, cases[ i ].parsoidResponse, cases[ i ].expectedData, cases[ i ].annotations, cases[ i ].assertDom, cases[ i ].msg ); } } );