This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathsnippets-spec.coffee
1074 lines (871 loc) · 44.3 KB
/
snippets-spec.coffee
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
path = require 'path'
temp = require('temp').track()
Snippets = require '../lib/snippets'
{TextEditor} = require 'atom'
describe "Snippets extension", ->
[editorElement, editor] = []
simulateTabKeyEvent = ({shift}={}) ->
event = atom.keymaps.constructor.buildKeydownEvent('tab', {shift, target: editorElement})
atom.keymaps.handleKeyboardEvent(event)
beforeEach ->
spyOn(Snippets, 'loadAll')
spyOn(Snippets, 'getUserSnippetsPath').andReturn('')
waitsForPromise ->
atom.workspace.open('sample.js')
waitsForPromise ->
atom.packages.activatePackage('language-javascript')
waitsForPromise ->
atom.packages.activatePackage('snippets')
runs ->
editor = atom.workspace.getActiveTextEditor()
editorElement = atom.views.getView(editor)
afterEach ->
waitsForPromise ->
atom.packages.deactivatePackage('snippets')
describe "provideSnippets interface", ->
snippetsInterface = null
beforeEach ->
snippetsInterface = Snippets.provideSnippets()
describe "bundledSnippetsLoaded", ->
it "indicates the loaded state of the bundled snippets", ->
expect(snippetsInterface.bundledSnippetsLoaded()).toBe false
Snippets.doneLoading()
expect(snippetsInterface.bundledSnippetsLoaded()).toBe true
it "resets the loaded state after snippets is deactivated", ->
expect(snippetsInterface.bundledSnippetsLoaded()).toBe false
Snippets.doneLoading()
expect(snippetsInterface.bundledSnippetsLoaded()).toBe true
waitsForPromise -> atom.packages.deactivatePackage('snippets')
waitsForPromise -> atom.packages.activatePackage('snippets')
runs ->
expect(snippetsInterface.bundledSnippetsLoaded()).toBe false
Snippets.doneLoading()
expect(snippetsInterface.bundledSnippetsLoaded()).toBe true
describe "insertSnippet", ->
it "can insert a snippet", ->
editor.setSelectedBufferRange([[0, 4], [0, 13]])
snippetsInterface.insertSnippet("hello ${1:world}", editor)
expect(editor.lineTextForBufferRow(0)).toBe "var hello world = function () {"
it "returns false for snippetToExpandUnderCursor if getSnippets returns {}", ->
snippets = atom.packages.getActivePackage('snippets').mainModule
expect(snippets.snippetToExpandUnderCursor(editor)).toEqual false
it "ignores invalid snippets in the config", ->
snippets = atom.packages.getActivePackage('snippets').mainModule
invalidSnippets = null
spyOn(snippets.scopedPropertyStore, 'getPropertyValue').andCallFake -> invalidSnippets
expect(snippets.getSnippets(editor)).toEqual {}
invalidSnippets = 'test'
expect(snippets.getSnippets(editor)).toEqual {}
invalidSnippets = []
expect(snippets.getSnippets(editor)).toEqual {}
invalidSnippets = 3
expect(snippets.getSnippets(editor)).toEqual {}
invalidSnippets = {a: null}
expect(snippets.getSnippets(editor)).toEqual {}
describe "when null snippets are present", ->
beforeEach ->
Snippets.add __filename,
'.source.js':
"some snippet":
prefix: "t1"
body: "this is a test"
'.source.js .nope':
"some snippet":
prefix: "t1"
body: null
it "overrides the less-specific defined snippet", ->
snippets = Snippets.provideSnippets()
expect(snippets.snippetsForScopes(['.source.js'])['t1']).toBeTruthy()
expect(snippets.snippetsForScopes(['.source.js .nope.not-today'])['t1']).toBeFalsy()
describe "when 'tab' is triggered on the editor", ->
beforeEach ->
Snippets.add __filename,
".source.js":
"without tab stops":
prefix: "t1"
body: "this is a test"
"with only an end tab stop":
prefix: "t1a"
body: "something $0 strange"
"overlapping prefix":
prefix: "tt1"
body: "this is another test"
"special chars":
prefix: "@unique"
body: "@unique see"
"tab stops":
prefix: "t2"
body: """
go here next:($2) and finally go here:($0)
go here first:($1)
"""
"indented second line":
prefix: "t3"
body: """
line 1
\tline 2$1
$2
"""
"multiline with indented placeholder tabstop":
prefix: "t4"
body: """
line ${1:1}
${2:body...}
"""
"multiline starting with tabstop":
prefix: "t4b"
body: """
$1 = line 1 {
line 2
}
"""
"nested tab stops":
prefix: "t5"
body: '${1:"${2:key}"}: ${3:value}'
"caused problems with undo":
prefix: "t6"
body: """
first line$1
${2:placeholder ending second line}
"""
"tab stops at beginning and then end of snippet":
prefix: "t6b"
body: "$1expanded$0"
"tab stops at end and then beginning of snippet":
prefix: "t6c"
body: "$0expanded$1"
"contains empty lines":
prefix: "t7"
body: """
first line $1
fourth line after blanks $2
"""
"with/without placeholder":
prefix: "t8"
body: """
with placeholder ${1:test}
without placeholder ${2}
"""
"multi-caret":
prefix: "t9"
body: """
with placeholder ${1:test}
without placeholder $1
"""
"multi-caret-multi-tabstop":
prefix: "t9b"
body: """
with placeholder ${1:test}
without placeholder $1
second tabstop $2
third tabstop $3
"""
"large indices":
prefix: "t10"
body: """
hello${10} ${11:large} indices${1}
"""
"no body":
prefix: "bad1"
"number body":
prefix: "bad2"
body: 100
"many tabstops":
prefix: "t11"
body: """
$0one${1} ${2:two} three${3}
"""
"simple transform":
prefix: "t12"
body: """
[${1:b}][/${1/[ ]+.*$//}]
"""
"transform with non-transforming mirrors":
prefix: "t13"
body: """
${1:placeholder}\n${1/(.)/\\u$1/}\n$1
"""
"multiple tab stops, some with transforms and some without":
prefix: "t14"
body: """
${1:placeholder} ${1/(.)/\\u$1/} $1 ${2:ANOTHER} ${2/^(.*)$/\\L$1/} $2
"""
"has a transformed tab stop without a corresponding ordinary tab stop":
prefix: 't15'
body: """
${1/(.)/\\u$1/} & $2
"""
"has a transformed tab stop that occurs before the corresponding ordinary tab stop":
prefix: 't16'
body: """
& ${1/(.)/\\u$1/} & ${1:q}
"""
"has a placeholder that mirrors another tab stop's content":
prefix: 't17'
body: "$4console.${3:log}('${2:uh $1}', $1);$0"
"has a transformed tab stop such that it is possible to move the cursor between the ordinary tab stop and its transformed version without an intermediate step":
prefix: 't18'
body: '// $1\n// ${1/./=/}'
it "parses snippets once, reusing cached ones on subsequent queries", ->
spyOn(Snippets, "getBodyParser").andCallThrough()
editor.insertText("t1")
simulateTabKeyEvent()
expect(Snippets.getBodyParser).toHaveBeenCalled()
expect(editor.lineTextForBufferRow(0)).toBe "this is a testvar quicksort = function () {"
expect(editor.getCursorScreenPosition()).toEqual [0, 14]
Snippets.getBodyParser.reset()
editor.setText("")
editor.insertText("t1")
simulateTabKeyEvent()
expect(Snippets.getBodyParser).not.toHaveBeenCalled()
expect(editor.lineTextForBufferRow(0)).toBe "this is a test"
expect(editor.getCursorScreenPosition()).toEqual [0, 14]
Snippets.getBodyParser.reset()
Snippets.add __filename,
".source.js":
"invalidate previous snippet":
prefix: "t1"
body: "new snippet"
editor.setText("")
editor.insertText("t1")
simulateTabKeyEvent()
expect(Snippets.getBodyParser).toHaveBeenCalled()
expect(editor.lineTextForBufferRow(0)).toBe "new snippet"
expect(editor.getCursorScreenPosition()).toEqual [0, 11]
describe "when the snippet body is invalid or missing", ->
it "does not register the snippet", ->
editor.setText('')
editor.insertText('bad1')
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.getText()).toBe 'bad1'
editor.setText('')
editor.setText('bad2')
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.getText()).toBe 'bad2'
describe "when the letters preceding the cursor trigger a snippet", ->
describe "when the snippet contains no tab stops", ->
it "replaces the prefix with the snippet text and places the cursor at its end", ->
editor.insertText("t1")
expect(editor.getCursorScreenPosition()).toEqual [0, 2]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "this is a testvar quicksort = function () {"
expect(editor.getCursorScreenPosition()).toEqual [0, 14]
it "inserts a real tab the next time a tab is pressed after the snippet is expanded", ->
editor.insertText("t1")
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "this is a testvar quicksort = function () {"
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "this is a test var quicksort = function () {"
describe "when the snippet contains tab stops", ->
it "places the cursor at the first tab-stop, and moves the cursor in response to 'next-tab-stop' events", ->
markerCountBefore = editor.getMarkerCount()
editor.setCursorScreenPosition([2, 0])
editor.insertText('t2')
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(2)).toBe "go here next:() and finally go here:()"
expect(editor.lineTextForBufferRow(3)).toBe "go here first:()"
expect(editor.lineTextForBufferRow(4)).toBe " if (items.length <= 1) return items;"
expect(editor.getSelectedBufferRange()).toEqual [[3, 15], [3, 15]]
simulateTabKeyEvent()
expect(editor.getSelectedBufferRange()).toEqual [[2, 14], [2, 14]]
editor.insertText 'abc'
simulateTabKeyEvent()
expect(editor.getSelectedBufferRange()).toEqual [[2, 40], [2, 40]]
# tab backwards
simulateTabKeyEvent(shift: true)
expect(editor.getSelectedBufferRange()).toEqual [[2, 14], [2, 17]] # should highlight text typed at tab stop
simulateTabKeyEvent(shift: true)
expect(editor.getSelectedBufferRange()).toEqual [[3, 15], [3, 15]]
# shift-tab on first tab-stop does nothing
simulateTabKeyEvent(shift: true)
expect(editor.getCursorScreenPosition()).toEqual [3, 15]
# tab through all tab stops, then tab on last stop to terminate snippet
simulateTabKeyEvent()
simulateTabKeyEvent()
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(2)).toBe "go here next:(abc) and finally go here:( )"
expect(editor.getMarkerCount()).toBe markerCountBefore
describe "when tab stops are nested", ->
it "destroys the inner tab stop if the outer tab stop is modified", ->
editor.setText('')
editor.insertText 't5'
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.lineTextForBufferRow(0)).toBe '"key": value'
expect(editor.getSelectedBufferRange()).toEqual [[0, 0], [0, 5]]
editor.insertText("foo")
simulateTabKeyEvent()
expect(editor.getSelectedBufferRange()).toEqual [[0, 5], [0, 10]]
describe "when the only tab stop is an end stop", ->
it "terminates the snippet immediately after moving the cursor to the end stop", ->
editor.setText('')
editor.insertText 't1a'
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "something strange"
expect(editor.getCursorBufferPosition()).toEqual [0, 10]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "something strange"
expect(editor.getCursorBufferPosition()).toEqual [0, 12]
describe "when tab stops are separated by blank lines", ->
it "correctly places the tab stops (regression)", ->
editor.setText('')
editor.insertText 't7'
atom.commands.dispatch editorElement, 'snippets:expand'
atom.commands.dispatch editorElement, 'snippets:next-tab-stop'
expect(editor.getCursorBufferPosition()).toEqual [3, 25]
describe "when the cursor is moved beyond the bounds of the current tab stop", ->
it "terminates the snippet", ->
editor.setCursorScreenPosition([2, 0])
editor.insertText('t2')
simulateTabKeyEvent()
editor.moveUp()
editor.moveLeft()
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(2)).toBe "go here next:( ) and finally go here:()"
expect(editor.getCursorBufferPosition()).toEqual [2, 16]
# test we can terminate with shift-tab
editor.setCursorScreenPosition([4, 0])
editor.insertText('t2')
simulateTabKeyEvent()
simulateTabKeyEvent()
editor.moveRight()
simulateTabKeyEvent(shift: true)
expect(editor.getCursorBufferPosition()).toEqual [4, 15]
describe "when the cursor is moved within the bounds of the current tab stop", ->
it "should not terminate the snippet", ->
editor.setCursorScreenPosition([0, 0])
editor.insertText('t8')
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "with placeholder test"
editor.moveRight()
editor.moveLeft()
editor.insertText("foo")
expect(editor.lineTextForBufferRow(0)).toBe "with placeholder tesfoot"
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder var quicksort = function () {"
editor.insertText("test")
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder testvar quicksort = function () {"
editor.moveLeft()
editor.insertText("foo")
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder tesfootvar quicksort = function () {"
describe "when the backspace is press within the bounds of the current tab stop", ->
it "should not terminate the snippet", ->
editor.setCursorScreenPosition([0, 0])
editor.insertText('t8')
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "with placeholder test"
editor.moveRight()
editor.backspace()
editor.insertText("foo")
expect(editor.lineTextForBufferRow(0)).toBe "with placeholder tesfoo"
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder var quicksort = function () {"
editor.insertText("test")
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder testvar quicksort = function () {"
editor.backspace()
editor.insertText("foo")
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder tesfoovar quicksort = function () {"
describe "when the snippet contains hard tabs", ->
describe "when the edit session is in soft-tabs mode", ->
it "translates hard tabs in the snippet to the appropriate number of spaces", ->
expect(editor.getSoftTabs()).toBeTruthy()
editor.insertText("t3")
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(1)).toBe " line 2"
expect(editor.getCursorBufferPosition()).toEqual [1, 8]
describe "when the edit session is in hard-tabs mode", ->
it "inserts hard tabs in the snippet directly", ->
editor.setSoftTabs(false)
editor.insertText("t3")
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(1)).toBe "\tline 2"
expect(editor.getCursorBufferPosition()).toEqual [1, 7]
describe "when the snippet prefix is indented", ->
describe "when the snippet spans a single line", ->
it "does not indent the next line", ->
editor.setCursorScreenPosition([2, Infinity])
editor.insertText ' t1'
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.lineTextForBufferRow(3)).toBe " var pivot = items.shift(), current, left = [], right = [];"
describe "when the snippet spans multiple lines", ->
it "indents the subsequent lines of the snippet to be even with the start of the first line", ->
expect(editor.getSoftTabs()).toBeTruthy()
editor.setCursorScreenPosition([2, Infinity])
editor.insertText ' t3'
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.lineTextForBufferRow(2)).toBe " if (items.length <= 1) return items; line 1"
expect(editor.lineTextForBufferRow(3)).toBe " line 2"
expect(editor.getCursorBufferPosition()).toEqual [3, 12]
describe "when the snippet spans multiple lines", ->
beforeEach ->
editor.update({autoIndent: true})
# editor.update() returns a Promise that never gets resolved, so we
# need to return undefined to avoid a timeout in the spec.
# TODO: Figure out why `editor.update({autoIndent: true})` never gets resolved.
return
it "places tab stops correctly", ->
expect(editor.getSoftTabs()).toBeTruthy()
editor.setCursorScreenPosition([2, Infinity])
editor.insertText ' t3'
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.getCursorBufferPosition()).toEqual [3, 12]
atom.commands.dispatch editorElement, 'snippets:next-tab-stop'
expect(editor.getCursorBufferPosition()).toEqual [4, 4]
it "indents the subsequent lines of the snippet based on the indent level before the snippet is inserted", ->
editor.setCursorScreenPosition([2, Infinity])
editor.insertNewline()
editor.insertText 't4b'
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.lineTextForBufferRow(3)).toBe " = line 1 {" # 4 + 1 spaces (because the tab stop is invisible)
expect(editor.lineTextForBufferRow(4)).toBe " line 2"
expect(editor.lineTextForBufferRow(5)).toBe " }"
expect(editor.getCursorBufferPosition()).toEqual [3, 4]
it "does not change the relative positioning of the tab stops when inserted multiple times", ->
editor.setCursorScreenPosition([2, Infinity])
editor.insertNewline()
editor.insertText 't4'
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.getSelectedBufferRange()).toEqual [[3, 9], [3, 10]]
atom.commands.dispatch editorElement, 'snippets:next-tab-stop'
expect(editor.getSelectedBufferRange()).toEqual [[4, 6], [4, 13]]
editor.insertText 't4'
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.getSelectedBufferRange()).toEqual [[4, 11], [4, 12]]
atom.commands.dispatch editorElement, 'snippets:next-tab-stop'
expect(editor.getSelectedBufferRange()).toEqual [[5, 8], [5, 15]]
editor.setText('') # Clear editor
editor.insertText 't4'
atom.commands.dispatch editorElement, 'snippets:expand'
expect(editor.getSelectedBufferRange()).toEqual [[0, 5], [0, 6]]
atom.commands.dispatch editorElement, 'snippets:next-tab-stop'
expect(editor.getSelectedBufferRange()).toEqual [[1, 2], [1, 9]]
describe "when multiple snippets match the prefix", ->
it "expands the snippet that is the longest match for the prefix", ->
editor.insertText('t113')
expect(editor.getCursorScreenPosition()).toEqual [0, 4]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "t113 var quicksort = function () {"
expect(editor.getCursorScreenPosition()).toEqual [0, 6]
editor.undo()
editor.undo()
editor.insertText("tt1")
expect(editor.getCursorScreenPosition()).toEqual [0, 3]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "this is another testvar quicksort = function () {"
expect(editor.getCursorScreenPosition()).toEqual [0, 20]
editor.undo()
editor.undo()
editor.insertText("@t1")
expect(editor.getCursorScreenPosition()).toEqual [0, 3]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "@this is a testvar quicksort = function () {"
expect(editor.getCursorScreenPosition()).toEqual [0, 15]
describe "when the word preceding the cursor ends with a snippet prefix", ->
it "inserts a tab as normal", ->
editor.insertText("t1t1t1")
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "t1t1t1 var quicksort = function () {"
describe "when the letters preceding the cursor don't match a snippet", ->
it "inserts a tab as normal", ->
editor.insertText("xxte")
expect(editor.getCursorScreenPosition()).toEqual [0, 4]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "xxte var quicksort = function () {"
expect(editor.getCursorScreenPosition()).toEqual [0, 6]
describe "when a snippet matching prefix is selected", ->
it "does not expand the snippet", ->
editor.insertText("t1")
editor.setSelectedBufferRange([[0, 0], [0, 2]])
originalLine = editor.lineTextForBufferRow(0)
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).not.toEqual originalLine
expect(editor.lineTextForBufferRow(0)).toContain "var quicksort = function () {"
expect(editor.lineTextForBufferRow(0)).not.toContain "this is a test"
describe "when a previous snippet expansion has just been undone", ->
describe "when the tab stops appear in the middle of the snippet", ->
it "expands the snippet based on the current prefix rather than jumping to the old snippet's tab stop", ->
editor.insertText 't6\n'
editor.setCursorBufferPosition [0, 2]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "first line"
editor.undo()
expect(editor.lineTextForBufferRow(0)).toBe "t6"
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "first line"
describe "when the tab stops appear at the beginning and then the end of snippet", ->
it "expands the snippet based on the current prefix rather than jumping to the old snippet's tab stop", ->
editor.insertText 't6b\n'
editor.setCursorBufferPosition [0, 3]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "expanded"
editor.undo()
expect(editor.lineTextForBufferRow(0)).toBe "t6b"
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "expanded"
expect(editor.getCursorBufferPosition()).toEqual([0, 0])
describe "when the tab stops appear at the end and then the beginning of snippet", ->
it "expands the snippet based on the current prefix rather than jumping to the old snippet's tab stop", ->
editor.insertText 't6c\n'
editor.setCursorBufferPosition [0, 3]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "expanded"
editor.undo()
expect(editor.lineTextForBufferRow(0)).toBe "t6c"
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "expanded"
expect(editor.getCursorBufferPosition()).toEqual([0, 8])
describe "when the prefix contains non-word characters", ->
it "selects the non-word characters as part of the prefix", ->
editor.insertText("@unique")
expect(editor.getCursorScreenPosition()).toEqual [0, 7]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "@unique seevar quicksort = function () {"
expect(editor.getCursorScreenPosition()).toEqual [0, 11]
editor.setCursorBufferPosition [10, 0]
editor.insertText("'@unique")
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(10)).toBe "'@unique see"
expect(editor.getCursorScreenPosition()).toEqual [10, 12]
it "does not select the whitespace before the prefix", ->
editor.insertText("a; @unique")
expect(editor.getCursorScreenPosition()).toEqual [0, 10]
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "a; @unique seevar quicksort = function () {"
expect(editor.getCursorScreenPosition()).toEqual [0, 14]
describe "when snippet contains tabstops with or without placeholder", ->
it "should create two markers", ->
editor.setCursorScreenPosition([0, 0])
editor.insertText('t8')
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "with placeholder test"
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder var quicksort = function () {"
expect(editor.getSelectedBufferRange()).toEqual [[0, 17], [0, 21]]
simulateTabKeyEvent()
expect(editor.getSelectedBufferRange()).toEqual [[1, 20], [1, 20]]
describe "when snippet contains multi-caret tabstops with or without placeholder", ->
it "should create two markers", ->
editor.setCursorScreenPosition([0, 0])
editor.insertText('t9')
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "with placeholder test"
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder var quicksort = function () {"
editor.insertText('hello')
expect(editor.lineTextForBufferRow(0)).toBe "with placeholder hello"
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder hellovar quicksort = function () {"
it "terminates the snippet when cursors are destroyed", ->
editor.setCursorScreenPosition([0, 0])
editor.insertText('t9b')
simulateTabKeyEvent()
editor.getCursors()[0].destroy()
editor.getCursorBufferPosition()
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(1)).toEqual("without placeholder ")
it "terminates the snippet expansion if a new cursor moves outside the bounds of the tab stops", ->
editor.setCursorScreenPosition([0, 0])
editor.insertText('t9b')
simulateTabKeyEvent()
editor.insertText('test')
editor.getCursors()[0].destroy()
editor.moveDown() # this should destroy the previous expansion
editor.moveToBeginningOfLine()
# this should insert whitespace instead of going through tabstops of the previous destroyed snippet
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(2).indexOf(" second")).toBe 0
it "moves to the second tabstop after a multi-caret tabstop", ->
editor.setCursorScreenPosition([0, 0])
editor.insertText('t9b')
simulateTabKeyEvent()
editor.insertText('line 1')
simulateTabKeyEvent()
editor.insertText('line 2')
simulateTabKeyEvent()
editor.insertText('line 3')
expect(editor.lineTextForBufferRow(2).indexOf("line 2 ")).toBe -1
it "mirrors input properly when a tabstop's placeholder refers to another tabstop", ->
editor.setText('t17')
editor.setCursorScreenPosition([0, 3])
simulateTabKeyEvent()
editor.insertText("foo")
expect(editor.getText()).toBe "console.log('uh foo', foo);"
simulateTabKeyEvent()
editor.insertText("bar")
expect(editor.getText()).toBe "console.log('bar', foo);"
describe "when the snippet contains tab stops with transformations", ->
it "transforms the text typed into the first tab stop before setting it in the transformed tab stop", ->
editor.setText('t12')
editor.setCursorScreenPosition([0, 3])
simulateTabKeyEvent()
expect(editor.getText()).toBe("[b][/b]")
editor.insertText('img src')
expect(editor.getText()).toBe("[img src][/img]")
it "bundles the transform mutations along with the original manual mutation for the purposes of undo and redo", ->
editor.setText('t12')
editor.setCursorScreenPosition([0, 3])
simulateTabKeyEvent()
editor.insertText('i')
expect(editor.getText()).toBe("[i][/i]")
editor.insertText('mg src')
expect(editor.getText()).toBe("[img src][/img]")
editor.undo()
expect(editor.getText()).toBe("[i][/i]")
editor.redo()
expect(editor.getText()).toBe("[img src][/img]")
it "can pick the right insertion to use as the primary even if a transformed insertion occurs first in the snippet", ->
editor.setText('t16')
editor.setCursorScreenPosition([0, 3])
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe("& Q & q")
expect(editor.getCursorBufferPosition()).toEqual([0, 7])
editor.insertText('rst')
expect(editor.lineTextForBufferRow(0)).toBe("& RST & rst")
it "silently ignores a tab stop without a non-transformed insertion to use as the primary", ->
editor.setText('t15')
editor.setCursorScreenPosition([0, 3])
simulateTabKeyEvent()
editor.insertText('a')
expect(editor.lineTextForBufferRow(0)).toBe(" & a")
expect(editor.getCursorBufferPosition()).toEqual([0, 4])
describe "when the snippet contains mirrored tab stops and tab stops with transformations", ->
it "adds cursors for the mirrors but not the transformations", ->
editor.setText('t13')
editor.setCursorScreenPosition([0, 3])
simulateTabKeyEvent()
expect(editor.getCursors().length).toBe(2)
expect(editor.getText()).toBe """
placeholder
PLACEHOLDER
"""
editor.insertText('foo')
expect(editor.getText()).toBe """
foo
FOO
foo
"""
describe "when the snippet contains multiple tab stops, some with transformations and some without", ->
it "does not get confused", ->
editor.setText('t14')
editor.setCursorScreenPosition([0, 3])
simulateTabKeyEvent()
expect(editor.getCursors().length).toBe(2)
expect(editor.getText()).toBe "placeholder PLACEHOLDER ANOTHER another "
simulateTabKeyEvent()
expect(editor.getCursors().length).toBe(2)
editor.insertText('FOO')
expect(editor.getText()).toBe """
placeholder PLACEHOLDER FOO foo FOO
"""
describe "when the snippet has a transformed tab stop such that it is possible to move the cursor between the ordinary tab stop and its transformed version without an intermediate step", ->
it "terminates the snippet upon such a cursor move", ->
editor.setText('t18')
editor.setCursorScreenPosition([0, 3])
simulateTabKeyEvent()
expect(editor.getText()).toBe("// \n// ")
expect(editor.getCursorBufferPosition()).toEqual [0, 3]
editor.insertText('wat')
expect(editor.getText()).toBe("// wat\n// ===")
# Move the cursor down one line, then up one line. This puts the cursor
# back in its previous position, but the snippet should no longer be
# active, so when we type more text, it should not be mirrored.
editor.setCursorScreenPosition([1, 6])
editor.setCursorScreenPosition([0, 6])
editor.insertText('wat')
expect(editor.getText()).toBe("// watwat\n// ===")
describe "when the snippet contains tab stops with an index >= 10", ->
it "parses and orders the indices correctly", ->
editor.setText('t10')
editor.setCursorScreenPosition([0, 3])
simulateTabKeyEvent()
expect(editor.getText()).toBe "hello large indices"
expect(editor.getCursorBufferPosition()).toEqual [0, 19]
simulateTabKeyEvent()
expect(editor.getCursorBufferPosition()).toEqual [0, 5]
simulateTabKeyEvent()
expect(editor.getSelectedBufferRange()).toEqual [[0, 6], [0, 11]]
describe "when there are multiple cursors", ->
describe "when the cursors share a common snippet prefix", ->
it "expands the snippet for all cursors and allows simultaneous editing", ->
editor.insertText('t9')
editor.setCursorBufferPosition([12, 2])
editor.insertText(' t9')
editor.addCursorAtBufferPosition([0, 2])
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "with placeholder test"
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder var quicksort = function () {"
expect(editor.lineTextForBufferRow(13)).toBe "}; with placeholder test"
expect(editor.lineTextForBufferRow(14)).toBe "without placeholder "
editor.insertText('hello')
expect(editor.lineTextForBufferRow(0)).toBe "with placeholder hello"
expect(editor.lineTextForBufferRow(1)).toBe "without placeholder hellovar quicksort = function () {"
expect(editor.lineTextForBufferRow(13)).toBe "}; with placeholder hello"
expect(editor.lineTextForBufferRow(14)).toBe "without placeholder hello"
it "applies transformations identically to single-expansion mode", ->
editor.setText('t14\nt14')
editor.setCursorBufferPosition([1, 3])
editor.addCursorAtBufferPosition([0, 3])
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "placeholder PLACEHOLDER ANOTHER another "
expect(editor.lineTextForBufferRow(1)).toBe "placeholder PLACEHOLDER ANOTHER another "
editor.insertText "testing"
expect(editor.lineTextForBufferRow(0)).toBe "testing TESTING testing ANOTHER another "
expect(editor.lineTextForBufferRow(1)).toBe "testing TESTING testing ANOTHER another "
simulateTabKeyEvent()
editor.insertText "AGAIN"
expect(editor.lineTextForBufferRow(0)).toBe "testing TESTING testing AGAIN again AGAIN"
expect(editor.lineTextForBufferRow(1)).toBe "testing TESTING testing AGAIN again AGAIN"
it "bundles transform-induced mutations into a single history entry along with their triggering edit, even across multiple snippets", ->
editor.setText('t14\nt14')
editor.setCursorBufferPosition([1, 3])
editor.addCursorAtBufferPosition([0, 3])
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "placeholder PLACEHOLDER ANOTHER another "
expect(editor.lineTextForBufferRow(1)).toBe "placeholder PLACEHOLDER ANOTHER another "
editor.insertText "testing"
expect(editor.lineTextForBufferRow(0)).toBe "testing TESTING testing ANOTHER another "
expect(editor.lineTextForBufferRow(1)).toBe "testing TESTING testing ANOTHER another "
simulateTabKeyEvent()
editor.insertText "AGAIN"
expect(editor.lineTextForBufferRow(0)).toBe "testing TESTING testing AGAIN again AGAIN"
expect(editor.lineTextForBufferRow(1)).toBe "testing TESTING testing AGAIN again AGAIN"
editor.undo()
expect(editor.lineTextForBufferRow(0)).toBe "testing TESTING testing ANOTHER another "
expect(editor.lineTextForBufferRow(1)).toBe "testing TESTING testing ANOTHER another "
editor.undo()
expect(editor.lineTextForBufferRow(0)).toBe "placeholder PLACEHOLDER ANOTHER another "
expect(editor.lineTextForBufferRow(1)).toBe "placeholder PLACEHOLDER ANOTHER another "
editor.redo()
expect(editor.lineTextForBufferRow(0)).toBe "testing TESTING testing ANOTHER another "
expect(editor.lineTextForBufferRow(1)).toBe "testing TESTING testing ANOTHER another "
editor.redo()
expect(editor.lineTextForBufferRow(0)).toBe "testing TESTING testing AGAIN again AGAIN"
expect(editor.lineTextForBufferRow(1)).toBe "testing TESTING testing AGAIN again AGAIN"
describe "when there are many tabstops", ->
it "moves the cursors between the tab stops for their corresponding snippet when tab and shift-tab are pressed", ->
editor.addCursorAtBufferPosition([7, 5])
editor.addCursorAtBufferPosition([12, 2])
editor.insertText('t11')
simulateTabKeyEvent()
cursors = editor.getCursors()
expect(cursors.length).toEqual 3
expect(cursors[0].getBufferPosition()).toEqual [0, 3]
expect(cursors[1].getBufferPosition()).toEqual [7, 8]
expect(cursors[2].getBufferPosition()).toEqual [12, 5]
expect(cursors[0].selection.isEmpty()).toBe true
expect(cursors[1].selection.isEmpty()).toBe true
expect(cursors[2].selection.isEmpty()).toBe true
simulateTabKeyEvent()
expect(cursors[0].getBufferPosition()).toEqual [0, 7]
expect(cursors[1].getBufferPosition()).toEqual [7, 12]
expect(cursors[2].getBufferPosition()).toEqual [12, 9]
expect(cursors[0].selection.isEmpty()).toBe false
expect(cursors[1].selection.isEmpty()).toBe false
expect(cursors[2].selection.isEmpty()).toBe false
expect(cursors[0].selection.getText()).toEqual 'two'
expect(cursors[1].selection.getText()).toEqual 'two'
expect(cursors[2].selection.getText()).toEqual 'two'
simulateTabKeyEvent()
expect(cursors[0].getBufferPosition()).toEqual [0, 13]
expect(cursors[1].getBufferPosition()).toEqual [7, 18]
expect(cursors[2].getBufferPosition()).toEqual [12, 15]
expect(cursors[0].selection.isEmpty()).toBe true
expect(cursors[1].selection.isEmpty()).toBe true
expect(cursors[2].selection.isEmpty()).toBe true
simulateTabKeyEvent()
expect(cursors[0].getBufferPosition()).toEqual [0, 0]
expect(cursors[1].getBufferPosition()).toEqual [7, 5]
expect(cursors[2].getBufferPosition()).toEqual [12, 2]
expect(cursors[0].selection.isEmpty()).toBe true
expect(cursors[1].selection.isEmpty()).toBe true
expect(cursors[2].selection.isEmpty()).toBe true
describe "when the cursors do not share common snippet prefixes", ->
it "inserts tabs as normal", ->
editor.insertText('t9')
editor.setCursorBufferPosition([12, 2])
editor.insertText(' t8')
editor.addCursorAtBufferPosition([0, 2])
simulateTabKeyEvent()
expect(editor.lineTextForBufferRow(0)).toBe "t9 var quicksort = function () {"
expect(editor.lineTextForBufferRow(12)).toBe "}; t8 "
describe "when a snippet is triggered within an existing snippet expansion", ->
it "ignores the snippet expansion and goes to the next tab stop", ->
editor.addCursorAtBufferPosition([7, 5])
editor.addCursorAtBufferPosition([12, 2])
editor.insertText('t11')
simulateTabKeyEvent()
simulateTabKeyEvent()
editor.insertText('t1')
simulateTabKeyEvent()
cursors = editor.getCursors()
expect(cursors.length).toEqual 3
expect(cursors[0].getBufferPosition()).toEqual [0, 12]
expect(cursors[1].getBufferPosition()).toEqual [7, 17]
expect(cursors[2].getBufferPosition()).toEqual [12, 14]
expect(cursors[0].selection.isEmpty()).toBe true
expect(cursors[1].selection.isEmpty()).toBe true
expect(cursors[2].selection.isEmpty()).toBe true
expect(editor.lineTextForBufferRow(0)).toBe "one t1 threevar quicksort = function () {"
expect(editor.lineTextForBufferRow(7)).toBe " }one t1 three"
expect(editor.lineTextForBufferRow(12)).toBe "};one t1 three"
describe "when the editor is not a pane item (regression)", ->
it "handles tab stops correctly", ->
editor = new TextEditor()
atom.grammars.assignLanguageMode(editor, 'source.js')
editorElement = editor.getElement()
editor.insertText('t2')
simulateTabKeyEvent()
editor.insertText('ABC')
expect(editor.getText()).toContain('go here first:(ABC)')