123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- module('plugins.autosave');
- test('自动保存', function () {
- expect(8);
- var container = te.obj[0].container,
- editor = null,
- count = 0;
- UE.delEditor(te.obj[0]);
- container.parentNode.removeChild(container);
- container = document.createElement("div");
- container.id = "container";
- document.body.appendChild(container);
- editor = UE.getEditor("container", {
- initialContent: "",
- //无限制
- saveInterval: 0
- });
- editor.addListener("beforeautosave", function (type, data) {
- data.content = data.content.toLowerCase();
- equal(true, true, "成功触发beforeautosave事件");
- equal(data.content === "<p>http://www.baidu.com</p>" || data.content === "<p>disable</p>", true, "事件携带数据正确");
- });
- editor.addListener("beforeautosave", function (type, data) {
- data.content = data.content.toLowerCase();
- if (data.content === "<p>disable</p>") {
- return false;
- }
- count++;
- });
- editor.addListener("afterautosave", function (type, data) {
- data.content = data.content.toLowerCase();
- equal(data.content, "<p>http://www.baidu.com</p>", "成功触发afterautosave事件");
- equal(editor.execCommand("getlocaldata") !== null, true, "getlocaldata命令正常");
- editor.execCommand("clearlocaldata");
- equal(editor.execCommand("getlocaldata") === "", true, "clearlocaldata命令正常");
- });
- stop();
- window.setTimeout(function () {
- editor.setContent('<p>disable</p>');
- window.setTimeout(function () {
- editor.setContent('<p>http://www.baidu.com</p>');
- window.setTimeout(function () {
- equal(count, 1, "触发事件次数");
- start();
- }, 500);
- UE.delEditor("container");
- container.parentNode.removeChild(container);
- }, 50);
- }, 500);
- });
- test('重建编辑器,加载草稿箱', function () {
- UE.delEditor(te.obj[0]);
- te.obj[0].container.parentNode.removeChild(te.obj[0].container);
- var div = document.body.appendChild(document.createElement('div'));
- div.id = 'ue';
- var editor = UE.getEditor('ue', {saveInterval: 0});
- setTimeout(function () {
- var content = '<p>内容</p>';
- editor.setContent(content);
- setTimeout(function () {
- UE.delEditor('ue');
- document.getElementById('ue') && document.getElementById('ue').parentNode.removeChild(document.getElementById('ue'));
- var div = document.body.appendChild(document.createElement('div'));
- div.id = 'ue';
- var editor2 = UE.getEditor('ue');
- setTimeout(function () {
- equal(editor2.queryCommandState('drafts'), 0, '草稿箱可用');
- editor2.execCommand('drafts');
- ua.checkSameHtml(editor2.body.innerHTML, content, '内容加载正确');
- UE.delEditor('ue');
- document.getElementById('ue') && document.getElementById('ue').parentNode.removeChild(document.getElementById('ue'));
- start();
- }, 500);
- }, 200);
- }, 500);
- stop();
- });
|