123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- module('plugins.searchreplace');
- test('trace 3381:查找',function(){
- if(ua.browser.opera)
- return;
- var editor = te.obj[0];
- var range = te.obj[1];
- editor.setContent('<p>hello啊</p>');
- stop();
- setTimeout(function(){
- range.setStart(editor.body.firstChild,0).collapse(true).select();
- var num = editor.execCommand('searchreplace',{searchStr:'啊'});
- ua.manualDeleteFillData(editor.body);
- equal(editor.body.firstChild.innerHTML,'hello啊');
- equal(editor.selection.getRange().collapsed,false,'检查选区:不闭合为找到');
- start();
- },20);
- });
- //
- ///*trace 974,先替换再撤销再全部替换,则不会替换
- //* ie下会出现的bug*/
- test(' trace 3697全部替换',function(){
- //todo trace 3697
- if(ua.browser.opera)
- return;
- var editor = te.obj[0];
- var range = te.obj[1];
- editor.setContent('<p>欢迎回来</p>');
- range.setStart(editor.body.firstChild,0).collapse(true).select();
- editor.execCommand('searchreplace',{searchStr:'欢迎',replaceStr:'你好'});
- editor.undoManger.undo();
- editor.execCommand('searchreplace',{searchStr:'欢迎',replaceStr:'你好',all:true});
- ua.manualDeleteFillData(editor.body);
- equal(editor.body.firstChild.innerHTML,'你好回来');
- });
- ///*trace 917*/
- ///*trace 3288*/todo
- //test('替换内容包含查找内容,全部替换',function(){
- // if(ua.browser.opera)
- // return;
- // var editor = te.obj[0];
- // var range = te.obj[1];
- // editor.setContent('<p>hello回来</p>');
- // range.setStart(editor.body.firstChild,0).collapse(true).select();
- // /*searchreplace文件里是一个闭包,闭包中有一个全局变量currentRange,在上一次用例执行结束后仍然会保存这个值,导致下一次用例受影响*/
- // editor.execCommand('searchreplace',{searchStr:'hello',replaceStr:'hello啊',all:true});
- // ua.manualDeleteFillData(editor.body);
- // equal(editor.body.firstChild.innerHTML,'hello啊回来');
- //});
- /*trace 973*/
- test(' trace 3697替换内容包含查找内容',function(){
- if(ua.browser.opera)
- return;
- var editor = te.obj[0];
- var range = te.obj[1];
- editor.setContent('<p>欢迎回来</p>');
- range.setStart(editor.body.firstChild,0).collapse(1).select();
- editor.execCommand('searchreplace',{searchStr:'欢迎',replaceStr:'欢迎啊'});
- ua.manualDeleteFillData(editor.body);
- equal(editor.body.firstChild.innerHTML,'欢迎啊回来');
- editor.undoManger.undo();
- ua.manualDeleteFillData(editor.body);
- equal(editor.body.firstChild.innerHTML,'欢迎回来');
- });
- //
- ///*trace 1286*/todo
- //test('连续2次全部替换',function(){
- // if(ua.browser.opera)
- // return;
- // var editor = te.obj[0];
- // editor.setContent('<p>欢迎回来</p>');
- // editor.execCommand('searchreplace',{searchStr:'欢迎',replaceStr:'欢迎啊',all:true});
- // ua.manualDeleteFillData(editor.body);
- // equal(editor.body.firstChild.innerHTML,'欢迎啊回来');
- // editor.execCommand('searchreplace',{searchStr:'欢迎',replaceStr:'欢迎啊',all:true});
- // ua.manualDeleteFillData(editor.body);
- // equal(editor.body.firstChild.innerHTML,'欢迎啊啊回来');
- //});
- //
- test('替换内容为空',function(){
- if(ua.browser.opera)
- return;
- var editor = te.obj[0];
- editor.setContent('<p>欢迎回来</p>');
- stop();
- setTimeout(function(){
- editor.focus();
- editor.execCommand('searchreplace',{searchStr:'欢迎',replaceStr:''});
- ua.manualDeleteFillData(editor.body);
- equal(editor.body.firstChild.innerHTML,'回来');
- start();
- },50);
- });
- //
- test('全部替换内容为空',function(){
- if(ua.browser.opera)
- return;
- var editor = te.obj[0];
- editor.setContent('<p>欢迎回来 欢迎啊</p>');
- editor.execCommand('searchreplace',{searchStr:'欢迎',replaceStr:'',all:true});
- ua.manualDeleteFillData(editor.body);
- equal(editor.body.firstChild.innerHTML,'回来 啊');
- });
- //test('查找替换支持正则',function(){
- // if(ua.browser.opera)
- // return;
- // var editor = te.obj[0];
- // editor.setContent('<p>sd2323fasdfasd3434f</p>');
- // //因为是字符表示的正则要做转换
- // editor.execCommand('searchreplace',{searchStr:'/\\d+/',replaceStr:'',all:true});
- // ua.manualDeleteFillData(editor.body);
- // equal(editor.body.firstChild.innerHTML,'sdfasdfasdf');
- // editor.setContent('<p>sd2323fasdfasd3434f</p><p>首都发生地2323方</p>');
- // editor.execCommand('searchreplace',{searchStr:'/\\d+/',replaceStr:'',all:true});
- // ua.manualDeleteFillData(editor.body);
- // equal(editor.body.innerHTML.toLowerCase().replace(/>\s+</g,'><'),'<p>sdfasdfasdf</p><p>首都发生地方</p>');
- //});
|