-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathsnippets_test.js
406 lines (378 loc) · 16.1 KB
/
snippets_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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
if (typeof process !== "undefined") {
require("amd-loader");
require("./test/mockdom");
}
"use strict";
var Editor = require("./editor").Editor;
var EditSession = require("./edit_session").EditSession;
var MockRenderer = require("./test/mockrenderer").MockRenderer;
var JavascriptMode = require("./mode/javascript").Mode;
require("./multi_select");
require("./ext/language_tools");
var snippetManager = require("./snippets").snippetManager;
var assert = require("./test/assertions");
var config = require("./config");
var loadModule = config.loadModule;
module.exports = {
setUp : function(next) {
this.editor = new Editor(new MockRenderer());
next();
},
tearDown: function() {
config.loadModule = loadModule;
},
"test: textmate style format strings" : function() {
snippetManager.tmStrFormat("hello", {
guard: "(..)(.)(.)",
flag:"g",
fmt: "a\\UO\\l$1\\E$2"
}) == "aOHElo";
},
"test: parse snipmate file" : function() {
var expected = [{
name: "a",
guard: "(?:(=)|(:))?\\s*)",
trigger: "\\(?f",
endTrigger: "\\)",
endGuard: "",
content: "{$0}\n"
}, {
tabTrigger: "f",
name: "f function",
content: "function"
}];
var parsed = snippetManager.parseSnippetFile(
"name a\nregex /(?:(=)|(:))?\\s*)/\\(?f/\\)/\n\t{$0}" +
"\n\t\n\n#function\nsnippet f function\n\tfunction"
);
assert.equal(JSON.stringify(expected, null, 4), JSON.stringify(parsed, null, 4));
},
"test: parse snippet": function() {
var content = "-\\$$2a${1:x${$2:y$3\\}\\n\\}$TM_SELECTION}";
var tokens = snippetManager.tokenizeTmSnippet(content);
assert.equal(tokens.length, 14);
assert.equal(tokens[4], tokens[13]);
assert.equal(tokens[2].tabstopId, 2);
var content = "\\}${var/as\\/d/\\ul\\//g}s";
var tokens = snippetManager.tokenizeTmSnippet(content);
snippetManager.resolveVariables(tokens, this.editor);
assert.equal(tokens.length, 7);
assert.equal(tokens[1], tokens[5]);
assert.equal(tokens[6], "s");
assert.equal(tokens[1].text, "var");
assert.equal(tokens[1].fmt.length, 3);
assert.equal(tokens[1].fmt[0].changeCase, "u");
assert.equal(tokens[1].fmt[1], "l");
assert.equal(tokens[1].fmt[2], "\\/");
assert.equal(tokens[1].guard, "as\\/d");
assert.equal(tokens[1].flag, "g");
},
"test: register snippets in json format": function() {
config.loadModule = function() {};
this.editor.setOption("enableSnippets", true);
this.editor.session.setMode(new JavascriptMode());
snippetManager.register({
"Snippet 1": {
prefix: "xy",
body: [
"x",
"$0",
"y"
]
},
"Snippet 2": {
prefix: "s",
body: "$0expanded"
}
}, "javascript");
this.editor.execCommand("paste", "xy");
this.editor.onCommandKey(null, 0, 9);
this.editor.execCommand("paste", "s");
this.editor.onCommandKey(null, 0, 9);
assert.equal(this.editor.getValue(), "x\nexpanded\ny");
assert.position(this.editor.getCursorPosition(), 1, 0);
},
"test: expand snippet with nested tabstops": function() {
var content = "-${1}-${1:t\n1}--${2:2 ${3} 2}-${3:3 $1 3}-${4:4 $2 4}";
this.editor.setValue("");
snippetManager.insertSnippet(this.editor, content);
assert.equal(this.editor.getValue(), [
"-t",
"1-t",
"1--2 3 t",
"1 3 2-3 t",
"1 3-4 2 3 t",
"1 3 2 4"
].join("\n"));
assert.equal(this.editor.getSelectedText(), "t\n1\nt\n1\nt\n1\nt\n1\nt\n1");
this.editor.tabstopManager.tabNext();
assert.equal(this.editor.getSelectedText(), "2 3 t\n1 3 2\n2 3 t\n1 3 2");
this.editor.tabstopManager.tabNext();
assert.equal(this.editor.getSelectedText(), "3 t\n1 3\n3 t\n1 3\n3 t\n1 3");
this.editor.tabstopManager.tabNext();
assert.equal(this.editor.getSelectedText(), "4 2 3 t\n1 3 2 4");
this.editor.tabstopManager.tabNext();
assert.equal(this.editor.getSelectedText(), "");
this.editor.setValue("");
snippetManager.insertSnippet(this.editor, "-${1:a$2}-${2:b$1}");
assert.equal(this.editor.getValue(), "-ab-ba");
assert.equal(this.editor.getSelectedText(), "ab\na");
this.editor.tabstopManager.tabNext();
assert.equal(this.editor.getSelectedText(), "b\nba");
this.editor.tabstopManager.tabNext();
assert.equal(this.editor.getSelectedText(), "");
},
"test prevent infinite recursion": function() {
var editor = this.editor;
editor.setValue("");
editor.setValue("");
editor.insertSnippet("CASE ${1:v} ${4:WHEN ${5:p} $10 $2$3\n$4\n"
+ "THEN ${6:r} } ${7:ELSE ${8:d}} END"
);
assert.equal(this.editor.getValue(), "CASE v WHEN p \n\nTHEN r ELSE d END");
},
"test: nested format strings": function() {
var editor = this.editor;
editor.setValue("");
editor.insertSnippet([
"$1 -- ${1/(.)(\\d)?(\\w\\w?)?/",
"${3:?",
" letter is ${3/(.)/\\u$1/}, ${2:?number is $2: number is missing}:",
" letter is missing ${2:? but number is $2: number is missing too}}," ,
" prefix is $1; text is ${0:/upcase};/g}",
"$0"
].join("\n"));
assert.equal(editor.getValue().length, 6);
editor.execCommand("insertstring", "q");
assert.equal(editor.getValue().length, 82);
editor.execCommand("insertstring", "1");
assert.equal(editor.getValue().length, 78);
editor.execCommand("insertstring", "w");
assert.equal(editor.getValue().length, 70);
editor.execCommand("insertstring", "a");
editor.execCommand("insertstring", "l");
editor.execCommand("insertstring", "s");
editor.execCommand("insertstring", "t");
assert.equal(editor.getValue(), [
"q1walst -- ",
"",
" letter is Wa, number is 1,",
" prefix is q; text is Q1WA;",
"",
" letter is St, number is missing,",
" prefix is l; text is LST;",
""
].join("\n"));
},
"test: format if/else": function() {
var editor = this.editor;
var snippetText = [
"${CURRENT_LINE/.*/1 ${0:else}/i}",
"${CURRENT_LINE/.*/2 ${0:-else}/i}",
"${CURRENT_LINE/.*/3 ${0:+if}/i}",
"${CURRENT_LINE/.*/4 ${0:?if:else}/i}",
"${CURRENT_LINE/.*/5 ${0:/downcase}/i}"
].join("\n");
editor.setValue("");
editor.insertSnippet(snippetText);
assert.equal(editor.getValue(), "1 else\n2 else\n3 \n4 else\n5 ");
editor.setValue("ACE");
editor.insertSnippet(snippetText);
assert.equal(editor.getValue(), "1 ACE\n2 ACE\n3 if\n4 if\n5 ace");
},
"test: file paths": function() {
var editor = this.editor;
snippetManager.variables.FILEPATH = function() { return "/dir/base name.ext"; };
editor.setValue("");
editor.insertSnippet(
"${TM_FILENAME/^(.)|(?:[-_\\s](.))|(\\.\\w*$)/${1:/upcase}${2:/upcase}/g}"
+ "\n$FILENAME_BASE\n$DIRECTORY\n$FILEPATH\n$FILENAME"
);
assert.equal(editor.getValue(), "BaseName\nbase name\n/dir/\n/dir/base name.ext\nbase name.ext");
},
"test: selected text": function() {
var editor = this.editor;
editor.setValue("foo\nbar");
editor.selectAll();
editor.insertSnippet("<div>\n\t${1:$TM_SELECTED_TEXT}\n</div>");
editor.insertSnippet("<div>\n\t${1:$TM_SELECTED_TEXT}\n</div>");
editor.insertSnippet("<span>${1:$TM_SELECTED_TEXT}</span>");
assert.equal(editor.getValue(), [
"<div>",
" <div>",
" <span>foo",
" bar</span>",
" </div>",
"</div>"
].join("\n"));
},
"test: date variables": function() {
var editor = this.editor;
editor.setValue("foo\nbar");
editor.selectAll();
var D = Date;
var d = new Date('1970-01-01T00:00:00');
d.setHours(4);
d.setMinutes(0);
Date = function() { return d; }; // eslint-disable-line
try {
editor.insertSnippet([
"$CURRENT_YEAR",
"$CURRENT_YEAR_SHORT",
"$CURRENT_MONTH",
"$CURRENT_MONTH_NAME",
"$CURRENT_MONTH_NAME_SHORT",
"$CURRENT_DATE",
"$CURRENT_DAY_NAME",
"$CURRENT_DAY_NAME_SHORT",
"$CURRENT_HOUR",
"$CURRENT_MINUTE",
"$CURRENT_SECOND"
].join("\n"));
} finally {
Date = D; // eslint-disable-line
}
assert.equal(editor.getValue(), "1970\n70\n01\nJanuary\nJan\n01\nThursday\nThu\n04\n00\n00");
},
"test: choice": function() {
var editor = this.editor;
editor.setValue("");
editor.insertSnippet("${3:${1|and\\|\\,\\\\,another,trigger|} ${2:$1}}");
assert.equal(editor.getValue(), "and|,\\ and|,\\");
editor.execCommand("insertstring", "q");
assert.equal(editor.getValue(), "q q");
this.editor.tabstopManager.tabNext();
editor.execCommand("insertstring", "s");
assert.equal(editor.getValue(), "q s");
this.editor.tabstopManager.tabNext();
editor.execCommand("insertstring", "t");
assert.equal(editor.getValue(), "t");
},
"test: deletion": function() {
var editor = this.editor;
editor.setValue("");
editor.insertSnippet("CASE ${1:value} ${4:WHEN ${5:option2} "
+ "THEN ${6:result2}} ${7:ELSE ${8:default}} END"
);
editor.onCommandKey(null, 0, 9);
editor.onCommandKey(null, 0, 8);
editor.onCommandKey(null, 0, 9);
assert.equal(editor.getSelectedText(), "ELSE default");
editor.onCommandKey(null, 4, 9);
assert.equal(editor.getSelectedText(), "");
editor.onCommandKey(null, 4, 9);
assert.equal(editor.getSelectedText(), "value");
assert.ok(editor.tabstopManager);
editor.onCommandKey(null, 0, 27);
assert.ok(!editor.tabstopManager);
},
"test: multiple cursors": function() {
var editor = this.editor;
editor.setValue("\n");
editor.selection.splitIntoLines();
editor.insertSnippet("a-${1:1}-\na-$1-\n${2:x}");
editor.insertSnippet("b=$1-\na-${1:2}-\n${2:y}");
editor.tabstopManager.tabNext();
assert.equal(editor.getCopyText(), "y\ny\ny\ny");
editor.tabstopManager.tabNext();
editor.tabstopManager.tabNext();
assert.equal(editor.getCopyText(), "x\nx");
editor.tabstopManager.tabNext(-4);
editor.execCommand("insertstring", ".");
editor.tabstopManager.tabNext(2);
assert.equal(editor.tabstopManager, null);
assert.equal(editor.getValue(), "a-.-\na-.-\nx\na-.-\na-.-\nx");
},
"test: insert snippet inside snippet": function() {
var editor = this.editor;
editor.session.setValue("");
editor.insertSnippet("1+${1:-}\n1+$1\ne+${2:end}");
editor.insertSnippet("2+${1:-}\n2+$1\n3+${2:3}");
function testTabstop(tabstop, expected) {
assert.equal(tabstop.join().replace(/Range: | -/g, ""), expected);
}
var tabstops = editor.tabstopManager.tabstops;
testTabstop(tabstops[0], "[6/5]> [6/5]");
testTabstop(tabstops[1], "[0/2]> [2/3],[3/2]> [5/3]");
testTabstop(tabstops[2], "[4/2]> [4/3],[3/4]> [3/5],[0/4]> [0/5],[1/2]> [1/3]");
testTabstop(tabstops[3], "[5/2]> [5/3],[2/2]> [2/3]");
testTabstop(tabstops[4], "[5/3]> [5/3],[2/3]> [2/3]");
testTabstop(tabstops[5], "[6/2]> [6/5]");
},
"test: insert snippet inside snippet and check markers": function() {
var editor = this.editor;
editor.session.setValue("");
editor.insertSnippet("{$1}");
// check first snippet's marker
var snippetMarkers = Object.values(editor.session.$backMarkers).filter(function(i) {return i.clazz == "ace_snippet-marker";});
assert.jsonEquals(snippetMarkers[0].range.start, {row: 0, column: 2});
assert.jsonEquals(snippetMarkers[1].range.start, {row: 0, column: 1});
// check markers after insertion of the second snippet
editor.insertSnippet("\"examples\": [$1]");
snippetMarkers = Object.values(editor.session.$backMarkers).filter(function(i) {return i.clazz == "ace_snippet-marker";});
assert.equal(snippetMarkers.length, 2);
assert.jsonEquals(snippetMarkers[0].range.start, {row: 0, column: 15});
assert.jsonEquals(snippetMarkers[1].range.start, {row: 0, column: 14});
},
"test: linking": function() {
var editor = this.editor;
editor.setOption("enableMultiselect", false);
editor.setValue("");
editor.insertSnippet("${1:x} $1 $1");
assert.equal(editor.getValue(), "x x x");
editor.execCommand("insertstring", "qt");
assert.equal(editor.getValue(), "qt qt qt");
this.editor.tabstopManager.tabNext();
editor.execCommand("insertstring", ".");
assert.equal(editor.getValue(), "qt qt qt.");
},
"test: should work as expected with object of Range interface": function () {
var content = "test";
this.editor.setValue("replace1");
snippetManager.insertSnippet(this.editor, content, {
start: {row: 0, column: 0}, end: {row: 0, column: 8}
});
assert.equal(this.editor.getValue(), "test");
},
"test: insert snippet without extra indentation": function() {
var editor = this.editor;
const options = {
excludeExtraIndent: true
};
const correctlyFormattedCode = [
"def multiply_with_random(array):",
" for i in range(len(array)):",
" array[i] *= random.randint(1, 10)",
" return array"
].join("\n");
editor.setValue("");
snippetManager.insertSnippet(this.editor, "def multiply_with_random(array):\n\t");
snippetManager.insertSnippet(this.editor, "for i in range(len(array)):\n\t\tarray[i] *= random.randint(1, 10)\n\treturn array");
assert.notEqual(editor.getValue(), correctlyFormattedCode);
editor.setValue("");
snippetManager.insertSnippet(this.editor, "def multiply_with_random(array):\n\t", options);
snippetManager.insertSnippet(this.editor, "for i in range(len(array)):\n\t\tarray[i] *= random.randint(1, 10)\n\treturn array", options);
assert.equal(editor.getValue(), correctlyFormattedCode);
},
"test: snippets without multiselct": function() {
var session = new EditSession([]);
var editor = new Editor(new MockRenderer());
editor.setOption("enableMultiselect", false);
editor.setSession(session);
editor.insertSnippet("hello $1 world $1");
editor.onTextInput("!");
assert.equal(editor.getValue(), "hello ! world !");
},
"test: TabstopManager does not throw unhandled errors when session becomes `undefined`": function() {
var editor = new Editor(new MockRenderer());
var session = new EditSession("dummy content");
editor.setSession(session);
snippetManager.insertSnippet(editor, "snippet $1 with $2 tabstops");
assert.equal(session.$backMarkers[5].clazz, "ace_snippet-marker");
editor.setSession(undefined);
assert.equal(session.$backMarkers[5], undefined);
}
};
if (typeof module !== "undefined" && module === require.main) {
require("asyncjs").test.testcase(module.exports).exec();
}