-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
motion.test.ts
661 lines (560 loc) · 23.6 KB
/
motion.test.ts
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
import * as assert from 'assert';
import { Position, window } from 'vscode';
import { getCurrentParagraphBeginning, getCurrentParagraphEnd } from '../src/textobject/paragraph';
import { WordType } from '../src/textobject/word';
import { TextEditor } from './../src/textEditor';
import { setupWorkspace } from './testUtils';
suite('basic motion', () => {
const text: string[] = ['mary had', 'a', 'little lamb', ' whose fleece was '];
suiteSetup(async () => {
await setupWorkspace();
await window.activeTextEditor!.edit((editBuilder) => {
editBuilder.insert(new Position(0, 0), text.join('\n'));
});
});
test('char right: should move one column right', () => {
const position = new Position(0, 0);
assert.strictEqual(position.line, 0);
assert.strictEqual(position.character, 0);
const next = position.getRight();
assert.strictEqual(next.line, 0);
assert.strictEqual(next.character, 1);
});
test('char right', () => {
const motion = new Position(0, 8).getRight();
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 8);
});
test('char left: should move cursor one column left', () => {
let position = new Position(0, 5);
assert.strictEqual(position.line, 0);
assert.strictEqual(position.character, 5);
position = position.getLeft();
assert.strictEqual(position.line, 0);
assert.strictEqual(position.character, 4);
});
test('char left: left-most column should stay at the same location', () => {
let motion = new Position(0, 0);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
motion = motion.getLeft();
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
});
test('line down: should move cursor one line down', () => {
let motion = new Position(1, 0);
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 0);
motion = motion.getDown();
assert.strictEqual(motion.line, 2);
assert.strictEqual(motion.character, 0);
});
test('line down: bottom-most line should stay at the same location', () => {
let motion = new Position(3, 0);
assert.strictEqual(motion.line, 3);
assert.strictEqual(motion.character, 0);
motion = motion.getDown();
assert.strictEqual(motion.line, 3);
assert.strictEqual(motion.character, 0);
});
suite('line up', () => {
test('should move cursor one line up', () => {
let position = new Position(1, 0);
assert.strictEqual(position.line, 1);
assert.strictEqual(position.character, 0);
position = position.getUp();
assert.strictEqual(position.line, 0);
assert.strictEqual(position.character, 0);
});
test('top-most line should stay at the same location', () => {
let motion = new Position(0, 1);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 1);
motion = motion.getUp(0);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 1);
});
});
test('line begin', () => {
const motion = new Position(0, 3).getLineBegin();
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
});
test('line end', () => {
let motion = new Position(0, 0).getLineEnd();
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, text[0].length);
motion = new Position(2, 0).getLineEnd();
assert.strictEqual(motion.line, 2);
assert.strictEqual(motion.character, text[2].length);
});
test('document begin', () => {
const motion = TextEditor.getDocumentBegin();
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
});
test('document end', () => {
const motion = TextEditor.getDocumentEnd(window.activeTextEditor!.document);
assert.strictEqual(motion.line, text.length - 1);
assert.strictEqual(motion.character, text[text.length - 1].length);
});
test('line begin cursor on first non-blank character', () => {
const motion = TextEditor.getFirstNonWhitespaceCharOnLine(window.activeTextEditor!.document, 0);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
});
test('last line begin cursor on first non-blank character', () => {
const motion = TextEditor.getFirstNonWhitespaceCharOnLine(window.activeTextEditor!.document, 3);
assert.strictEqual(motion.line, 3);
assert.strictEqual(motion.character, 1);
});
});
suite('word motion', () => {
const text: string[] = [
'if (true) {',
' return true;',
'} else {',
'',
' return false;',
' ',
'} // endif',
];
suiteSetup(async () => {
await setupWorkspace();
await window.activeTextEditor!.edit((editBuilder) => {
editBuilder.insert(new Position(0, 0), text.join('\n'));
});
});
suite('word right', () => {
test('move to word right', () => {
const motion = new Position(0, 3).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 4);
});
test('last word should move to next line', () => {
const motion = new Position(0, 10).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 2);
});
test('last word should move to next line stops on empty line', () => {
const motion = new Position(2, 7).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 3);
assert.strictEqual(motion.character, 0);
});
test('last word should move to next line skips whitespace only line', () => {
const motion = new Position(4, 14).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 6);
assert.strictEqual(motion.character, 0);
});
test('last word on last line should go to end of document (special case!)', () => {
const motion = new Position(6, 6).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 6);
assert.strictEqual(motion.character, 10);
});
});
suite('word left', () => {
test('move cursor word left across spaces', () => {
const motion = new Position(0, 3).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
});
test('move cursor word left within word', () => {
const motion = new Position(0, 5).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 4);
});
test('first word should move to previous line, beginning of last word', () => {
const motion = new Position(1, 2).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 10);
});
test('first word should move to previous line, stops on empty line', () => {
const motion = new Position(4, 2).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 3);
assert.strictEqual(motion.character, 0);
});
test('first word should move to previous line, skips whitespace only line', () => {
const motion = new Position(6, 0).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 14);
});
});
suite('WORD right', () => {
test('move to WORD right', () => {
const motion = new Position(0, 3).nextWordStart(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 10);
});
test('last WORD should move to next line', () => {
const motion = new Position(1, 10).nextWordStart(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 2);
assert.strictEqual(motion.character, 0);
});
test('last WORD should move to next line stops on empty line', () => {
const motion = new Position(2, 7).nextWordStart(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 3);
assert.strictEqual(motion.character, 0);
});
test('last WORD should move to next line skips whitespace only line', () => {
const motion = new Position(4, 12).nextWordStart(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 6);
assert.strictEqual(motion.character, 0);
});
});
suite('WORD left', () => {
test('move cursor WORD left across spaces', () => {
const motion = new Position(0, 3).prevWordStart(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
});
test('move cursor WORD left within WORD', () => {
const motion = new Position(0, 5).prevWordStart(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 3);
});
test('first WORD should move to previous line, beginning of last WORD', () => {
const motion = new Position(2, 0).prevWordStart(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 9);
});
test('first WORD should move to previous line, stops on empty line', () => {
const motion = new Position(4, 2).prevWordStart(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 3);
assert.strictEqual(motion.character, 0);
});
test('first WORD should move to previous line, skips whitespace only line', () => {
const motion = new Position(6, 0).prevWordStart(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 9);
});
});
suite('end of word right', () => {
test('move to end of current word right', () => {
const motion = new Position(0, 4).nextWordEnd(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 7);
});
test('move to end of next word right', () => {
const motion = new Position(0, 7).nextWordEnd(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 8);
});
test('end of last word should move to next line', () => {
const motion = new Position(0, 10).nextWordEnd(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 7);
});
test('end of last word should move to next line skips empty line', () => {
const motion = new Position(2, 7).nextWordEnd(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 7);
});
test('end of last word should move to next line skips whitespace only line', () => {
const motion = new Position(4, 14).nextWordEnd(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 6);
assert.strictEqual(motion.character, 0);
});
});
suite('end of WORD right', () => {
test('move to end of current WORD right', () => {
const motion = new Position(0, 4).nextWordEnd(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 8);
});
test('move to end of next WORD right', () => {
const motion = new Position(0, 8).nextWordEnd(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 10);
});
test('end of last WORD should move to next line', () => {
const motion = new Position(0, 10).nextWordEnd(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 7);
});
test('end of last WORD should move to next line skips empty line', () => {
const motion = new Position(2, 7).nextWordEnd(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 7);
});
test('end of last WORD should move to next line skips whitespace only line', () => {
const motion = new Position(4, 14).nextWordEnd(window.activeTextEditor!.document, {
wordType: WordType.Big,
});
assert.strictEqual(motion.line, 6);
assert.strictEqual(motion.character, 0);
});
});
test('line begin cursor on first non-blank character', () => {
const motion = TextEditor.getFirstNonWhitespaceCharOnLine(window.activeTextEditor!.document, 4);
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 2);
});
test('last line begin cursor on first non-blank character', () => {
const motion = TextEditor.getFirstNonWhitespaceCharOnLine(window.activeTextEditor!.document, 6);
assert.strictEqual(motion.line, 6);
assert.strictEqual(motion.character, 0);
});
});
suite('unicode word motion', () => {
const text: string[] = [
'漢字ひらがなカタカナalphabets、いろいろな文字。',
'Καλημέρα κόσμε',
'Die früh sich einst dem trüben Blick gezeigt.',
'Được tiếp đãi ân cần',
'100£and100$and100¥#♯x',
];
suiteSetup(async () => {
await setupWorkspace();
await window.activeTextEditor!.edit((editBuilder) => {
editBuilder.insert(new Position(0, 0), text.join('\n'));
});
});
suite('word right', () => {
test('move cursor word right stops at different kind of character (ideograph -> hiragana)', () => {
const motion = new Position(0, 0).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 2);
});
test('move cursor word right stops at different kind of character (katakana -> ascii)', () => {
const motion = new Position(0, 7).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 10);
});
test('move cursor word right stops at different kind of chararacter (ascii -> punctuation)', () => {
const motion = new Position(0, 10).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 19);
});
test('move cursor word right on non-ascii text', () => {
const motion = new Position(1, 0).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 9);
});
test('move cursor word right recognizes a latin string which has diacritics as a single word', () => {
const motion = new Position(2, 4).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 2);
assert.strictEqual(motion.character, 9);
});
test('move cursor word right recognizes a latin-1 symbol as punctuation', () => {
let motion = new Position(4, 3).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 4);
motion = motion.nextWordStart(window.activeTextEditor!.document); // issue #3680
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 10);
});
test('move cursor word right recognizes a sequence of latin-1 symbols and other symbols as a word', () => {
const motion = new Position(4, 17).nextWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 20);
});
});
suite('word left', () => {
test('move cursor word left across the different char kind', () => {
const motion = new Position(0, 2).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
});
test('move cursor word left within the same char kind', () => {
const motion = new Position(0, 5).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 2);
});
test('move cursor word left across spaces on non-ascii text', () => {
const motion = new Position(1, 9).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 0);
});
test('move cursor word left within word on non-ascii text', () => {
const motion = new Position(1, 11).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 9);
});
test('move cursor word left recognizes a latin string which has diacritics as a single word', () => {
const motion = new Position(3, 10).prevWordStart(window.activeTextEditor!.document);
assert.strictEqual(motion.line, 3);
assert.strictEqual(motion.character, 5);
});
});
});
suite('sentence motion', () => {
const text: string[] = [
'This text has many sections in it. What do you think?',
'',
'A paragraph boundary is also a sentence boundry, see',
'',
'Weird things happen when there is no appropriate sentence ending',
'',
'Next line is just whitespace',
' ',
'Wow!',
'Another sentence inside one paragraph.',
'',
'"Sentence in quotes." Sentence out of quotes. \'Sentence in singlequotes.\' (Sentence in parens.) [Sentence in square brackets.]',
];
suiteSetup(async () => {
await setupWorkspace();
await window.activeTextEditor!.edit((editBuilder) => {
editBuilder.insert(new Position(0, 0), text.join('\n'));
});
});
suite('sentence forward', () => {
test('next concrete sentence', () => {
const motion = new Position(0, 0).getSentenceBegin({ forward: true });
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 35);
});
test('next sentence when cursor is at the end of previous paragraph', () => {
const motion = new Position(3, 0).getSentenceBegin({ forward: true });
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 0);
});
test('next sentence when paragraph contains a line of white spaces', () => {
const motion = new Position(6, 2).getSentenceBegin({ forward: true });
assert.strictEqual(motion.line, 9);
assert.strictEqual(motion.character, 0);
});
test('next sentence when sentences have closing punctuation', () => {
let motion = new Position(11, 0).getSentenceBegin({ forward: true });
assert.strictEqual(motion.line, 11);
assert.strictEqual(motion.character, 22);
motion = motion.getSentenceBegin({ forward: true });
assert.strictEqual(motion.line, 11);
assert.strictEqual(motion.character, 46);
motion = motion.getSentenceBegin({ forward: true });
assert.strictEqual(motion.line, 11);
assert.strictEqual(motion.character, 74);
motion = motion.getSentenceBegin({ forward: true });
assert.strictEqual(motion.line, 11);
assert.strictEqual(motion.character, 96);
});
});
suite('sentence backward', () => {
test('current sentence begin', () => {
const motion = new Position(0, 37).getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 35);
});
test('sentence backward when cursor is at the beginning of the second sentence', () => {
const motion = new Position(0, 35).getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
});
test('current sentence begin with no concrete sentence inside', () => {
const motion = new Position(3, 0).getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 2);
assert.strictEqual(motion.character, 0);
});
test("current sentence begin when it's not the same as current paragraph begin", () => {
const motion = new Position(2, 0).getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 0);
});
test('current sentence begin when previous line ends with a concrete sentence', () => {
const motion = new Position(9, 5).getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 9);
assert.strictEqual(motion.character, 0);
});
test('sentence backward when sentences have closing punctuation', () => {
let motion = new Position(11, 125).getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 11);
assert.strictEqual(motion.character, 96);
motion = motion.getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 11);
assert.strictEqual(motion.character, 74);
motion = motion.getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 11);
assert.strictEqual(motion.character, 46);
motion = motion.getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 11);
assert.strictEqual(motion.character, 22);
motion = motion.getSentenceBegin({ forward: false });
assert.strictEqual(motion.line, 10);
assert.strictEqual(motion.character, 0);
});
});
});
suite('paragraph motion', () => {
const text: string[] = [
'this text has', // 0
'', // 1
'many', // 2
'paragraphs', // 3
'', // 4
'', // 5
'in it.', // 6
'', // 7
'WOW', // 8
];
suiteSetup(async () => {
await setupWorkspace();
await window.activeTextEditor!.edit((editBuilder) => {
editBuilder.insert(new Position(0, 0), text.join('\n'));
});
});
suite('paragraph down', () => {
test('move down normally', () => {
const motion = getCurrentParagraphEnd(new Position(0, 0));
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 0);
});
test('move down longer paragraph', () => {
const motion = getCurrentParagraphEnd(new Position(2, 0));
assert.strictEqual(motion.line, 4);
assert.strictEqual(motion.character, 0);
});
test('move down starting inside empty line', () => {
const motion = getCurrentParagraphEnd(new Position(4, 0));
assert.strictEqual(motion.line, 7);
assert.strictEqual(motion.character, 0);
});
test('paragraph at end of document', () => {
const motion = getCurrentParagraphEnd(new Position(7, 0));
assert.strictEqual(motion.line, 8);
assert.strictEqual(motion.character, 3);
});
});
suite('paragraph up', () => {
test('move up short paragraph', () => {
const motion = getCurrentParagraphBeginning(new Position(1, 0));
assert.strictEqual(motion.line, 0);
assert.strictEqual(motion.character, 0);
});
test('move up longer paragraph', () => {
const motion = getCurrentParagraphBeginning(new Position(3, 0));
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 0);
});
test('move up starting inside empty line', () => {
const motion = getCurrentParagraphBeginning(new Position(5, 0));
assert.strictEqual(motion.line, 1);
assert.strictEqual(motion.character, 0);
});
});
});