12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403 |
- var Pos = CodeMirror.Pos;
- function forEach(arr, f) {
- for (var i = 0, e = arr.length; i < e; ++i) f(arr[i]);
- }
- function addDoc(cm, width, height) {
- var content = [], line = "";
- for (var i = 0; i < width; ++i) line += "x";
- for (var i = 0; i < height; ++i) content.push(line);
- cm.setValue(content.join("\n"));
- }
- function byClassName(elt, cls) {
- if (elt.getElementsByClassName) return elt.getElementsByClassName(cls);
- var found = [], re = new RegExp("\\b" + cls + "\\b");
- function search(elt) {
- if (elt.nodeType == 3) return;
- if (re.test(elt.className)) found.push(elt);
- for (var i = 0, e = elt.childNodes.length; i < e; ++i)
- search(elt.childNodes[i]);
- }
- search(elt);
- return found;
- }
- var ie_lt8 = /MSIE [1-7]\b/.test(navigator.userAgent);
- var mac = /Mac/.test(navigator.platform);
- var phantom = /PhantomJS/.test(navigator.userAgent);
- var opera = /Opera\/\./.test(navigator.userAgent);
- var opera_version = opera && navigator.userAgent.match(/Version\/(\d+\.\d+)/);
- if (opera_version) opera_version = Number(opera_version);
- var opera_lt10 = opera && (!opera_version || opera_version < 10);
- namespace = "core_";
- test("core_fromTextArea", function() {
- var te = document.getElementById("code");
- te.value = "CONTENT";
- var cm = CodeMirror.fromTextArea(te);
- is(!te.offsetHeight);
- eq(cm.getValue(), "CONTENT");
- cm.setValue("foo\nbar");
- eq(cm.getValue(), "foo\nbar");
- cm.save();
- is(/^foo\r?\nbar$/.test(te.value));
- cm.setValue("xxx");
- cm.toTextArea();
- is(te.offsetHeight);
- eq(te.value, "xxx");
- });
- testCM("getRange", function(cm) {
- eq(cm.getLine(0), "1234");
- eq(cm.getLine(1), "5678");
- eq(cm.getLine(2), null);
- eq(cm.getLine(-1), null);
- eq(cm.getRange(Pos(0, 0), Pos(0, 3)), "123");
- eq(cm.getRange(Pos(0, -1), Pos(0, 200)), "1234");
- eq(cm.getRange(Pos(0, 2), Pos(1, 2)), "34\n56");
- eq(cm.getRange(Pos(1, 2), Pos(100, 0)), "78");
- }, {value: "1234\n5678"});
- testCM("replaceRange", function(cm) {
- eq(cm.getValue(), "");
- cm.replaceRange("foo\n", Pos(0, 0));
- eq(cm.getValue(), "foo\n");
- cm.replaceRange("a\nb", Pos(0, 1));
- eq(cm.getValue(), "fa\nboo\n");
- eq(cm.lineCount(), 3);
- cm.replaceRange("xyzzy", Pos(0, 0), Pos(1, 1));
- eq(cm.getValue(), "xyzzyoo\n");
- cm.replaceRange("abc", Pos(0, 0), Pos(10, 0));
- eq(cm.getValue(), "abc");
- eq(cm.lineCount(), 1);
- });
- testCM("selection", function(cm) {
- cm.setSelection(Pos(0, 4), Pos(2, 2));
- is(cm.somethingSelected());
- eq(cm.getSelection(), "11\n222222\n33");
- eqPos(cm.getCursor(false), Pos(2, 2));
- eqPos(cm.getCursor(true), Pos(0, 4));
- cm.setSelection(Pos(1, 0));
- is(!cm.somethingSelected());
- eq(cm.getSelection(), "");
- eqPos(cm.getCursor(true), Pos(1, 0));
- cm.replaceSelection("abc");
- eq(cm.getSelection(), "abc");
- eq(cm.getValue(), "111111\nabc222222\n333333");
- cm.replaceSelection("def", "end");
- eq(cm.getSelection(), "");
- eqPos(cm.getCursor(true), Pos(1, 3));
- cm.setCursor(Pos(2, 1));
- eqPos(cm.getCursor(true), Pos(2, 1));
- cm.setCursor(1, 2);
- eqPos(cm.getCursor(true), Pos(1, 2));
- }, {value: "111111\n222222\n333333"});
- testCM("extendSelection", function(cm) {
- cm.setExtending(true);
- addDoc(cm, 10, 10);
- cm.setSelection(Pos(3, 5));
- eqPos(cm.getCursor("head"), Pos(3, 5));
- eqPos(cm.getCursor("anchor"), Pos(3, 5));
- cm.setSelection(Pos(2, 5), Pos(5, 5));
- eqPos(cm.getCursor("head"), Pos(5, 5));
- eqPos(cm.getCursor("anchor"), Pos(2, 5));
- eqPos(cm.getCursor("start"), Pos(2, 5));
- eqPos(cm.getCursor("end"), Pos(5, 5));
- cm.setSelection(Pos(5, 5), Pos(2, 5));
- eqPos(cm.getCursor("head"), Pos(2, 5));
- eqPos(cm.getCursor("anchor"), Pos(5, 5));
- eqPos(cm.getCursor("start"), Pos(2, 5));
- eqPos(cm.getCursor("end"), Pos(5, 5));
- cm.extendSelection(Pos(3, 2));
- eqPos(cm.getCursor("head"), Pos(3, 2));
- eqPos(cm.getCursor("anchor"), Pos(5, 5));
- cm.extendSelection(Pos(6, 2));
- eqPos(cm.getCursor("head"), Pos(6, 2));
- eqPos(cm.getCursor("anchor"), Pos(5, 5));
- cm.extendSelection(Pos(6, 3), Pos(6, 4));
- eqPos(cm.getCursor("head"), Pos(6, 4));
- eqPos(cm.getCursor("anchor"), Pos(5, 5));
- cm.extendSelection(Pos(0, 3), Pos(0, 4));
- eqPos(cm.getCursor("head"), Pos(0, 3));
- eqPos(cm.getCursor("anchor"), Pos(5, 5));
- cm.extendSelection(Pos(4, 5), Pos(6, 5));
- eqPos(cm.getCursor("head"), Pos(6, 5));
- eqPos(cm.getCursor("anchor"), Pos(4, 5));
- cm.setExtending(false);
- cm.extendSelection(Pos(0, 3), Pos(0, 4));
- eqPos(cm.getCursor("head"), Pos(0, 4));
- eqPos(cm.getCursor("anchor"), Pos(0, 3));
- });
- testCM("lines", function(cm) {
- eq(cm.getLine(0), "111111");
- eq(cm.getLine(1), "222222");
- eq(cm.getLine(-1), null);
- cm.removeLine(1);
- cm.setLine(1, "abc");
- eq(cm.getValue(), "111111\nabc");
- }, {value: "111111\n222222\n333333"});
- testCM("indent", function(cm) {
- cm.indentLine(1);
- eq(cm.getLine(1), " blah();");
- cm.setOption("indentUnit", 8);
- cm.indentLine(1);
- eq(cm.getLine(1), "\tblah();");
- cm.setOption("indentUnit", 10);
- cm.setOption("tabSize", 4);
- cm.indentLine(1);
- eq(cm.getLine(1), "\t\t blah();");
- }, {value: "if (x) {\nblah();\n}", indentUnit: 3, indentWithTabs: true, tabSize: 8});
- test("core_defaults", function() {
- var defsCopy = {}, defs = CodeMirror.defaults;
- for (var opt in defs) defsCopy[opt] = defs[opt];
- defs.indentUnit = 5;
- defs.value = "uu";
- defs.enterMode = "keep";
- defs.tabindex = 55;
- var place = document.getElementById("testground"), cm = CodeMirror(place);
- try {
- eq(cm.getOption("indentUnit"), 5);
- cm.setOption("indentUnit", 10);
- eq(defs.indentUnit, 5);
- eq(cm.getValue(), "uu");
- eq(cm.getOption("enterMode"), "keep");
- eq(cm.getInputField().tabIndex, 55);
- }
- finally {
- for (var opt in defsCopy) defs[opt] = defsCopy[opt];
- place.removeChild(cm.getWrapperElement());
- }
- });
- testCM("lineInfo", function(cm) {
- eq(cm.lineInfo(-1), null);
- var mark = document.createElement("span");
- var lh = cm.setGutterMarker(1, "FOO", mark);
- var info = cm.lineInfo(1);
- eq(info.text, "222222");
- eq(info.gutterMarkers.FOO, mark);
- eq(info.line, 1);
- eq(cm.lineInfo(2).gutterMarkers, null);
- cm.setGutterMarker(lh, "FOO", null);
- eq(cm.lineInfo(1).gutterMarkers, null);
- cm.setGutterMarker(1, "FOO", mark);
- cm.setGutterMarker(0, "FOO", mark);
- cm.clearGutter("FOO");
- eq(cm.lineInfo(0).gutterMarkers, null);
- eq(cm.lineInfo(1).gutterMarkers, null);
- }, {value: "111111\n222222\n333333"});
- testCM("coords", function(cm) {
- cm.setSize(null, 100);
- addDoc(cm, 32, 200);
- var top = cm.charCoords(Pos(0, 0));
- var bot = cm.charCoords(Pos(200, 30));
- is(top.left < bot.left);
- is(top.top < bot.top);
- is(top.top < top.bottom);
- cm.scrollTo(null, 100);
- var top2 = cm.charCoords(Pos(0, 0));
- is(top.top > top2.top);
- eq(top.left, top2.left);
- });
- testCM("coordsChar", function(cm) {
- addDoc(cm, 35, 70);
- for (var ch = 0; ch <= 35; ch += 5) {
- for (var line = 0; line < 70; line += 5) {
- cm.setCursor(line, ch);
- var coords = cm.charCoords(Pos(line, ch));
- var pos = cm.coordsChar({left: coords.left, top: coords.top + 5});
- eqPos(pos, Pos(line, ch));
- }
- }
- });
- testCM("posFromIndex", function(cm) {
- cm.setValue(
- "This function should\n" +
- "convert a zero based index\n" +
- "to line and ch."
- );
- var examples = [
- { index: -1, line: 0, ch: 0 }, // <- Tests clipping
- { index: 0, line: 0, ch: 0 },
- { index: 10, line: 0, ch: 10 },
- { index: 39, line: 1, ch: 18 },
- { index: 55, line: 2, ch: 7 },
- { index: 63, line: 2, ch: 15 },
- { index: 64, line: 2, ch: 15 } // <- Tests clipping
- ];
- for (var i = 0; i < examples.length; i++) {
- var example = examples[i];
- var pos = cm.posFromIndex(example.index);
- eq(pos.line, example.line);
- eq(pos.ch, example.ch);
- if (example.index >= 0 && example.index < 64)
- eq(cm.indexFromPos(pos), example.index);
- }
- });
- testCM("undo", function(cm) {
- cm.setLine(0, "def");
- eq(cm.historySize().undo, 1);
- cm.undo();
- eq(cm.getValue(), "abc");
- eq(cm.historySize().undo, 0);
- eq(cm.historySize().redo, 1);
- cm.redo();
- eq(cm.getValue(), "def");
- eq(cm.historySize().undo, 1);
- eq(cm.historySize().redo, 0);
- cm.setValue("1\n\n\n2");
- cm.clearHistory();
- eq(cm.historySize().undo, 0);
- for (var i = 0; i < 20; ++i) {
- cm.replaceRange("a", Pos(0, 0));
- cm.replaceRange("b", Pos(3, 0));
- }
- eq(cm.historySize().undo, 40);
- for (var i = 0; i < 40; ++i)
- cm.undo();
- eq(cm.historySize().redo, 40);
- eq(cm.getValue(), "1\n\n\n2");
- }, {value: "abc"});
- testCM("undoDepth", function(cm) {
- cm.replaceRange("d", Pos(0));
- cm.replaceRange("e", Pos(0));
- cm.replaceRange("f", Pos(0));
- cm.undo(); cm.undo(); cm.undo();
- eq(cm.getValue(), "abcd");
- }, {value: "abc", undoDepth: 2});
- testCM("undoDoesntClearValue", function(cm) {
- cm.undo();
- eq(cm.getValue(), "x");
- }, {value: "x"});
- testCM("undoMultiLine", function(cm) {
- cm.operation(function() {
- cm.replaceRange("x", Pos(0, 0));
- cm.replaceRange("y", Pos(1, 0));
- });
- cm.undo();
- eq(cm.getValue(), "abc\ndef\nghi");
- cm.operation(function() {
- cm.replaceRange("y", Pos(1, 0));
- cm.replaceRange("x", Pos(0, 0));
- });
- cm.undo();
- eq(cm.getValue(), "abc\ndef\nghi");
- cm.operation(function() {
- cm.replaceRange("y", Pos(2, 0));
- cm.replaceRange("x", Pos(1, 0));
- cm.replaceRange("z", Pos(2, 0));
- });
- cm.undo();
- eq(cm.getValue(), "abc\ndef\nghi", 3);
- }, {value: "abc\ndef\nghi"});
- testCM("undoComposite", function(cm) {
- cm.replaceRange("y", Pos(1));
- cm.operation(function() {
- cm.replaceRange("x", Pos(0));
- cm.replaceRange("z", Pos(2));
- });
- eq(cm.getValue(), "ax\nby\ncz\n");
- cm.undo();
- eq(cm.getValue(), "a\nby\nc\n");
- cm.undo();
- eq(cm.getValue(), "a\nb\nc\n");
- cm.redo(); cm.redo();
- eq(cm.getValue(), "ax\nby\ncz\n");
- }, {value: "a\nb\nc\n"});
- testCM("undoSelection", function(cm) {
- cm.setSelection(Pos(0, 2), Pos(0, 4));
- cm.replaceSelection("");
- cm.setCursor(Pos(1, 0));
- cm.undo();
- eqPos(cm.getCursor(true), Pos(0, 2));
- eqPos(cm.getCursor(false), Pos(0, 4));
- cm.setCursor(Pos(1, 0));
- cm.redo();
- eqPos(cm.getCursor(true), Pos(0, 2));
- eqPos(cm.getCursor(false), Pos(0, 2));
- }, {value: "abcdefgh\n"});
- testCM("markTextSingleLine", function(cm) {
- forEach([{a: 0, b: 1, c: "", f: 2, t: 5},
- {a: 0, b: 4, c: "", f: 0, t: 2},
- {a: 1, b: 2, c: "x", f: 3, t: 6},
- {a: 4, b: 5, c: "", f: 3, t: 5},
- {a: 4, b: 5, c: "xx", f: 3, t: 7},
- {a: 2, b: 5, c: "", f: 2, t: 3},
- {a: 2, b: 5, c: "abcd", f: 6, t: 7},
- {a: 2, b: 6, c: "x", f: null, t: null},
- {a: 3, b: 6, c: "", f: null, t: null},
- {a: 0, b: 9, c: "hallo", f: null, t: null},
- {a: 4, b: 6, c: "x", f: 3, t: 4},
- {a: 4, b: 8, c: "", f: 3, t: 4},
- {a: 6, b: 6, c: "a", f: 3, t: 6},
- {a: 8, b: 9, c: "", f: 3, t: 6}], function(test) {
- cm.setValue("1234567890");
- var r = cm.markText(Pos(0, 3), Pos(0, 6), {className: "foo"});
- cm.replaceRange(test.c, Pos(0, test.a), Pos(0, test.b));
- var f = r.find();
- eq(f && f.from.ch, test.f); eq(f && f.to.ch, test.t);
- });
- });
- testCM("markTextMultiLine", function(cm) {
- function p(v) { return v && Pos(v[0], v[1]); }
- forEach([{a: [0, 0], b: [0, 5], c: "", f: [0, 0], t: [2, 5]},
- {a: [0, 0], b: [0, 5], c: "foo\n", f: [1, 0], t: [3, 5]},
- {a: [0, 1], b: [0, 10], c: "", f: [0, 1], t: [2, 5]},
- {a: [0, 5], b: [0, 6], c: "x", f: [0, 6], t: [2, 5]},
- {a: [0, 0], b: [1, 0], c: "", f: [0, 0], t: [1, 5]},
- {a: [0, 6], b: [2, 4], c: "", f: [0, 5], t: [0, 7]},
- {a: [0, 6], b: [2, 4], c: "aa", f: [0, 5], t: [0, 9]},
- {a: [1, 2], b: [1, 8], c: "", f: [0, 5], t: [2, 5]},
- {a: [0, 5], b: [2, 5], c: "xx", f: null, t: null},
- {a: [0, 0], b: [2, 10], c: "x", f: null, t: null},
- {a: [1, 5], b: [2, 5], c: "", f: [0, 5], t: [1, 5]},
- {a: [2, 0], b: [2, 3], c: "", f: [0, 5], t: [2, 2]},
- {a: [2, 5], b: [3, 0], c: "a\nb", f: [0, 5], t: [2, 5]},
- {a: [2, 3], b: [3, 0], c: "x", f: [0, 5], t: [2, 3]},
- {a: [1, 1], b: [1, 9], c: "1\n2\n3", f: [0, 5], t: [4, 5]}], function(test) {
- cm.setValue("aaaaaaaaaa\nbbbbbbbbbb\ncccccccccc\ndddddddd\n");
- var r = cm.markText(Pos(0, 5), Pos(2, 5),
- {className: "CodeMirror-matchingbracket"});
- cm.replaceRange(test.c, p(test.a), p(test.b));
- var f = r.find();
- eqPos(f && f.from, p(test.f)); eqPos(f && f.to, p(test.t));
- });
- });
- testCM("markTextUndo", function(cm) {
- var marker1, marker2, bookmark;
- marker1 = cm.markText(Pos(0, 1), Pos(0, 3),
- {className: "CodeMirror-matchingbracket"});
- marker2 = cm.markText(Pos(0, 0), Pos(2, 1),
- {className: "CodeMirror-matchingbracket"});
- bookmark = cm.setBookmark(Pos(1, 5));
- cm.operation(function(){
- cm.replaceRange("foo", Pos(0, 2));
- cm.replaceRange("bar\nbaz\nbug\n", Pos(2, 0), Pos(3, 0));
- });
- var v1 = cm.getValue();
- cm.setValue("");
- eq(marker1.find(), null); eq(marker2.find(), null); eq(bookmark.find(), null);
- cm.undo();
- eqPos(bookmark.find(), Pos(1, 5), "still there");
- cm.undo();
- var m1Pos = marker1.find(), m2Pos = marker2.find();
- eqPos(m1Pos.from, Pos(0, 1)); eqPos(m1Pos.to, Pos(0, 3));
- eqPos(m2Pos.from, Pos(0, 0)); eqPos(m2Pos.to, Pos(2, 1));
- eqPos(bookmark.find(), Pos(1, 5));
- cm.redo(); cm.redo();
- eq(bookmark.find(), null);
- cm.undo();
- eqPos(bookmark.find(), Pos(1, 5));
- eq(cm.getValue(), v1);
- }, {value: "1234\n56789\n00\n"});
- testCM("markTextStayGone", function(cm) {
- var m1 = cm.markText(Pos(0, 0), Pos(0, 1));
- cm.replaceRange("hi", Pos(0, 2));
- m1.clear();
- cm.undo();
- eq(m1.find(), null);
- }, {value: "hello"});
- testCM("undoPreservesNewMarks", function(cm) {
- cm.markText(Pos(0, 3), Pos(0, 4));
- cm.markText(Pos(1, 1), Pos(1, 3));
- cm.replaceRange("", Pos(0, 3), Pos(3, 1));
- var mBefore = cm.markText(Pos(0, 0), Pos(0, 1));
- var mAfter = cm.markText(Pos(0, 5), Pos(0, 6));
- var mAround = cm.markText(Pos(0, 2), Pos(0, 4));
- cm.undo();
- eqPos(mBefore.find().from, Pos(0, 0));
- eqPos(mBefore.find().to, Pos(0, 1));
- eqPos(mAfter.find().from, Pos(3, 3));
- eqPos(mAfter.find().to, Pos(3, 4));
- eqPos(mAround.find().from, Pos(0, 2));
- eqPos(mAround.find().to, Pos(3, 2));
- var found = cm.findMarksAt(Pos(2, 2));
- eq(found.length, 1);
- eq(found[0], mAround);
- }, {value: "aaaa\nbbbb\ncccc\ndddd"});
- testCM("markClearBetween", function(cm) {
- cm.setValue("aaa\nbbb\nccc\nddd\n");
- cm.markText(Pos(0, 0), Pos(2));
- cm.replaceRange("aaa\nbbb\nccc", Pos(0, 0), Pos(2));
- eq(cm.findMarksAt(Pos(1, 1)).length, 0);
- });
- testCM("bookmark", function(cm) {
- function p(v) { return v && Pos(v[0], v[1]); }
- forEach([{a: [1, 0], b: [1, 1], c: "", d: [1, 4]},
- {a: [1, 1], b: [1, 1], c: "xx", d: [1, 7]},
- {a: [1, 4], b: [1, 5], c: "ab", d: [1, 6]},
- {a: [1, 4], b: [1, 6], c: "", d: null},
- {a: [1, 5], b: [1, 6], c: "abc", d: [1, 5]},
- {a: [1, 6], b: [1, 8], c: "", d: [1, 5]},
- {a: [1, 4], b: [1, 4], c: "\n\n", d: [3, 1]},
- {bm: [1, 9], a: [1, 1], b: [1, 1], c: "\n", d: [2, 8]}], function(test) {
- cm.setValue("1234567890\n1234567890\n1234567890");
- var b = cm.setBookmark(p(test.bm) || Pos(1, 5));
- cm.replaceRange(test.c, p(test.a), p(test.b));
- eqPos(b.find(), p(test.d));
- });
- });
- testCM("bookmarkInsertLeft", function(cm) {
- var br = cm.setBookmark(Pos(0, 2), {insertLeft: false});
- var bl = cm.setBookmark(Pos(0, 2), {insertLeft: true});
- cm.setCursor(Pos(0, 2));
- cm.replaceSelection("hi");
- eqPos(br.find(), Pos(0, 2));
- eqPos(bl.find(), Pos(0, 4));
- cm.replaceRange("", Pos(0, 4), Pos(0, 5));
- cm.replaceRange("", Pos(0, 2), Pos(0, 4));
- cm.replaceRange("", Pos(0, 1), Pos(0, 2));
- // Verify that deleting next to bookmarks doesn't kill them
- eqPos(br.find(), Pos(0, 1));
- eqPos(bl.find(), Pos(0, 1));
- }, {value: "abcdef"});
- testCM("getAllMarks", function(cm) {
- addDoc(cm, 10, 10);
- var m1 = cm.setBookmark(Pos(0, 2));
- var m2 = cm.markText(Pos(0, 2), Pos(3, 2));
- var m3 = cm.markText(Pos(1, 2), Pos(1, 8));
- var m4 = cm.markText(Pos(8, 0), Pos(9, 0));
- eq(cm.getAllMarks().length, 4);
- m1.clear();
- m3.clear();
- eq(cm.getAllMarks().length, 2);
- });
- testCM("bug577", function(cm) {
- cm.setValue("a\nb");
- cm.clearHistory();
- cm.setValue("fooooo");
- cm.undo();
- });
- testCM("scrollSnap", function(cm) {
- cm.setSize(100, 100);
- addDoc(cm, 200, 200);
- cm.setCursor(Pos(100, 180));
- var info = cm.getScrollInfo();
- is(info.left > 0 && info.top > 0);
- cm.setCursor(Pos(0, 0));
- info = cm.getScrollInfo();
- is(info.left == 0 && info.top == 0, "scrolled clean to top");
- cm.setCursor(Pos(100, 180));
- cm.setCursor(Pos(199, 0));
- info = cm.getScrollInfo();
- is(info.left == 0 && info.top + 2 > info.height - cm.getScrollerElement().clientHeight, "scrolled clean to bottom");
- });
- testCM("selectionPos", function(cm) {
- if (phantom) return;
- cm.setSize(100, 100);
- addDoc(cm, 200, 100);
- cm.setSelection(Pos(1, 100), Pos(98, 100));
- var lineWidth = cm.charCoords(Pos(0, 200), "local").left;
- var lineHeight = (cm.charCoords(Pos(99)).top - cm.charCoords(Pos(0)).top) / 100;
- cm.scrollTo(0, 0);
- var selElt = byClassName(cm.getWrapperElement(), "CodeMirror-selected");
- var outer = cm.getWrapperElement().getBoundingClientRect();
- var sawMiddle, sawTop, sawBottom;
- for (var i = 0, e = selElt.length; i < e; ++i) {
- var box = selElt[i].getBoundingClientRect();
- var atLeft = box.left - outer.left < 30;
- var width = box.right - box.left;
- var atRight = box.right - outer.left > .8 * lineWidth;
- if (atLeft && atRight) {
- sawMiddle = true;
- is(box.bottom - box.top > 90 * lineHeight, "middle high");
- is(width > .9 * lineWidth, "middle wide");
- } else {
- is(width > .4 * lineWidth, "top/bot wide enough");
- is(width < .6 * lineWidth, "top/bot slim enough");
- if (atLeft) {
- sawBottom = true;
- is(box.top - outer.top > 96 * lineHeight, "bot below");
- } else if (atRight) {
- sawTop = true;
- is(box.top - outer.top < 2.1 * lineHeight, "top above");
- }
- }
- }
- is(sawTop && sawBottom && sawMiddle, "all parts");
- }, null);
- testCM("restoreHistory", function(cm) {
- cm.setValue("abc\ndef");
- cm.setLine(1, "hello");
- cm.setLine(0, "goop");
- cm.undo();
- var storedVal = cm.getValue(), storedHist = cm.getHistory();
- if (window.JSON) storedHist = JSON.parse(JSON.stringify(storedHist));
- eq(storedVal, "abc\nhello");
- cm.setValue("");
- cm.clearHistory();
- eq(cm.historySize().undo, 0);
- cm.setValue(storedVal);
- cm.setHistory(storedHist);
- cm.redo();
- eq(cm.getValue(), "goop\nhello");
- cm.undo(); cm.undo();
- eq(cm.getValue(), "abc\ndef");
- });
- testCM("doubleScrollbar", function(cm) {
- var dummy = document.body.appendChild(document.createElement("p"));
- dummy.style.cssText = "height: 50px; overflow: scroll; width: 50px";
- var scrollbarWidth = dummy.offsetWidth + 1 - dummy.clientWidth;
- document.body.removeChild(dummy);
- if (scrollbarWidth < 2) return;
- cm.setSize(null, 100);
- addDoc(cm, 1, 300);
- var wrap = cm.getWrapperElement();
- is(wrap.offsetWidth - byClassName(wrap, "CodeMirror-lines")[0].offsetWidth <= scrollbarWidth * 1.5);
- });
- testCM("weirdLinebreaks", function(cm) {
- cm.setValue("foo\nbar\rbaz\r\nquux\n\rplop");
- is(cm.getValue(), "foo\nbar\nbaz\nquux\n\nplop");
- is(cm.lineCount(), 6);
- cm.setValue("\n\n");
- is(cm.lineCount(), 3);
- });
- testCM("setSize", function(cm) {
- cm.setSize(100, 100);
- var wrap = cm.getWrapperElement();
- is(wrap.offsetWidth, 100);
- is(wrap.offsetHeight, 100);
- cm.setSize("100%", "3em");
- is(wrap.style.width, "100%");
- is(wrap.style.height, "3em");
- cm.setSize(null, 40);
- is(wrap.style.width, "100%");
- is(wrap.style.height, "40px");
- });
- function foldLines(cm, start, end, autoClear) {
- return cm.markText(Pos(start, 0), Pos(end - 1), {
- inclusiveLeft: true,
- inclusiveRight: true,
- collapsed: true,
- clearOnEnter: autoClear
- });
- }
- testCM("collapsedLines", function(cm) {
- addDoc(cm, 4, 10);
- var range = foldLines(cm, 4, 5), cleared = 0;
- CodeMirror.on(range, "clear", function() {cleared++;});
- cm.setCursor(Pos(3, 0));
- CodeMirror.commands.goLineDown(cm);
- eqPos(cm.getCursor(), Pos(5, 0));
- cm.setLine(3, "abcdefg");
- cm.setCursor(Pos(3, 6));
- CodeMirror.commands.goLineDown(cm);
- eqPos(cm.getCursor(), Pos(5, 4));
- cm.setLine(3, "ab");
- cm.setCursor(Pos(3, 2));
- CodeMirror.commands.goLineDown(cm);
- eqPos(cm.getCursor(), Pos(5, 2));
- cm.operation(function() {range.clear(); range.clear();});
- eq(cleared, 1);
- });
- testCM("collapsedRangeCoordsChar", function(cm) {
- var pos_1_3 = cm.charCoords(Pos(1, 3));
- pos_1_3.left += 2; pos_1_3.top += 2;
- var opts = {collapsed: true, inclusiveLeft: true, inclusiveRight: true};
- var m1 = cm.markText(Pos(0, 0), Pos(2, 0), opts);
- eqPos(cm.coordsChar(pos_1_3), Pos(3, 3));
- m1.clear();
- var m1 = cm.markText(Pos(0, 0), Pos(1, 1), opts);
- var m2 = cm.markText(Pos(1, 1), Pos(2, 0), opts);
- eqPos(cm.coordsChar(pos_1_3), Pos(3, 3));
- m1.clear(); m2.clear();
- var m1 = cm.markText(Pos(0, 0), Pos(1, 6), opts);
- eqPos(cm.coordsChar(pos_1_3), Pos(3, 3));
- }, {value: "123456\nabcdef\nghijkl\nmnopqr\n"});
- testCM("hiddenLinesAutoUnfold", function(cm) {
- var range = foldLines(cm, 1, 3, true), cleared = 0;
- CodeMirror.on(range, "clear", function() {cleared++;});
- cm.setCursor(Pos(3, 0));
- eq(cleared, 0);
- cm.execCommand("goCharLeft");
- eq(cleared, 1);
- range = foldLines(cm, 1, 3, true);
- CodeMirror.on(range, "clear", function() {cleared++;});
- eqPos(cm.getCursor(), Pos(3, 0));
- cm.setCursor(Pos(0, 3));
- cm.execCommand("goCharRight");
- eq(cleared, 2);
- }, {value: "abc\ndef\nghi\njkl"});
- testCM("hiddenLinesSelectAll", function(cm) { // Issue #484
- addDoc(cm, 4, 20);
- foldLines(cm, 0, 10);
- foldLines(cm, 11, 20);
- CodeMirror.commands.selectAll(cm);
- eqPos(cm.getCursor(true), Pos(10, 0));
- eqPos(cm.getCursor(false), Pos(10, 4));
- });
- testCM("everythingFolded", function(cm) {
- addDoc(cm, 2, 2);
- function enterPress() {
- cm.triggerOnKeyDown({type: "keydown", keyCode: 13, preventDefault: function(){}, stopPropagation: function(){}});
- }
- var fold = foldLines(cm, 0, 2);
- enterPress();
- eq(cm.getValue(), "xx\nxx");
- fold.clear();
- fold = foldLines(cm, 0, 2, true);
- eq(fold.find(), null);
- enterPress();
- eq(cm.getValue(), "\nxx\nxx");
- });
- testCM("structuredFold", function(cm) {
- addDoc(cm, 4, 8);
- var range = cm.markText(Pos(1, 2), Pos(6, 2), {
- replacedWith: document.createTextNode("Q")
- });
- cm.setCursor(0, 3);
- CodeMirror.commands.goLineDown(cm);
- eqPos(cm.getCursor(), Pos(6, 2));
- CodeMirror.commands.goCharLeft(cm);
- eqPos(cm.getCursor(), Pos(1, 2));
- CodeMirror.commands.delCharAfter(cm);
- eq(cm.getValue(), "xxxx\nxxxx\nxxxx");
- addDoc(cm, 4, 8);
- range = cm.markText(Pos(1, 2), Pos(6, 2), {
- replacedWith: document.createTextNode("x"),
- clearOnEnter: true
- });
- var cleared = 0;
- CodeMirror.on(range, "clear", function(){++cleared;});
- cm.setCursor(0, 3);
- CodeMirror.commands.goLineDown(cm);
- eqPos(cm.getCursor(), Pos(6, 2));
- CodeMirror.commands.goCharLeft(cm);
- eqPos(cm.getCursor(), Pos(6, 1));
- eq(cleared, 1);
- range.clear();
- eq(cleared, 1);
- range = cm.markText(Pos(1, 2), Pos(6, 2), {
- replacedWith: document.createTextNode("Q"),
- clearOnEnter: true
- });
- range.clear();
- cm.setCursor(1, 2);
- CodeMirror.commands.goCharRight(cm);
- eqPos(cm.getCursor(), Pos(1, 3));
- }, null);
- testCM("nestedFold", function(cm) {
- addDoc(cm, 10, 3);
- function fold(ll, cl, lr, cr) {
- return cm.markText(Pos(ll, cl), Pos(lr, cr), {collapsed: true});
- }
- var inner1 = fold(0, 6, 1, 3), inner2 = fold(0, 2, 1, 8), outer = fold(0, 1, 2, 3), inner0 = fold(0, 5, 0, 6);
- cm.setCursor(0, 1);
- CodeMirror.commands.goCharRight(cm);
- eqPos(cm.getCursor(), Pos(2, 3));
- inner0.clear();
- CodeMirror.commands.goCharLeft(cm);
- eqPos(cm.getCursor(), Pos(0, 1));
- outer.clear();
- CodeMirror.commands.goCharRight(cm);
- eqPos(cm.getCursor(), Pos(0, 2));
- CodeMirror.commands.goCharRight(cm);
- eqPos(cm.getCursor(), Pos(1, 8));
- inner2.clear();
- CodeMirror.commands.goCharLeft(cm);
- eqPos(cm.getCursor(), Pos(1, 7));
- cm.setCursor(0, 5);
- CodeMirror.commands.goCharRight(cm);
- eqPos(cm.getCursor(), Pos(0, 6));
- CodeMirror.commands.goCharRight(cm);
- eqPos(cm.getCursor(), Pos(1, 3));
- });
- testCM("badNestedFold", function(cm) {
- addDoc(cm, 4, 4);
- cm.markText(Pos(0, 2), Pos(3, 2), {collapsed: true});
- var caught;
- try {cm.markText(Pos(0, 1), Pos(0, 3), {collapsed: true});}
- catch(e) {caught = e;}
- is(caught instanceof Error, "no error");
- is(/overlap/i.test(caught.message), "wrong error");
- });
- testCM("inlineWidget", function(cm) {
- var w = cm.setBookmark(Pos(0, 2), {widget: document.createTextNode("uu")});
- cm.setCursor(0, 2);
- CodeMirror.commands.goLineDown(cm);
- eqPos(cm.getCursor(), Pos(1, 4));
- cm.setCursor(0, 2);
- cm.replaceSelection("hi");
- eqPos(w.find(), Pos(0, 2));
- cm.setCursor(0, 1);
- cm.replaceSelection("ay");
- eqPos(w.find(), Pos(0, 4));
- eq(cm.getLine(0), "uayuhiuu");
- }, {value: "uuuu\nuuuuuu"});
- testCM("wrappingAndResizing", function(cm) {
- cm.setSize(null, "auto");
- cm.setOption("lineWrapping", true);
- var wrap = cm.getWrapperElement(), h0 = wrap.offsetHeight;
- var doc = "xxx xxx xxx xxx xxx";
- cm.setValue(doc);
- for (var step = 10, w = cm.charCoords(Pos(0, 18), "div").right;; w += step) {
- cm.setSize(w);
- if (wrap.offsetHeight <= h0 * (opera_lt10 ? 1.2 : 1.5)) {
- if (step == 10) { w -= 10; step = 1; }
- else break;
- }
- }
- // Ensure that putting the cursor at the end of the maximally long
- // line doesn't cause wrapping to happen.
- cm.setCursor(Pos(0, doc.length));
- eq(wrap.offsetHeight, h0);
- cm.replaceSelection("x");
- is(wrap.offsetHeight > h0, "wrapping happens");
- // Now add a max-height and, in a document consisting of
- // almost-wrapped lines, go over it so that a scrollbar appears.
- cm.setValue(doc + "\n" + doc + "\n");
- cm.getScrollerElement().style.maxHeight = "100px";
- cm.replaceRange("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n!\n", Pos(2, 0));
- forEach([Pos(0, doc.length), Pos(0, doc.length - 1),
- Pos(0, 0), Pos(1, doc.length), Pos(1, doc.length - 1)],
- function(pos) {
- var coords = cm.charCoords(pos);
- eqPos(pos, cm.coordsChar({left: coords.left + 2, top: coords.top + 5}));
- });
- }, null, ie_lt8);
- testCM("measureEndOfLine", function(cm) {
- cm.setSize(null, "auto");
- var inner = byClassName(cm.getWrapperElement(), "CodeMirror-lines")[0].firstChild;
- var lh = inner.offsetHeight;
- for (var step = 10, w = cm.charCoords(Pos(0, 7), "div").right;; w += step) {
- cm.setSize(w);
- if (inner.offsetHeight < 2.5 * lh) {
- if (step == 10) { w -= 10; step = 1; }
- else break;
- }
- }
- cm.setValue(cm.getValue() + "\n\n");
- var endPos = cm.charCoords(Pos(0, 18), "local");
- is(endPos.top > lh * .8, "not at top");
- is(endPos.left > w - 20, "not at right");
- endPos = cm.charCoords(Pos(0, 18));
- eqPos(cm.coordsChar({left: endPos.left, top: endPos.top + 5}), Pos(0, 18));
- }, {mode: "text/html", value: "<!-- foo barrr -->", lineWrapping: true}, ie_lt8 || opera_lt10);
- testCM("scrollVerticallyAndHorizontally", function(cm) {
- cm.setSize(100, 100);
- addDoc(cm, 40, 40);
- cm.setCursor(39);
- var wrap = cm.getWrapperElement(), bar = byClassName(wrap, "CodeMirror-vscrollbar")[0];
- is(bar.offsetHeight < wrap.offsetHeight, "vertical scrollbar limited by horizontal one");
- var cursorBox = byClassName(wrap, "CodeMirror-cursor")[0].getBoundingClientRect();
- var editorBox = wrap.getBoundingClientRect();
- is(cursorBox.bottom < editorBox.top + cm.getScrollerElement().clientHeight,
- "bottom line visible");
- }, {lineNumbers: true});
- testCM("moveVstuck", function(cm) {
- var lines = byClassName(cm.getWrapperElement(), "CodeMirror-lines")[0].firstChild, h0 = lines.offsetHeight;
- var val = "fooooooooooooooooooooooooo baaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaar\n";
- cm.setValue(val);
- for (var w = cm.charCoords(Pos(0, 26), "div").right * 2.8;; w += 5) {
- cm.setSize(w);
- if (lines.offsetHeight <= 3.5 * h0) break;
- }
- cm.setCursor(Pos(0, val.length - 1));
- cm.moveV(-1, "line");
- eqPos(cm.getCursor(), Pos(0, 26));
- }, {lineWrapping: true}, ie_lt8 || opera_lt10);
- testCM("clickTab", function(cm) {
- var p0 = cm.charCoords(Pos(0, 0));
- eqPos(cm.coordsChar({left: p0.left + 5, top: p0.top + 5}), Pos(0, 0));
- eqPos(cm.coordsChar({left: p0.right - 5, top: p0.top + 5}), Pos(0, 1));
- }, {value: "\t\n\n", lineWrapping: true, tabSize: 8});
- testCM("verticalScroll", function(cm) {
- cm.setSize(100, 200);
- cm.setValue("foo\nbar\nbaz\n");
- var sc = cm.getScrollerElement(), baseWidth = sc.scrollWidth;
- cm.setLine(0, "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaah");
- is(sc.scrollWidth > baseWidth, "scrollbar present");
- cm.setLine(0, "foo");
- if (!phantom) eq(sc.scrollWidth, baseWidth, "scrollbar gone");
- cm.setLine(0, "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaah");
- cm.setLine(1, "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbh");
- is(sc.scrollWidth > baseWidth, "present again");
- var curWidth = sc.scrollWidth;
- cm.setLine(0, "foo");
- is(sc.scrollWidth < curWidth, "scrollbar smaller");
- is(sc.scrollWidth > baseWidth, "but still present");
- });
- testCM("extraKeys", function(cm) {
- var outcome;
- function fakeKey(expected, code, props) {
- if (typeof code == "string") code = code.charCodeAt(0);
- var e = {type: "keydown", keyCode: code, preventDefault: function(){}, stopPropagation: function(){}};
- if (props) for (var n in props) e[n] = props[n];
- outcome = null;
- cm.triggerOnKeyDown(e);
- eq(outcome, expected);
- }
- CodeMirror.commands.testCommand = function() {outcome = "tc";};
- CodeMirror.commands.goTestCommand = function() {outcome = "gtc";};
- cm.setOption("extraKeys", {"Shift-X": function() {outcome = "sx";},
- "X": function() {outcome = "x";},
- "Ctrl-Alt-U": function() {outcome = "cau";},
- "End": "testCommand",
- "Home": "goTestCommand",
- "Tab": false});
- fakeKey(null, "U");
- fakeKey("cau", "U", {ctrlKey: true, altKey: true});
- fakeKey(null, "U", {shiftKey: true, ctrlKey: true, altKey: true});
- fakeKey("x", "X");
- fakeKey("sx", "X", {shiftKey: true});
- fakeKey("tc", 35);
- fakeKey(null, 35, {shiftKey: true});
- fakeKey("gtc", 36);
- fakeKey("gtc", 36, {shiftKey: true});
- fakeKey(null, 9);
- }, null, window.opera && mac);
- testCM("wordMovementCommands", function(cm) {
- cm.execCommand("goWordLeft");
- eqPos(cm.getCursor(), Pos(0, 0));
- cm.execCommand("goWordRight"); cm.execCommand("goWordRight");
- eqPos(cm.getCursor(), Pos(0, 7));
- cm.execCommand("goWordLeft");
- eqPos(cm.getCursor(), Pos(0, 5));
- cm.execCommand("goWordRight"); cm.execCommand("goWordRight");
- eqPos(cm.getCursor(), Pos(0, 12));
- cm.execCommand("goWordLeft");
- eqPos(cm.getCursor(), Pos(0, 9));
- cm.execCommand("goWordRight"); cm.execCommand("goWordRight"); cm.execCommand("goWordRight");
- eqPos(cm.getCursor(), Pos(0, 24));
- cm.execCommand("goWordRight"); cm.execCommand("goWordRight");
- eqPos(cm.getCursor(), Pos(1, 9));
- cm.execCommand("goWordRight");
- eqPos(cm.getCursor(), Pos(1, 13));
- cm.execCommand("goWordRight"); cm.execCommand("goWordRight");
- eqPos(cm.getCursor(), Pos(2, 0));
- }, {value: "this is (the) firstline.\na foo12\u00e9\u00f8\u00d7bar\n"});
- testCM("groupMovementCommands", function(cm) {
- cm.execCommand("goGroupLeft");
- eqPos(cm.getCursor(), Pos(0, 0));
- cm.execCommand("goGroupRight");
- eqPos(cm.getCursor(), Pos(0, 4));
- cm.execCommand("goGroupRight");
- eqPos(cm.getCursor(), Pos(0, 7));
- cm.execCommand("goGroupRight");
- eqPos(cm.getCursor(), Pos(0, 10));
- cm.execCommand("goGroupLeft");
- eqPos(cm.getCursor(), Pos(0, 7));
- cm.execCommand("goGroupRight"); cm.execCommand("goGroupRight"); cm.execCommand("goGroupRight");
- eqPos(cm.getCursor(), Pos(0, 15));
- cm.setCursor(Pos(0, 17));
- cm.execCommand("goGroupLeft");
- eqPos(cm.getCursor(), Pos(0, 16));
- cm.execCommand("goGroupLeft");
- eqPos(cm.getCursor(), Pos(0, 14));
- cm.execCommand("goGroupRight"); cm.execCommand("goGroupRight");
- eqPos(cm.getCursor(), Pos(0, 20));
- cm.execCommand("goGroupRight");
- eqPos(cm.getCursor(), Pos(1, 5));
- cm.execCommand("goGroupLeft"); cm.execCommand("goGroupLeft");
- eqPos(cm.getCursor(), Pos(1, 0));
- cm.execCommand("goGroupLeft");
- eqPos(cm.getCursor(), Pos(0, 16));
- }, {value: "booo ba---quux. ffff\n abc d"});
- testCM("charMovementCommands", function(cm) {
- cm.execCommand("goCharLeft"); cm.execCommand("goColumnLeft");
- eqPos(cm.getCursor(), Pos(0, 0));
- cm.execCommand("goCharRight"); cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(0, 2));
- cm.setCursor(Pos(1, 0));
- cm.execCommand("goColumnLeft");
- eqPos(cm.getCursor(), Pos(1, 0));
- cm.execCommand("goCharLeft");
- eqPos(cm.getCursor(), Pos(0, 5));
- cm.execCommand("goColumnRight");
- eqPos(cm.getCursor(), Pos(0, 5));
- cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(1, 0));
- cm.execCommand("goLineEnd");
- eqPos(cm.getCursor(), Pos(1, 5));
- cm.execCommand("goLineStartSmart");
- eqPos(cm.getCursor(), Pos(1, 1));
- cm.execCommand("goLineStartSmart");
- eqPos(cm.getCursor(), Pos(1, 0));
- cm.setCursor(Pos(2, 0));
- cm.execCommand("goCharRight"); cm.execCommand("goColumnRight");
- eqPos(cm.getCursor(), Pos(2, 0));
- }, {value: "line1\n ine2\n"});
- testCM("verticalMovementCommands", function(cm) {
- cm.execCommand("goLineUp");
- eqPos(cm.getCursor(), Pos(0, 0));
- cm.execCommand("goLineDown");
- if (!phantom) // This fails in PhantomJS, though not in a real Webkit
- eqPos(cm.getCursor(), Pos(1, 0));
- cm.setCursor(Pos(1, 12));
- cm.execCommand("goLineDown");
- eqPos(cm.getCursor(), Pos(2, 5));
- cm.execCommand("goLineDown");
- eqPos(cm.getCursor(), Pos(3, 0));
- cm.execCommand("goLineUp");
- eqPos(cm.getCursor(), Pos(2, 5));
- cm.execCommand("goLineUp");
- eqPos(cm.getCursor(), Pos(1, 12));
- cm.execCommand("goPageDown");
- eqPos(cm.getCursor(), Pos(5, 0));
- cm.execCommand("goPageDown"); cm.execCommand("goLineDown");
- eqPos(cm.getCursor(), Pos(5, 0));
- cm.execCommand("goPageUp");
- eqPos(cm.getCursor(), Pos(0, 0));
- }, {value: "line1\nlong long line2\nline3\n\nline5\n"});
- testCM("verticalMovementCommandsWrapping", function(cm) {
- cm.setSize(120);
- cm.setCursor(Pos(0, 5));
- cm.execCommand("goLineDown");
- eq(cm.getCursor().line, 0);
- is(cm.getCursor().ch > 5, "moved beyond wrap");
- for (var i = 0; ; ++i) {
- is(i < 20, "no endless loop");
- cm.execCommand("goLineDown");
- var cur = cm.getCursor();
- if (cur.line == 1) eq(cur.ch, 5);
- if (cur.line == 2) { eq(cur.ch, 1); break; }
- }
- }, {value: "a very long line that wraps around somehow so that we can test cursor movement\nshortone\nk",
- lineWrapping: true});
- testCM("rtlMovement", function(cm) {
- forEach(["خحج", "خحabcخحج", "abخحخحجcd", "abخde", "abخح2342خ1حج", "خ1ح2خح3حxج",
- "خحcd", "1خحcd", "abcdeح1ج", "خمرحبها مها!", "foobarر",
- "<img src=\"/בדיקה3.jpg\">"], function(line) {
- var inv = line.charAt(0) == "خ";
- cm.setValue(line + "\n"); cm.execCommand(inv ? "goLineEnd" : "goLineStart");
- var cursor = byClassName(cm.getWrapperElement(), "CodeMirror-cursor")[0];
- var prevX = cursor.offsetLeft, prevY = cursor.offsetTop;
- for (var i = 0; i <= line.length; ++i) {
- cm.execCommand("goCharRight");
- if (i == line.length) is(cursor.offsetTop > prevY, "next line");
- else is(cursor.offsetLeft > prevX, "moved right");
- prevX = cursor.offsetLeft; prevY = cursor.offsetTop;
- }
- cm.setCursor(0, 0); cm.execCommand(inv ? "goLineStart" : "goLineEnd");
- prevX = cursor.offsetLeft;
- for (var i = 0; i < line.length; ++i) {
- cm.execCommand("goCharLeft");
- is(cursor.offsetLeft < prevX, "moved left");
- prevX = cursor.offsetLeft;
- }
- });
- }, {rtlMoveVisually: true});
- // Verify that updating a line clears its bidi ordering
- testCM("bidiUpdate", function(cm) {
- cm.setCursor(Pos(0, 2));
- cm.replaceSelection("خحج", "start");
- cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(0, 4));
- }, {value: "abcd\n"});
- testCM("movebyTextUnit", function(cm) {
- cm.setValue("בְּרֵאשִ\ńéée\n");
- cm.execCommand("goLineEnd");
- for (var i = 0; i < 4; ++i) cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(0, 0));
- cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(1, 0));
- cm.execCommand("goCharRight");
- cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(1, 3));
- cm.execCommand("goCharRight");
- cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(1, 6));
- });
- testCM("lineChangeEvents", function(cm) {
- addDoc(cm, 3, 5);
- var log = [], want = ["ch 0", "ch 1", "del 2", "ch 0", "ch 0", "del 1", "del 3", "del 4"];
- for (var i = 0; i < 5; ++i) {
- CodeMirror.on(cm.getLineHandle(i), "delete", function(i) {
- return function() {log.push("del " + i);};
- }(i));
- CodeMirror.on(cm.getLineHandle(i), "change", function(i) {
- return function() {log.push("ch " + i);};
- }(i));
- }
- cm.replaceRange("x", Pos(0, 1));
- cm.replaceRange("xy", Pos(1, 1), Pos(2));
- cm.replaceRange("foo\nbar", Pos(0, 1));
- cm.replaceRange("", Pos(0, 0), Pos(cm.lineCount()));
- eq(log.length, want.length, "same length");
- for (var i = 0; i < log.length; ++i)
- eq(log[i], want[i]);
- });
- testCM("scrollEntirelyToRight", function(cm) {
- if (phantom) return;
- addDoc(cm, 500, 2);
- cm.setCursor(Pos(0, 500));
- var wrap = cm.getWrapperElement(), cur = byClassName(wrap, "CodeMirror-cursor")[0];
- is(wrap.getBoundingClientRect().right > cur.getBoundingClientRect().left);
- });
- testCM("lineWidgets", function(cm) {
- addDoc(cm, 500, 3);
- var last = cm.charCoords(Pos(2, 0));
- var node = document.createElement("div");
- node.innerHTML = "hi";
- var widget = cm.addLineWidget(1, node);
- is(last.top < cm.charCoords(Pos(2, 0)).top, "took up space");
- cm.setCursor(Pos(1, 1));
- cm.execCommand("goLineDown");
- eqPos(cm.getCursor(), Pos(2, 1));
- cm.execCommand("goLineUp");
- eqPos(cm.getCursor(), Pos(1, 1));
- });
- testCM("lineWidgetFocus", function(cm) {
- var place = document.getElementById("testground");
- place.className = "offscreen";
- try {
- addDoc(cm, 500, 10);
- var node = document.createElement("input");
- var widget = cm.addLineWidget(1, node);
- node.focus();
- eq(document.activeElement, node);
- cm.replaceRange("new stuff", Pos(1, 0));
- eq(document.activeElement, node);
- } finally {
- place.className = "";
- }
- });
- testCM("getLineNumber", function(cm) {
- addDoc(cm, 2, 20);
- var h1 = cm.getLineHandle(1);
- eq(cm.getLineNumber(h1), 1);
- cm.replaceRange("hi\nbye\n", Pos(0, 0));
- eq(cm.getLineNumber(h1), 3);
- cm.setValue("");
- eq(cm.getLineNumber(h1), null);
- });
- testCM("jumpTheGap", function(cm) {
- var longLine = "abcdef ghiklmnop qrstuvw xyz ";
- longLine += longLine; longLine += longLine; longLine += longLine;
- cm.setLine(2, longLine);
- cm.setSize("200px", null);
- cm.getWrapperElement().style.lineHeight = 2;
- cm.refresh();
- cm.setCursor(Pos(0, 1));
- cm.execCommand("goLineDown");
- eqPos(cm.getCursor(), Pos(1, 1));
- cm.execCommand("goLineDown");
- eqPos(cm.getCursor(), Pos(2, 1));
- cm.execCommand("goLineDown");
- eq(cm.getCursor().line, 2);
- is(cm.getCursor().ch > 1);
- cm.execCommand("goLineUp");
- eqPos(cm.getCursor(), Pos(2, 1));
- cm.execCommand("goLineUp");
- eqPos(cm.getCursor(), Pos(1, 1));
- var node = document.createElement("div");
- node.innerHTML = "hi"; node.style.height = "30px";
- cm.addLineWidget(0, node);
- cm.addLineWidget(1, node.cloneNode(true), {above: true});
- cm.setCursor(Pos(0, 2));
- cm.execCommand("goLineDown");
- eqPos(cm.getCursor(), Pos(1, 2));
- cm.execCommand("goLineUp");
- eqPos(cm.getCursor(), Pos(0, 2));
- }, {lineWrapping: true, value: "abc\ndef\nghi\njkl\n"});
- testCM("addLineClass", function(cm) {
- function cls(line, text, bg, wrap) {
- var i = cm.lineInfo(line);
- eq(i.textClass, text);
- eq(i.bgClass, bg);
- eq(i.wrapClass, wrap);
- }
- cm.addLineClass(0, "text", "foo");
- cm.addLineClass(0, "text", "bar");
- cm.addLineClass(1, "background", "baz");
- cm.addLineClass(1, "wrap", "foo");
- cls(0, "foo bar", null, null);
- cls(1, null, "baz", "foo");
- var lines = cm.display.lineDiv;
- eq(byClassName(lines, "foo").length, 2);
- eq(byClassName(lines, "bar").length, 1);
- eq(byClassName(lines, "baz").length, 1);
- cm.removeLineClass(0, "text", "foo");
- cls(0, "bar", null, null);
- cm.removeLineClass(0, "text", "foo");
- cls(0, "bar", null, null);
- cm.removeLineClass(0, "text", "bar");
- cls(0, null, null, null);
- cm.addLineClass(1, "wrap", "quux");
- cls(1, null, "baz", "foo quux");
- cm.removeLineClass(1, "wrap");
- cls(1, null, "baz", null);
- }, {value: "hohoho\n"});
- testCM("atomicMarker", function(cm) {
- addDoc(cm, 10, 10);
- function atom(ll, cl, lr, cr, li, ri) {
- return cm.markText(Pos(ll, cl), Pos(lr, cr),
- {atomic: true, inclusiveLeft: li, inclusiveRight: ri});
- }
- var m = atom(0, 1, 0, 5);
- cm.setCursor(Pos(0, 1));
- cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(0, 5));
- cm.execCommand("goCharLeft");
- eqPos(cm.getCursor(), Pos(0, 1));
- m.clear();
- m = atom(0, 0, 0, 5, true);
- eqPos(cm.getCursor(), Pos(0, 5), "pushed out");
- cm.execCommand("goCharLeft");
- eqPos(cm.getCursor(), Pos(0, 5));
- m.clear();
- m = atom(8, 4, 9, 10, false, true);
- cm.setCursor(Pos(9, 8));
- eqPos(cm.getCursor(), Pos(8, 4), "set");
- cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(8, 4), "char right");
- cm.execCommand("goLineDown");
- eqPos(cm.getCursor(), Pos(8, 4), "line down");
- cm.execCommand("goCharLeft");
- eqPos(cm.getCursor(), Pos(8, 3));
- m.clear();
- m = atom(1, 1, 3, 8);
- cm.setCursor(Pos(2, 0));
- eqPos(cm.getCursor(), Pos(3, 8));
- cm.execCommand("goCharLeft");
- eqPos(cm.getCursor(), Pos(1, 1));
- cm.execCommand("goCharRight");
- eqPos(cm.getCursor(), Pos(3, 8));
- cm.execCommand("goLineUp");
- eqPos(cm.getCursor(), Pos(1, 1));
- cm.execCommand("goLineDown");
- eqPos(cm.getCursor(), Pos(3, 8));
- cm.execCommand("delCharBefore");
- eq(cm.getValue().length, 80, "del chunk");
- m = atom(3, 0, 5, 5);
- cm.setCursor(Pos(3, 0));
- cm.execCommand("delWordAfter");
- eq(cm.getValue().length, 53, "del chunk");
- });
- testCM("readOnlyMarker", function(cm) {
- function mark(ll, cl, lr, cr, at) {
- return cm.markText(Pos(ll, cl), Pos(lr, cr),
- {readOnly: true, atomic: at});
- }
- var m = mark(0, 1, 0, 4);
- cm.setCursor(Pos(0, 2));
- cm.replaceSelection("hi", "end");
- eqPos(cm.getCursor(), Pos(0, 2));
- eq(cm.getLine(0), "abcde");
- cm.execCommand("selectAll");
- cm.replaceSelection("oops");
- eq(cm.getValue(), "oopsbcd");
- cm.undo();
- eqPos(m.find().from, Pos(0, 1));
- eqPos(m.find().to, Pos(0, 4));
- m.clear();
- cm.setCursor(Pos(0, 2));
- cm.replaceSelection("hi");
- eq(cm.getLine(0), "abhicde");
- eqPos(cm.getCursor(), Pos(0, 4));
- m = mark(0, 2, 2, 2, true);
- cm.setSelection(Pos(1, 1), Pos(2, 4));
- cm.replaceSelection("t", "end");
- eqPos(cm.getCursor(), Pos(2, 3));
- eq(cm.getLine(2), "klto");
- cm.execCommand("goCharLeft");
- cm.execCommand("goCharLeft");
- eqPos(cm.getCursor(), Pos(0, 2));
- cm.setSelection(Pos(0, 1), Pos(0, 3));
- cm.replaceSelection("xx");
- eqPos(cm.getCursor(), Pos(0, 3));
- eq(cm.getLine(0), "axxhicde");
- }, {value: "abcde\nfghij\nklmno\n"});
- testCM("dirtyBit", function(cm) {
- eq(cm.isClean(), true);
- cm.replaceSelection("boo");
- eq(cm.isClean(), false);
- cm.undo();
- eq(cm.isClean(), true);
- cm.replaceSelection("boo");
- cm.replaceSelection("baz");
- cm.undo();
- eq(cm.isClean(), false);
- cm.markClean();
- eq(cm.isClean(), true);
- cm.undo();
- eq(cm.isClean(), false);
- cm.redo();
- eq(cm.isClean(), true);
- });
- testCM("addKeyMap", function(cm) {
- function sendKey(code) {
- cm.triggerOnKeyDown({type: "keydown", keyCode: code,
- preventDefault: function(){}, stopPropagation: function(){}});
- }
- sendKey(39);
- eqPos(cm.getCursor(), Pos(0, 1));
- var test = 0;
- var map1 = {Right: function() { ++test; }}, map2 = {Right: function() { test += 10; }}
- cm.addKeyMap(map1);
- sendKey(39);
- eqPos(cm.getCursor(), Pos(0, 1));
- eq(test, 1);
- cm.addKeyMap(map2, true);
- sendKey(39);
- eq(test, 2);
- cm.removeKeyMap(map1);
- sendKey(39);
- eq(test, 12);
- cm.removeKeyMap(map2);
- sendKey(39);
- eq(test, 12);
- eqPos(cm.getCursor(), Pos(0, 2));
- cm.addKeyMap({Right: function() { test = 55; }, name: "mymap"});
- sendKey(39);
- eq(test, 55);
- cm.removeKeyMap("mymap");
- sendKey(39);
- eqPos(cm.getCursor(), Pos(0, 3));
- }, {value: "abc"});
- testCM("findPosH", function(cm) {
- forEach([{from: Pos(0, 0), to: Pos(0, 1), by: 1},
- {from: Pos(0, 0), to: Pos(0, 0), by: -1, hitSide: true},
- {from: Pos(0, 0), to: Pos(0, 4), by: 1, unit: "word"},
- {from: Pos(0, 0), to: Pos(0, 8), by: 2, unit: "word"},
- {from: Pos(0, 0), to: Pos(2, 0), by: 20, unit: "word", hitSide: true},
- {from: Pos(0, 7), to: Pos(0, 5), by: -1, unit: "word"},
- {from: Pos(0, 4), to: Pos(0, 8), by: 1, unit: "word"},
- {from: Pos(1, 0), to: Pos(1, 18), by: 3, unit: "word"},
- {from: Pos(1, 22), to: Pos(1, 5), by: -3, unit: "word"},
- {from: Pos(1, 15), to: Pos(1, 10), by: -5},
- {from: Pos(1, 15), to: Pos(1, 10), by: -5, unit: "column"},
- {from: Pos(1, 15), to: Pos(1, 0), by: -50, unit: "column", hitSide: true},
- {from: Pos(1, 15), to: Pos(1, 24), by: 50, unit: "column", hitSide: true},
- {from: Pos(1, 15), to: Pos(2, 0), by: 50, hitSide: true}], function(t) {
- var r = cm.findPosH(t.from, t.by, t.unit || "char");
- eqPos(r, t.to);
- eq(!!r.hitSide, !!t.hitSide);
- });
- }, {value: "line one\nline two.something.other\n"});
- testCM("beforeChange", function(cm) {
- cm.on("beforeChange", function(cm, change) {
- var text = [];
- for (var i = 0; i < change.text.length; ++i)
- text.push(change.text[i].replace(/\s/g, "_"));
- change.update(null, null, text);
- });
- cm.setValue("hello, i am a\nnew document\n");
- eq(cm.getValue(), "hello,_i_am_a\nnew_document\n");
- CodeMirror.on(cm.getDoc(), "beforeChange", function(doc, change) {
- if (change.from.line == 0) change.cancel();
- });
- cm.setValue("oops"); // Canceled
- eq(cm.getValue(), "hello,_i_am_a\nnew_document\n");
- cm.replaceRange("hey hey hey", Pos(1, 0), Pos(2, 0));
- eq(cm.getValue(), "hello,_i_am_a\nhey_hey_hey");
- }, {value: "abcdefghijk"});
- testCM("beforeSelectionChange", function(cm) {
- function notAtEnd(cm, pos) {
- var len = cm.getLine(pos.line).length;
- if (!len || pos.ch == len) return Pos(pos.line, pos.ch - 1);
- return pos;
- }
- cm.on("beforeSelectionChange", function(cm, sel) {
- sel.head = notAtEnd(cm, sel.head);
- sel.anchor = notAtEnd(cm, sel.anchor);
- });
- addDoc(cm, 10, 10);
- cm.execCommand("goLineEnd");
- eqPos(cm.getCursor(), Pos(0, 9));
- cm.execCommand("selectAll");
- eqPos(cm.getCursor("start"), Pos(0, 0));
- eqPos(cm.getCursor("end"), Pos(9, 9));
- });
- testCM("change_removedText", function(cm) {
- cm.setValue("abc\ndef");
- var removedText;
- cm.on("change", function(cm, change) {
- removedText = [change.removed, change.next && change.next.removed];
- });
- cm.operation(function() {
- cm.replaceRange("xyz", Pos(0, 0), Pos(1,1));
- cm.replaceRange("123", Pos(0,0));
- });
- eq(removedText[0].join("\n"), "abc\nd");
- eq(removedText[1].join("\n"), "");
- cm.undo();
- eq(removedText[0].join("\n"), "123");
- eq(removedText[1].join("\n"), "xyz");
- cm.redo();
- eq(removedText[0].join("\n"), "abc\nd");
- eq(removedText[1].join("\n"), "");
- });
|