JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "SelectionMatcherTest.js"
Full Path: /var/www/html/ctctaxi/public/plugins/tinymce/themes/inlite/src/test/js/browser/core/SelectionMatcherTest.js
File size: 2.74 KB
MIME-type: text/plain
Charset: utf-8
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, '<p>a</p>', [0], 0, [0], 1, true),
sTextSelectionTest(tinyApis, editor, '<p>a</p>', [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, '<p>a</p>', [0], 0, [0], 0, false),
sEmptyTextBlockTest(tinyApis, editor, '<p>a</p>', [0], 0, [0], 1, false),
sEmptyTextBlockTest(tinyApis, editor, '<p><br></p>', [0], 0, [0], 0, true),
sEmptyTextBlockTest(tinyApis, editor, '<p><em><br></em></p>', [0, 0], 0, [0, 0], 0, true)
]);
};
TinyLoader.setup(function (editor, onSuccess, onFailure) {
var tinyApis = TinyApis(editor);
Pipeline.async({}, [
sTextSelectionTests(tinyApis, editor),
sEmptyTextBlockTests(tinyApis, editor)
], onSuccess, onFailure);
}, {
inline: true
}, success, failure);
});