forked from PowerShell/PSReadLine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnitTestReadLine.cs
More file actions
884 lines (775 loc) · 31.1 KB
/
Copy pathUnitTestReadLine.cs
File metadata and controls
884 lines (775 loc) · 31.1 KB
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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Windows;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.PowerShell;
using Microsoft.PowerShell.Internal;
namespace UnitTestPSReadLine
{
// Disgusting language hack to make it easier to read a sequence of keys.
using _ = Keys;
internal class MockedMethods : IPSConsoleReadLineMockableMethods
{
internal bool didDing;
public void Ding()
{
didDing = true;
}
public CommandCompletion CompleteInput(string input, int cursorIndex, Hashtable options, PowerShell powershell)
{
return UnitTest.MockedCompleteInput(input, cursorIndex, options, powershell);
}
public bool RunspaceIsRemote(Runspace runspace)
{
return false;
}
}
internal struct CHAR_INFO
{
public ushort UnicodeChar;
public ushort Attributes;
public CHAR_INFO(char c, ConsoleColor foreground, ConsoleColor background)
{
UnicodeChar = c;
Attributes = (ushort)(((int)background << 4) | (int)foreground);
}
public ConsoleColor ForegroundColor
{
get => (ConsoleColor)(Attributes & 0xf);
set => Attributes = (ushort)((Attributes & 0xfff0) | ((int)value & 0xf));
}
public ConsoleColor BackgroundColor
{
get => (ConsoleColor)((Attributes & 0xf0) >> 4);
set => Attributes = (ushort)((Attributes & 0xff0f) | (((int)value & 0xf) << 4));
}
public override string ToString()
{
var sb = new StringBuilder();
sb.Append((char)UnicodeChar);
if (ForegroundColor != Console.ForegroundColor)
sb.AppendFormat(" fg: {0}", ForegroundColor);
if (BackgroundColor != Console.BackgroundColor)
sb.AppendFormat(" bg: {0}", BackgroundColor);
return sb.ToString();
}
public override bool Equals(object obj)
{
if (!(obj is CHAR_INFO))
{
return false;
}
var other = (CHAR_INFO)obj;
return this.UnicodeChar == other.UnicodeChar && this.Attributes == other.Attributes;
}
public override int GetHashCode()
{
return UnicodeChar.GetHashCode() + Attributes.GetHashCode();
}
}
internal class TestConsole : IConsole
{
internal int index;
internal object[] inputOrValidateItems;
internal Exception validationFailure;
private readonly CHAR_INFO[] buffer;
private readonly int _bufferWidth;
private readonly int _bufferHeight;
private readonly int _windowWidth;
private readonly int _windowHeight;
private bool _ignoreNextNewline;
internal TestConsole()
{
BackgroundColor = UnitTest.BackgroundColors[0];
ForegroundColor = UnitTest.Colors[0];
CursorLeft = 0;
CursorTop = 0;
_bufferWidth = _windowWidth = 60;
_bufferHeight = _windowHeight = 1000; // big enough to avoid the need to implement scrolling
buffer = new CHAR_INFO[BufferWidth * BufferHeight];
ClearBuffer();
}
internal void Init(object[] items)
{
this.index = 0;
this.inputOrValidateItems = items;
this.validationFailure = null;
}
public ConsoleKeyInfo ReadKey()
{
while (index < inputOrValidateItems.Length)
{
var item = inputOrValidateItems[index++];
if (item is ConsoleKeyInfo)
{
return (ConsoleKeyInfo)item;
}
try
{
((Action)item)();
}
catch (Exception e)
{
// Just remember the first exception
if (validationFailure == null)
{
validationFailure = e;
}
// In the hopes of avoiding additional failures, try cancelling via Ctrl+C.
return _.CtrlC;
}
}
validationFailure = new Exception("Shouldn't call ReadKey when there are no more keys");
return _.CtrlC;
}
public bool KeyAvailable => index < inputOrValidateItems.Length && inputOrValidateItems[index] is ConsoleKeyInfo;
public int CursorLeft { get; set; }
public int CursorTop { get; set; }
public int CursorSize { get; set; }
public bool CursorVisible { get; set; }
public int BufferWidth
{
get => _bufferWidth;
set => throw new NotImplementedException();
}
public int BufferHeight
{
get => _bufferHeight;
set => throw new NotImplementedException();
}
public int WindowWidth
{
get => _windowWidth;
set => throw new NotImplementedException();
}
public int WindowHeight
{
get => _windowHeight;
set => throw new NotImplementedException();
}
public int WindowTop { get; set; }
public ConsoleColor BackgroundColor
{
get => _backgroundColor;
set => _backgroundColor = Negative ? (ConsoleColor)((int)value ^ 7) : value;
}
private ConsoleColor _backgroundColor;
public ConsoleColor ForegroundColor
{
get => _foregroundColor;
set => _foregroundColor = Negative ? (ConsoleColor)((int)value ^ 7) : value;
}
private ConsoleColor _foregroundColor;
private bool Negative;
public void SetWindowPosition(int left, int top)
{
}
public void SetCursorPosition(int left, int top)
{
CursorLeft = left;
CursorTop = top;
}
public void WriteLine(string s)
{
// Crappy code here - no checks for a string that's too long, no scrolling.
Write(s);
CursorLeft = 0;
CursorTop += 1;
}
public void Write(string s)
{
// Crappy code here - no checks for a string that's too long, no scrolling.
var writePos = CursorTop * BufferWidth + CursorLeft;
for (int i = 0; i < s.Length; i++)
{
if (s[i] == (char) 0x1b)
{
// Escape sequence - limited support here, and assumed to be well formed.
var endSequence = s.IndexOf("m", i, StringComparison.Ordinal);
var escapeSequence = s.Substring(i, endSequence - i + 1);
EscapeSequenceActions[escapeSequence](this);
i = endSequence;
continue;
}
if (s[i] == '\b')
{
CursorLeft -= 1;
if (CursorLeft < 0)
{
CursorTop -= 1;
CursorLeft = BufferWidth - 1;
}
_ignoreNextNewline = false;
}
else if (s[i] == '\n')
{
if (!_ignoreNextNewline)
{
CursorTop += 1;
CursorLeft = 0;
writePos = CursorTop * BufferWidth;
}
_ignoreNextNewline = false;
}
else
{
_ignoreNextNewline = false;
CursorLeft += 1;
if (CursorLeft == BufferWidth)
{
CursorLeft = 0;
CursorTop += 1;
_ignoreNextNewline = true;
}
buffer[writePos].UnicodeChar = s[i];
buffer[writePos].BackgroundColor = BackgroundColor;
buffer[writePos].ForegroundColor = ForegroundColor;
writePos += 1;
}
}
}
public void ScrollBuffer(int lines)
{
}
public void Clear()
{
SetCursorPosition(0, 0);
ClearBuffer();
}
void ClearBuffer()
{
for (int i = 0; i < buffer.Length; i++)
{
buffer[i] = new CHAR_INFO(' ', ForegroundColor, BackgroundColor);
}
}
public CHAR_INFO[] ReadBufferLines(int top, int count)
{
var toCopy = BufferWidth * count;
var result = new CHAR_INFO[toCopy];
Array.Copy(buffer, top * BufferWidth, result, 0, toCopy);
return result;
}
private int _savedX, _savedY;
public void SaveCursor()
{
_savedX = CursorLeft;
_savedY = CursorTop;
}
public void RestoreCursor()
{
SetCursorPosition(_savedX, _savedY);
}
private static readonly ConsoleColor DefaultForeground = UnitTest.Colors[0];
private static readonly ConsoleColor DefaultBackground = UnitTest.BackgroundColors[0];
private static void ToggleNegative(TestConsole c, bool b)
{
c.Negative = false;
c.ForegroundColor = (ConsoleColor)((int)c.ForegroundColor ^ 7);
c.BackgroundColor = (ConsoleColor)((int)c.BackgroundColor ^ 7);
c.Negative = b;
}
private static readonly Dictionary<string, Action<TestConsole>> EscapeSequenceActions = new Dictionary<string, Action<TestConsole>> {
{"\x1b[7m", c => ToggleNegative(c, true) },
{"\x1b[27m", c => ToggleNegative(c, false) },
{"\x1b[40m", c => c.BackgroundColor = ConsoleColor.Black},
{"\x1b[44m", c => c.BackgroundColor = ConsoleColor.DarkBlue },
{"\x1b[42m", c => c.BackgroundColor = ConsoleColor.DarkGreen},
{"\x1b[46m", c => c.BackgroundColor = ConsoleColor.DarkCyan},
{"\x1b[41m", c => c.BackgroundColor = ConsoleColor.DarkRed},
{"\x1b[45m", c => c.BackgroundColor = ConsoleColor.DarkMagenta},
{"\x1b[43m", c => c.BackgroundColor = ConsoleColor.DarkYellow},
{"\x1b[47m", c => c.BackgroundColor = ConsoleColor.Gray},
{"\x1b[100m", c => c.BackgroundColor = ConsoleColor.DarkGray},
{"\x1b[104m", c => c.BackgroundColor = ConsoleColor.Blue},
{"\x1b[102m", c => c.BackgroundColor = ConsoleColor.Green},
{"\x1b[106m", c => c.BackgroundColor = ConsoleColor.Cyan},
{"\x1b[101m", c => c.BackgroundColor = ConsoleColor.Red},
{"\x1b[105m", c => c.BackgroundColor = ConsoleColor.Magenta},
{"\x1b[103m", c => c.BackgroundColor = ConsoleColor.Yellow},
{"\x1b[107m", c => c.BackgroundColor = ConsoleColor.White},
{"\x1b[30m", c => c.ForegroundColor = ConsoleColor.Black},
{"\x1b[34m", c => c.ForegroundColor = ConsoleColor.DarkBlue},
{"\x1b[32m", c => c.ForegroundColor = ConsoleColor.DarkGreen},
{"\x1b[36m", c => c.ForegroundColor = ConsoleColor.DarkCyan},
{"\x1b[31m", c => c.ForegroundColor = ConsoleColor.DarkRed},
{"\x1b[35m", c => c.ForegroundColor = ConsoleColor.DarkMagenta},
{"\x1b[33m", c => c.ForegroundColor = ConsoleColor.DarkYellow},
{"\x1b[37m", c => c.ForegroundColor = ConsoleColor.Gray},
{"\x1b[90m", c => c.ForegroundColor = ConsoleColor.DarkGray},
{"\x1b[94m", c => c.ForegroundColor = ConsoleColor.Blue},
{"\x1b[92m", c => c.ForegroundColor = ConsoleColor.Green},
{"\x1b[96m", c => c.ForegroundColor = ConsoleColor.Cyan},
{"\x1b[91m", c => c.ForegroundColor = ConsoleColor.Red},
{"\x1b[95m", c => c.ForegroundColor = ConsoleColor.Magenta},
{"\x1b[93m", c => c.ForegroundColor = ConsoleColor.Yellow},
{"\x1b[97m", c => c.ForegroundColor = ConsoleColor.White},
{"\x1b[0m", c => {
c.ForegroundColor = DefaultForeground;
c.BackgroundColor = DefaultBackground;
}}
};
}
[TestClass]
public partial class UnitTest
{
static UnitTest()
{
var iss = InitialSessionState.CreateDefault2();
var rs = RunspaceFactory.CreateRunspace(iss);
rs.Open();
Runspace.DefaultRunspace = rs;
for (var i = 'a'; i <= 'z'; i++)
{
CharToKeyInfo[i] = new ConsoleKeyInfo(i, ConsoleKey.A + i - 'a', false, false, false);
}
for (var i = 'A'; i <= 'Z'; i++)
{
CharToKeyInfo[i] = new ConsoleKeyInfo(i, ConsoleKey.A + i - 'A', true, false, false);
}
for (var i = '0'; i <= '9'; i++)
{
CharToKeyInfo[i] = new ConsoleKeyInfo(i, ConsoleKey.D0 + i - '0', false, false, false);
}
CharToKeyInfo['{'] = _.LCurly;
CharToKeyInfo['}'] = _.RCurly;
CharToKeyInfo['('] = _.LParen;
CharToKeyInfo[')'] = _.RParen;
CharToKeyInfo['['] = _.LBracket;
CharToKeyInfo[']'] = _.RBracket;
CharToKeyInfo[' '] = _.Space;
CharToKeyInfo['$'] = _.Dollar;
CharToKeyInfo['#'] = _.Pound;
CharToKeyInfo['<'] = _.LessThan;
CharToKeyInfo['>'] = _.GreaterThan;
CharToKeyInfo['+'] = _.Plus;
CharToKeyInfo['-'] = _.Minus;
CharToKeyInfo['*'] = _.Star;
CharToKeyInfo['_'] = _.Underbar;
CharToKeyInfo['|'] = _.Pipe;
CharToKeyInfo[';'] = _.Semicolon;
CharToKeyInfo[':'] = _.Colon;
CharToKeyInfo['"'] = _.DQuote;
CharToKeyInfo['\''] = _.SQuote;
CharToKeyInfo['\\'] = _.Backslash;
CharToKeyInfo['/'] = _.Slash;
CharToKeyInfo['\n'] = new ConsoleKeyInfo('\r', ConsoleKey.Enter, false, false, false);
CharToKeyInfo['\r'] = new ConsoleKeyInfo('\r', ConsoleKey.Enter, false, false, false);
}
private enum KeyMode
{
Cmd,
Emacs,
Vi
};
// These colors are random - we just use these colors instead of the defaults
// so the tests aren't sensitive to tweaks to the default colors.
internal static readonly ConsoleColor[] Colors = new []
{
/*None*/ ConsoleColor.DarkRed,
/*Comment*/ ConsoleColor.Blue,
/*Keyword*/ ConsoleColor.Cyan,
/*String*/ ConsoleColor.Gray,
/*Operator*/ ConsoleColor.Green,
/*Variable*/ ConsoleColor.Magenta,
/*Command*/ ConsoleColor.Red,
/*Parameter*/ ConsoleColor.White,
/*Type*/ ConsoleColor.Yellow,
/*Number*/ ConsoleColor.DarkBlue,
/*Member*/ ConsoleColor.DarkMagenta,
};
internal static readonly ConsoleColor[] BackgroundColors = new[]
{
/*None*/ ConsoleColor.DarkGray,
/*Comment*/ ConsoleColor.DarkBlue,
/*Keyword*/ ConsoleColor.DarkCyan,
/*String*/ ConsoleColor.DarkGray,
/*Operator*/ ConsoleColor.DarkGreen,
/*Variable*/ ConsoleColor.DarkMagenta,
/*Command*/ ConsoleColor.DarkRed,
/*Parameter*/ ConsoleColor.DarkYellow,
/*Type*/ ConsoleColor.Black,
/*Number*/ ConsoleColor.Gray,
/*Member*/ ConsoleColor.Yellow,
};
static readonly Dictionary<char, ConsoleKeyInfo> CharToKeyInfo = new Dictionary<char, ConsoleKeyInfo>();
class KeyHandler
{
public KeyHandler(string chord, Action<ConsoleKeyInfo?, object> handler)
{
this.Chord = chord;
this.Handler = handler;
}
public string Chord { get; }
public Action<ConsoleKeyInfo?, object> Handler { get; }
}
private void AssertCursorLeftTopIs(int left, int top)
{
AssertCursorLeftIs(left);
AssertCursorTopIs(top);
}
private void AssertCursorLeftIs(int expected)
{
Assert.AreEqual(expected, _console.CursorLeft);
}
private void AssertCursorTopIs(int expected)
{
Assert.AreEqual(expected, _console.CursorTop);
}
private void AssertLineIs(string expected)
{
PSConsoleReadLine.GetBufferState(out var input, out var unused);
Assert.AreEqual(expected, input);
}
private static string GetClipboardText()
{
string fromClipboard = null;
ExecuteOnSTAThread(() =>
{
for (int i = 0; i < 5; i++)
{
try
{
Assert.IsTrue(Clipboard.ContainsText());
fromClipboard = Clipboard.GetText();
}
catch (System.Runtime.InteropServices.COMException)
{
}
}
});
return fromClipboard;
}
private void AssertClipboardTextIs(string text)
{
var fromClipboard = GetClipboardText();
Assert.AreEqual(text, fromClipboard);
}
private void AssertScreenCaptureClipboardIs(params string[] lines)
{
var fromClipboard = GetClipboardText();
var newline = Environment.NewLine;
var text = string.Join(Environment.NewLine, lines);
if (!text.EndsWith(newline))
{
text = text + newline;
}
Assert.AreEqual(text, fromClipboard);
}
private static void ExecuteOnSTAThread(Action action)
{
if (Thread.CurrentThread.GetApartmentState() == ApartmentState.STA)
{
action();
return;
}
Exception exception = null;
var thread = new Thread(() =>
{
try
{
action();
}
catch (Exception e)
{
exception = e;
}
});
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
thread.Join();
if (exception != null)
{
throw exception;
}
}
private class NextLineToken { }
static readonly NextLineToken NextLine = new NextLineToken();
private class InvertedToken { }
static readonly InvertedToken Inverted = new InvertedToken();
private CHAR_INFO[] CreateCharInfoBuffer(int lines, params object[] items)
{
var result = new List<CHAR_INFO>();
var fg = _console.ForegroundColor;
var bg = _console.BackgroundColor;
foreach (var i in items)
{
var item = i;
if (item is char)
{
result.Add(new CHAR_INFO((char)item, fg, bg));
continue;
}
if (item is InvertedToken)
{
fg = (ConsoleColor)((int)fg ^ 7);
bg = (ConsoleColor)((int)bg ^ 7);
continue;
}
if (item is NextLineToken)
{
item = new string(' ', _console.BufferWidth - (result.Count % _console.BufferWidth));
fg = _console.ForegroundColor;
bg = _console.BackgroundColor;
// Fallthrough to string case.
}
if (item is string str)
{
result.AddRange(str.Select(c => new CHAR_INFO(c, fg, bg)));
continue;
}
if (item is TokenClassification)
{
fg = Colors[(int)(TokenClassification)item];
bg = BackgroundColors[(int)(TokenClassification)item];
continue;
}
if (item is Tuple<ConsoleColor, ConsoleColor> tuple)
{
fg = tuple.Item1;
bg = tuple.Item2;
continue;
}
throw new ArgumentException("Unexpected type");
}
var extraSpacesNeeded = (lines * _console.BufferWidth) - result.Count;
if (extraSpacesNeeded > 0)
{
var space = new CHAR_INFO(' ', _console.ForegroundColor, _console.BackgroundColor);
result.AddRange(Enumerable.Repeat(space, extraSpacesNeeded));
}
return result.ToArray();
}
static Action CheckThat(Action action)
{
// Syntatic sugar - saves a couple parens when calling Keys
return action;
}
private class KeyPlaceholder {}
private static readonly KeyPlaceholder InputAcceptedNow = new KeyPlaceholder();
private static object[] Keys(params object[] input)
{
bool autoAddEnter = true;
var list = new List<object>();
foreach (var t in input)
{
if (t is IEnumerable enumerable && !(t is string))
{
foreach (var i in enumerable)
{
NewAddSingleKeyToList(i, list);
}
continue;
}
if (t == InputAcceptedNow)
{
autoAddEnter = false;
continue;
}
NewAddSingleKeyToList(t, list);
}
if (autoAddEnter)
{
// Make sure we have Enter as the last key.
for (int i = list.Count - 1; i >= 0; i--)
{
// Actions after the last key are fine, they'll
// get called.
if (list[i] is Action)
{
continue;
}
// We've skipped any actions at the end, this is
// the last key. If it's not Enter, add Enter at the
// end for convenience.
var key = (ConsoleKeyInfo)list[i];
if (key.Key != ConsoleKey.Enter || key.Modifiers != 0)
{
list.Add(_.Enter);
}
break;
}
}
return list.ToArray();
}
private static void NewAddSingleKeyToList(object t, List<object> list)
{
if (t is string s)
{
foreach (var c in s)
{
list.Add(CharToKeyInfo[c]);
}
}
else if (t is ConsoleKeyInfo)
{
list.Add(t);
}
else if (t is char)
{
list.Add(CharToKeyInfo[(char)t]);
}
else
{
Assert.IsInstanceOfType(t, typeof(Action));
list.Add(t);
}
}
private void AssertScreenIs(int lines, params object[] items)
{
var consoleBuffer = _console.ReadBufferLines(0, lines);
var expectedBuffer = CreateCharInfoBuffer(lines, items);
Assert.AreEqual(expectedBuffer.Length, consoleBuffer.Length);
for (var i = 0; i < expectedBuffer.Length; i++)
{
// Comparing CHAR_INFO should work, but randomly some attributes are set
// that shouldn't be and aren't ever set by any code in PSReadline, so we'll
// ignore those bits and just check the stuff we do set.
Assert.AreEqual(expectedBuffer[i].UnicodeChar, consoleBuffer[i].UnicodeChar);
Assert.AreEqual(expectedBuffer[i].ForegroundColor, consoleBuffer[i].ForegroundColor);
Assert.AreEqual(expectedBuffer[i].BackgroundColor, consoleBuffer[i].BackgroundColor);
}
}
private void SetPrompt(string prompt)
{
var options = new SetPSReadlineOption {ExtraPromptLineCount = 0};
if (string.IsNullOrEmpty(prompt))
{
options.PromptText = "";
PSConsoleReadLine.SetOptions(options);
return;
}
int i;
for (i = prompt.Length - 1; i >= 0; i--)
{
if (!char.IsWhiteSpace(prompt[i])) break;
}
options.PromptText = prompt.Substring(i);
var lineCount = 1 + prompt.Count(c => c == '\n');
if (lineCount > 1)
{
options.ExtraPromptLineCount = lineCount - 1;
}
PSConsoleReadLine.SetOptions(options);
_console.Write(prompt);
}
[ExcludeFromCodeCoverage]
private void Test(string expectedResult, object[] items)
{
Test(expectedResult, items, resetCursor: true, prompt: null, mustDing: false);
}
[ExcludeFromCodeCoverage]
private void Test(string expectedResult, object[] items, string prompt)
{
Test(expectedResult, items, resetCursor: true, prompt: prompt, mustDing: false);
}
[ExcludeFromCodeCoverage]
private void Test(string expectedResult, object[] items, bool resetCursor)
{
Test(expectedResult, items, resetCursor: resetCursor, prompt: null, mustDing: false);
}
[ExcludeFromCodeCoverage]
private void Test(string expectedResult, object[] items, bool resetCursor, string prompt, bool mustDing)
{
if (resetCursor)
{
_console.Clear();
}
SetPrompt(prompt);
_console.Init(items);
var result = PSConsoleReadLine.ReadLine(null, null);
if (_console.validationFailure != null)
{
throw new Exception("", _console.validationFailure);
}
while (_console.index < _console.inputOrValidateItems.Length)
{
var item = _console.inputOrValidateItems[_console.index++];
((Action)item)();
}
Assert.AreEqual(expectedResult, result);
if (mustDing)
{
Assert.IsTrue(_mockedMethods.didDing);
}
}
private void TestMustDing(string expectedResult, object[] items)
{
Test(expectedResult, items, resetCursor: true, prompt: null, mustDing: true);
}
private TestConsole _console;
private MockedMethods _mockedMethods;
private static string MakeCombinedColor(ConsoleColor fg, ConsoleColor bg)
=> VTColorUtils.AsEscapeSequence(fg) + VTColorUtils.AsEscapeSequence(bg, isBackground: true);
private void TestSetup(KeyMode keyMode, params KeyHandler[] keyHandlers)
{
_console = new TestConsole();
_mockedMethods = new MockedMethods();
var instance = (PSConsoleReadLine)typeof(PSConsoleReadLine)
.GetField("_singleton", BindingFlags.Static | BindingFlags.NonPublic).GetValue(null);
typeof(PSConsoleReadLine)
.GetField("_mockableMethods", BindingFlags.Instance | BindingFlags.NonPublic)
.SetValue(instance, _mockedMethods);
typeof(PSConsoleReadLine)
.GetField("_console", BindingFlags.Instance | BindingFlags.NonPublic)
.SetValue(instance, _console);
PSConsoleReadLine.ClearHistory();
PSConsoleReadLine.ClearKillRing();
var options = new SetPSReadlineOption
{
AddToHistoryHandler = null,
BellStyle = PSConsoleReadlineOptions.DefaultBellStyle,
CompletionQueryItems = PSConsoleReadlineOptions.DefaultCompletionQueryItems,
ContinuationPrompt = PSConsoleReadlineOptions.DefaultContinuationPrompt,
ContinuationPromptColor = MakeCombinedColor(_console.ForegroundColor, _console.BackgroundColor),
DingDuration = 1, // Make tests virtually silent when they ding
DingTone = 37, // Make tests virtually silent when they ding
EmphasisColor = MakeCombinedColor(PSConsoleReadlineOptions.DefaultEmphasisColor, _console.BackgroundColor),
ErrorColor = MakeCombinedColor(ConsoleColor.Red, ConsoleColor.DarkRed),
ExtraPromptLineCount = PSConsoleReadlineOptions.DefaultExtraPromptLineCount,
HistoryNoDuplicates = PSConsoleReadlineOptions.DefaultHistoryNoDuplicates,
HistorySaveStyle = HistorySaveStyle.SaveNothing,
HistorySearchCaseSensitive = PSConsoleReadlineOptions.DefaultHistorySearchCaseSensitive,
HistorySearchCursorMovesToEnd = PSConsoleReadlineOptions.DefaultHistorySearchCursorMovesToEnd,
MaximumHistoryCount = PSConsoleReadlineOptions.DefaultMaximumHistoryCount,
MaximumKillRingCount = PSConsoleReadlineOptions.DefaultMaximumKillRingCount,
ResetTokenColors = true,
ShowToolTips = PSConsoleReadlineOptions.DefaultShowToolTips,
WordDelimiters = PSConsoleReadlineOptions.DefaultWordDelimiters,
PromptText = "",
};
switch (keyMode)
{
case KeyMode.Cmd:
options.EditMode = EditMode.Windows;
break;
case KeyMode.Emacs:
options.EditMode = EditMode.Emacs;
break;
case KeyMode.Vi:
options.EditMode = EditMode.Vi;
break;
}
PSConsoleReadLine.SetOptions(options);
foreach (var keyHandler in keyHandlers)
{
PSConsoleReadLine.SetKeyHandler(new [] {keyHandler.Chord}, keyHandler.Handler, "", "");
}
var colorOptions = new SetPSReadlineOption();
foreach (var val in typeof(TokenClassification).GetEnumValues())
{
colorOptions.TokenKind = (TokenClassification)val;
colorOptions.Color = MakeCombinedColor(Colors[(int) val], BackgroundColors[(int) val]);
PSConsoleReadLine.SetOptions(colorOptions);
}
}
}
}