Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/VisualEditor/lib/ve/tests/ui/datatransferhandlers/ve.ui.UrlStringTransferHandler.test.js
Ðазад
/*! * VisualEditor UserInterface UrlStringTransferHandler tests. * * @copyright See AUTHORS.txt */ QUnit.module( 've.ui.UrlStringTransferHandler' ); /* Tests */ ve.test.utils.runUrlStringHandlerTest = function ( assert, string, htmlString, mimeType, expectedDataFunc, base, msg ) { const done = assert.async(), item = ve.ui.DataTransferItem.static.newFromString( string, mimeType, htmlString ), doc = ve.dm.example.createExampleDocument( null, null, base ), mockSurface = { getModel: function () { return { getDocument: function () { return doc; } }; } }, linkAction = ve.ui.actionFactory.create( 'link', mockSurface ), makeLinkAnnotation = function ( href ) { return linkAction.getLinkAnnotation( href ).element; }; // Invoke the handler const handler = ve.ui.dataTransferHandlerFactory.create( 'urlString', mockSurface, item ); handler.getInsertableData().done( ( actualData ) => { ve.dm.example.postprocessAnnotations( actualData, doc.getStore() ); assert.equalLinearData( actualData, expectedDataFunc( makeLinkAnnotation ), msg + ': data match' ); done(); } ); }; QUnit.test( 'paste', ( assert ) => { const cases = [ { msg: 'Simple external link', pasteString: 'http://example.com', pasteType: 'text/plain', expectedData: function ( makeAnnotation ) { const a = makeAnnotation( 'http://example.com' ); return [ [ 'h', [ a ] ], [ 't', [ a ] ], [ 't', [ a ] ], [ 'p', [ a ] ], [ ':', [ a ] ], [ '/', [ a ] ], [ '/', [ a ] ], [ 'e', [ a ] ], [ 'x', [ a ] ], [ 'a', [ a ] ], [ 'm', [ a ] ], [ 'p', [ a ] ], [ 'l', [ a ] ], [ 'e', [ a ] ], [ '.', [ a ] ], [ 'c', [ a ] ], [ 'o', [ a ] ], [ 'm', [ a ] ] ]; } }, { msg: 'DnD standard URI list without HTML', pasteString: '#comment\nhttp://example.com\n', pasteType: 'text/uri-list', expectedData: function ( makeAnnotation ) { const a = makeAnnotation( 'http://example.com' ); return [ [ 'h', [ a ] ], [ 't', [ a ] ], [ 't', [ a ] ], [ 'p', [ a ] ], [ ':', [ a ] ], [ '/', [ a ] ], [ '/', [ a ] ], [ 'e', [ a ] ], [ 'x', [ a ] ], [ 'a', [ a ] ], [ 'm', [ a ] ], [ 'p', [ a ] ], [ 'l', [ a ] ], [ 'e', [ a ] ], [ '.', [ a ] ], [ 'c', [ a ] ], [ 'o', [ a ] ], [ 'm', [ a ] ] ]; } }, { msg: 'DnD standard URI list with HTML', pasteString: '#comment\nhttp://example.com\n', pasteType: 'text/uri-list', pasteHtml: '<a href="http://example.com/foo">Foo</a>', expectedData: function ( makeAnnotation ) { const a = makeAnnotation( 'http://example.com/foo' ); return [ [ 'F', [ a ] ], [ 'o', [ a ] ], [ 'o', [ a ] ] ]; } }, { msg: 'Mozilla URI list', pasteString: 'http://example.com\n[[Foo]]\nhttp://example.org\nBar', pasteType: 'text/x-moz-url', expectedData: function ( makeAnnotation ) { const a1 = makeAnnotation( 'http://example.com' ), a2 = makeAnnotation( 'http://example.org' ); return [ [ '[', [ a1 ] ], [ '[', [ a1 ] ], [ 'F', [ a1 ] ], [ 'o', [ a1 ] ], [ 'o', [ a1 ] ], [ ']', [ a1 ] ], [ ']', [ a1 ] ], ' ', [ 'B', [ a2 ] ], [ 'a', [ a2 ] ], [ 'r', [ a2 ] ] ]; } } ]; cases.forEach( ( caseItem ) => { ve.test.utils.runUrlStringHandlerTest( assert, caseItem.pasteString, caseItem.pasteHtml, caseItem.pasteType, caseItem.expectedData, ve.dm.example.baseUri, caseItem.msg ); } ); } );
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка