-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathbackground_tokenizer_test.js
116 lines (97 loc) · 3.61 KB
/
background_tokenizer_test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
"use strict";
var EditSession = require("./edit_session").EditSession;
var JavaScriptMode = require("./mode/javascript").Mode;
var LuaMode = require("./mode/lua").Mode;
var Range = require("./range").Range;
var assert = require("./test/assertions");
function forceTokenize(session, startLine) {
for (var i = startLine || 0, l = session.getLength(); i < l; i++)
session.getTokens(i);
}
function testStates(session, states) {
for (var i = 0, l = session.getLength(); i < l; i++)
assert.equal(session.bgTokenizer.states[i], states[i]);
assert.ok(l == states.length);
}
module.exports = {
"test background tokenizer update on session change" : function() {
var doc = new EditSession([
"/*",
"*/",
"var juhu"
]);
doc.setMode("./mode/javascript");
forceTokenize(doc);
testStates(doc, ["comment1", "start", "no_regex"]);
doc.remove(new Range(0,2,1,2));
testStates(doc, [null, "no_regex"]);
forceTokenize(doc);
testStates(doc, ["comment1", "comment1"]);
doc.insert({row:0, column:2}, "\n*/");
testStates(doc, [undefined, undefined, "comment1"]);
forceTokenize(doc);
testStates(doc, ["comment1", "start", "no_regex"]);
},
"test background tokenizer sends update event" : function() {
var doc = new EditSession([
"/*",
"var",
"juhu",
"*/"
]);
doc.setMode("./mode/javascript");
var updateEvent = null;
doc.bgTokenizer.on("update", function(e) {
updateEvent = e.data;
});
function checkEvent(first, last) {
assert.ok(!updateEvent, "unneccessary update event");
doc.bgTokenizer.running = 1;
doc.bgTokenizer.$worker();
assert.ok(updateEvent);
assert.equal([first, last] + "",
[updateEvent.first, updateEvent.last] + "");
updateEvent = null;
}
forceTokenize(doc);
var comment = "comment1";
testStates(doc, [comment, comment, comment, "start"]);
doc.remove(new Range(0,0,0,2));
testStates(doc, [comment, comment, comment, "start"]);
checkEvent(0, 3);
testStates(doc, ["start", "no_regex", "no_regex", "regex"]);
// insert /* and and press down several times quickly
doc.insert({row:0, column:0}, "/*");
doc.getTokens(0);
doc.getTokens(1);
doc.getTokens(2);
checkEvent(0, 3);
forceTokenize(doc);
testStates(doc, [comment, comment, comment, "start"]);
},
"test background tokenizer sends update event 2" : function(next) {
var doc = new EditSession([
"-[[",
"juhu",
"kinners]]--",
""
]);
doc.setMode("./mode/lua");
forceTokenize(doc);
var string = "bracketedString,2,start";
var comment = "bracketedComment,2,start";
testStates(doc, [string, string, "start", "start"]);
doc.insert({row:0, column:0}, "-");
forceTokenize(doc);
doc.bgTokenizer.once("update", function(e) {
assert.equal([0, 4] + "", [e.data.first, e.data.last] + "");
testStates(doc, [comment, comment, "start", "start"]);
next();
});
doc.bgTokenizer.running = 1;
doc.bgTokenizer.$worker();
}
};
if (typeof module !== "undefined" && module === require.main) {
require("asyncjs").test.testcase(module.exports).exec();
}