asynctest('browser/core/SelectionMatcherTest', [ 'ephox.mcagar.api.TinyLoader', 'ephox.mcagar.api.TinyApis', 'ephox.agar.api.Step', 'ephox.agar.api.Assertions', 'tinymce/inlite/core/SelectionMatcher', 'tinymce/inlite/core/PredicateId', 'ephox.agar.api.GeneralSteps', 'ephox.agar.api.Pipeline' ], function (TinyLoader, TinyApis, Step, Assertions, SelectionMatcher, PredicateId, GeneralSteps, Pipeline) { var success = arguments[arguments.length - 2]; var failure = arguments[arguments.length - 1]; var assertResult = function (expectedResultState, result) { Assertions.assertEq('Should not be null', result !== null, expectedResultState); if (expectedResultState === true) { Assertions.assertEq('Should be matching a', result.id, 'a'); Assertions.assertEq('Should be have width', result.rect.w > 0, true); } }; var sTextSelectionTest = function (tinyApis, editor, inputHtml, spath, soffset, fpath, foffset, expectedResultState) { var sAssertTextSelectionResult = Step.sync(function () { var result = SelectionMatcher.textSelection('a')(editor); assertResult(expectedResultState, result); }); return GeneralSteps.sequence([ tinyApis.sSetContent(inputHtml), tinyApis.sSetSelection(spath, soffset, fpath, foffset), sAssertTextSelectionResult ]); }; var sTextSelectionTests = function (tinyApis, editor) { return GeneralSteps.sequence([ sTextSelectionTest(tinyApis, editor, '
a
', [0], 0, [0], 1, true), sTextSelectionTest(tinyApis, editor, 'a
', [0], 0, [0], 0, false) ]); }; var sEmptyTextBlockTest = function (tinyApis, editor, inputHtml, spath, soffset, fpath, foffset, expectedResultState) { var sAssertTextSelectionResult = Step.sync(function () { var elements = editor.dom.getParents(editor.selection.getStart()); var result = SelectionMatcher.emptyTextBlock(elements, 'a')(editor); assertResult(expectedResultState, result); }); return GeneralSteps.sequence([ tinyApis.sSetContent(inputHtml), tinyApis.sSetSelection(spath, soffset, fpath, foffset), sAssertTextSelectionResult ]); }; var sEmptyTextBlockTests = function (tinyApis, editor) { return GeneralSteps.sequence([ sEmptyTextBlockTest(tinyApis, editor, 'a
', [0], 0, [0], 0, false), sEmptyTextBlockTest(tinyApis, editor, 'a
', [0], 0, [0], 1, false), sEmptyTextBlockTest(tinyApis, editor, '