// WARNING: drag and drop is only simulated on these tests, so manual testing might also be necessary describe('drag and drop', function () { before(function (done) { helper.newPad(() => { createScriptWithSeveralLines(done); }); this.timeout(60000); }); context('when user drags part of one line and drops it far form its original place', function () { before(function (done) { selectPartOfSourceLine(); dragSelectedTextAndDropItIntoMiddleOfLine(TARGET_LINE); // make sure DnD was correctly simulated helper.waitFor(() => { const $targetLine = getLine(TARGET_LINE); const sourceWasMovedToTarget = $targetLine.text() === 'Target line [line 1]'; return sourceWasMovedToTarget; }).done(done); }); context('and user triggers UNDO', function () { before(function () { const $undoButton = helper.padChrome$('.buttonicon-undo'); $undoButton.click(); }); it('moves text back to its original place', function (done) { // test text was removed from drop target const $targetLine = getLine(TARGET_LINE); expect($targetLine.text()).to.be('Target line []'); // test text was added back to original place const $firstSourceLine = getLine(FIRST_SOURCE_LINE); const $lastSourceLine = getLine(FIRST_SOURCE_LINE + 1); expect($firstSourceLine.text()).to.be('Source line 1.'); expect($lastSourceLine.text()).to.be('Source line 2.'); done(); }); }); }); context('when user drags some lines far form its original place', function () { before(function (done) { selectMultipleSourceLines(); dragSelectedTextAndDropItIntoMiddleOfLine(TARGET_LINE); // make sure DnD was correctly simulated helper.waitFor(() => { const $lineAfterTarget = getLine(TARGET_LINE + 1); const sourceWasMovedToTarget = $lineAfterTarget.text() !== '...'; return sourceWasMovedToTarget; }).done(done); }); context('and user triggers UNDO', function () { before(function () { const $undoButton = helper.padChrome$('.buttonicon-undo'); $undoButton.click(); }); it('moves text back to its original place', function (done) { // test text was removed from drop target const $targetLine = getLine(TARGET_LINE); expect($targetLine.text()).to.be('Target line []'); // test text was added back to original place const $firstSourceLine = getLine(FIRST_SOURCE_LINE); const $lastSourceLine = getLine(FIRST_SOURCE_LINE + 1); expect($firstSourceLine.text()).to.be('Source line 1.'); expect($lastSourceLine.text()).to.be('Source line 2.'); done(); }); }); }); /* ********************* Helper functions/constants ********************* */ var TARGET_LINE = 2; var FIRST_SOURCE_LINE = 5; var getLine = function (lineNumber) { const $lines = helper.padInner$('div'); return $lines.slice(lineNumber, lineNumber + 1); }; var createScriptWithSeveralLines = function (done) { // create some lines to be used on the tests const $firstLine = helper.padInner$('div').first(); $firstLine.html('...
...
Target line []
...
...
Source line 1.
Source line 2.
'); // wait for lines to be split helper.waitFor(() => { const $lastSourceLine = getLine(FIRST_SOURCE_LINE + 1); return $lastSourceLine.text() === 'Source line 2.'; }).done(done); }; var selectPartOfSourceLine = function () { const $sourceLine = getLine(FIRST_SOURCE_LINE); // select 'line 1' from 'Source line 1.' const start = 'Source '.length; const end = start + 'line 1'.length; helper.selectLines($sourceLine, $sourceLine, start, end); }; var selectMultipleSourceLines = function () { const $firstSourceLine = getLine(FIRST_SOURCE_LINE); const $lastSourceLine = getLine(FIRST_SOURCE_LINE + 1); helper.selectLines($firstSourceLine, $lastSourceLine); }; var dragSelectedTextAndDropItIntoMiddleOfLine = function (targetLineNumber) { // dragstart: start dragging content triggerEvent('dragstart'); // drop: get HTML data from selected text const draggedHtml = getHtmlFromSelectedText(); triggerEvent('drop'); // dragend: remove original content + insert HTML data into target moveSelectionIntoTarget(draggedHtml, targetLineNumber); triggerEvent('dragend'); }; var getHtmlFromSelectedText = function () { const innerDocument = helper.padInner$.document; const range = innerDocument.getSelection().getRangeAt(0); const clonedSelection = range.cloneContents(); const span = innerDocument.createElement('span'); span.id = 'buffer'; span.appendChild(clonedSelection); const draggedHtml = span.outerHTML; return draggedHtml; }; var triggerEvent = function (eventName) { const event = helper.padInner$.Event(eventName); helper.padInner$('#innerdocbody').trigger(event); }; var moveSelectionIntoTarget = function (draggedHtml, targetLineNumber) { const innerDocument = helper.padInner$.document; // delete original content innerDocument.execCommand('delete'); // set position to insert content on target line const $target = getLine(targetLineNumber); $target.sendkeys('{selectall}{rightarrow}{leftarrow}'); // Insert content. // Based on http://stackoverflow.com/a/6691294, to be IE-compatible const range = innerDocument.getSelection().getRangeAt(0); const frag = innerDocument.createDocumentFragment(); const el = innerDocument.createElement('div'); el.innerHTML = draggedHtml; while (el.firstChild) { frag.appendChild(el.firstChild); } range.insertNode(frag); }; });