import { Assertions, Pipeline, Step } from '@ephox/agar'; import { UnitTest } from '@ephox/bedrock'; import { TinyApis, TinyDom, TinyLoader } from '@ephox/mcagar'; import LinkPluginUtils from 'tinymce/plugins/link/core/Utils'; import LinkPlugin from 'tinymce/plugins/link/Plugin'; import ModernTheme from 'tinymce/themes/modern/Theme'; UnitTest.asynctest('browser.tinymce.plugins.link.ImageFigureLinkTest', function () { const success = arguments[arguments.length - 2]; const failure = arguments[arguments.length - 1]; ModernTheme(); LinkPlugin(); TinyLoader.setup(function (editor, onSuccess, onFailure) { const api = TinyApis(editor); const sLinkTheSelection = function () { const insertLink = LinkPluginUtils.link(editor, {}); return Step.sync(function () { insertLink({ href: 'http://google.com' }); }); }; const sUnlinkSelection = function () { const removeLink = LinkPluginUtils.unlink(editor); return Step.sync(function () { removeLink(); }); }; const sAssertPresense = function (selector) { return Assertions.sAssertPresence('Detect presense of the element', selector, TinyDom.fromDom(editor.getBody())); }; Pipeline.async({}, [ api.sSetContent( '
' + '' + '
TinyMCE
' + '
' ), api.sSetSelection([0], 0, [0], 0), sLinkTheSelection(), sAssertPresense({ 'figure.image > a[href="http://google.com"] > img': 1 }), api.sSetSelection([0], 0, [0], 0), sUnlinkSelection(), sAssertPresense({ 'figure.image > img': 1 }) ], onSuccess, onFailure); }, { plugins: 'link', toolbar: 'link', skin_url: '/project/js/tinymce/skins/lightgray' }, success, failure); });