123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using Terminal.Gui;
- using Xunit;
- // Alias Console to MockConsole so we don't accidentally use Console
- using Console = Terminal.Gui.FakeConsole;
- namespace Terminal.Gui.ConsoleDrivers {
- public class ConsoleDriverTests {
- [Fact]
- public void Init_Inits ()
- {
- var driver = new FakeDriver ();
- Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- driver.Init (() => { });
- Assert.Equal (80, Console.BufferWidth);
- Assert.Equal (25, Console.BufferHeight);
- // MockDriver is always 80x25
- Assert.Equal (Console.BufferWidth, driver.Cols);
- Assert.Equal (Console.BufferHeight, driver.Rows);
- driver.End ();
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void End_Cleans_Up ()
- {
- var driver = new FakeDriver ();
- Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- driver.Init (() => { });
- FakeConsole.ForegroundColor = ConsoleColor.Red;
- Assert.Equal (ConsoleColor.Red, Console.ForegroundColor);
- FakeConsole.BackgroundColor = ConsoleColor.Green;
- Assert.Equal (ConsoleColor.Green, Console.BackgroundColor);
- driver.Move (2, 3);
- Assert.Equal (2, Console.CursorLeft);
- Assert.Equal (3, Console.CursorTop);
- driver.End ();
- Assert.Equal (0, Console.CursorLeft);
- Assert.Equal (0, Console.CursorTop);
- Assert.Equal (ConsoleColor.Gray, Console.ForegroundColor);
- Assert.Equal (ConsoleColor.Black, Console.BackgroundColor);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void SetColors_Changes_Colors ()
- {
- var driver = new FakeDriver ();
- Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- driver.Init (() => { });
- Assert.Equal (ConsoleColor.Gray, Console.ForegroundColor);
- Assert.Equal (ConsoleColor.Black, Console.BackgroundColor);
- Console.ForegroundColor = ConsoleColor.Red;
- Assert.Equal (ConsoleColor.Red, Console.ForegroundColor);
- Console.BackgroundColor = ConsoleColor.Green;
- Assert.Equal (ConsoleColor.Green, Console.BackgroundColor);
- Console.ResetColor ();
- Assert.Equal (ConsoleColor.Gray, Console.ForegroundColor);
- Assert.Equal (ConsoleColor.Black, Console.BackgroundColor);
- driver.End ();
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void FakeDriver_Only_Sends_Keystrokes_Through_MockKeyPresses ()
- {
- Application.Init (new FakeDriver (), new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- var top = Application.Top;
- var view = new View ();
- var count = 0;
- var wasKeyPressed = false;
- view.KeyPress += (e) => {
- wasKeyPressed = true;
- };
- top.Add (view);
- Application.Iteration += () => {
- count++;
- if (count == 10) {
- Application.RequestStop ();
- }
- };
- Application.Run ();
- Assert.False (wasKeyPressed);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void FakeDriver_MockKeyPresses ()
- {
- Application.Init (new FakeDriver (), new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- var text = "MockKeyPresses";
- var mKeys = new Stack<ConsoleKeyInfo> ();
- foreach (var r in text.Reverse ()) {
- var ck = char.IsLetter (r) ? (ConsoleKey)char.ToUpper (r) : (ConsoleKey)r;
- var cki = new ConsoleKeyInfo (r, ck, false, false, false);
- mKeys.Push (cki);
- }
- FakeConsole.MockKeyPresses = mKeys;
- var top = Application.Top;
- var view = new View ();
- var rText = "";
- var idx = 0;
- view.KeyPress += (e) => {
- Assert.Equal (text [idx], (char)e.KeyEvent.Key);
- rText += (char)e.KeyEvent.Key;
- Assert.Equal (rText, text.Substring (0, idx + 1));
- e.Handled = true;
- idx++;
- };
- top.Add (view);
- Application.Iteration += () => {
- if (mKeys.Count == 0) {
- Application.RequestStop ();
- }
- };
- Application.Run ();
- Assert.Equal ("MockKeyPresses", rText);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void SendKeys_Test ()
- {
- Application.Init (new FakeDriver (), new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- var top = Application.Top;
- var view = new View ();
- var shift = false; var alt = false; var control = false;
- Key key = default;
- Key lastKey = default;
- List<Key> keyEnums = GetKeys ();
- int i = 0;
- int idxKey = 0;
- var PushIterations = 0;
- var PopIterations = 0;
- List<Key> GetKeys ()
- {
- List<Key> keys = new List<Key> ();
- foreach (Key k in Enum.GetValues (typeof (Key))) {
- if ((uint)k <= 0xff) {
- keys.Add (k);
- } else if ((uint)k > 0xff) {
- break;
- }
- }
- return keys;
- }
- view.KeyPress += (e) => {
- e.Handled = true;
- PopIterations++;
- var rMk = new KeyModifiers () {
- Shift = e.KeyEvent.IsShift,
- Alt = e.KeyEvent.IsAlt,
- Ctrl = e.KeyEvent.IsCtrl
- };
- lastKey = ShortcutHelper.GetModifiersKey (new KeyEvent (e.KeyEvent.Key, rMk));
- Assert.Equal (key, lastKey);
- };
- top.Add (view);
- Application.Iteration += () => {
- switch (i) {
- case 0:
- SendKeys ();
- break;
- case 1:
- shift = true;
- SendKeys ();
- break;
- case 2:
- alt = true;
- SendKeys ();
- break;
- case 3:
- control = true;
- SendKeys ();
- break;
- }
- if (PushIterations == keyEnums.Count * 4) {
- Application.RequestStop ();
- }
- };
- void SendKeys ()
- {
- var k = keyEnums [idxKey];
- var c = (char)k;
- var ck = char.IsLetter (c) ? (ConsoleKey)char.ToUpper (c) : (ConsoleKey)c;
- var mk = new KeyModifiers () {
- Shift = shift,
- Alt = alt,
- Ctrl = control
- };
- key = ShortcutHelper.GetModifiersKey (new KeyEvent (k, mk));
- Application.Driver.SendKeys (c, ck, shift, alt, control);
- PushIterations++;
- if (idxKey + 1 < keyEnums.Count) {
- idxKey++;
- } else {
- idxKey = 0;
- i++;
- }
- }
- Application.Run ();
- Assert.Equal (key, lastKey);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- public void TerminalResized_Simulation ()
- {
- var driver = new FakeDriver ();
- Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- var wasTerminalResized = false;
- Application.Resized = (e) => {
- wasTerminalResized = true;
- Assert.Equal (120, e.Cols);
- Assert.Equal (40, e.Rows);
- };
- Assert.Equal (80, Console.BufferWidth);
- Assert.Equal (25, Console.BufferHeight);
- // MockDriver is by default 80x25
- Assert.Equal (Console.BufferWidth, driver.Cols);
- Assert.Equal (Console.BufferHeight, driver.Rows);
- Assert.False (wasTerminalResized);
- // MockDriver will now be sets to 120x40
- driver.SetBufferSize (120, 40);
- Assert.Equal (120, Application.Driver.Cols);
- Assert.Equal (40, Application.Driver.Rows);
- Assert.True (wasTerminalResized);
- // MockDriver will still be 120x40
- wasTerminalResized = false;
- Application.HeightAsBuffer = true;
- driver.SetWindowSize (40, 20);
- Assert.Equal (120, Application.Driver.Cols);
- Assert.Equal (40, Application.Driver.Rows);
- Assert.Equal (120, Console.BufferWidth);
- Assert.Equal (40, Console.BufferHeight);
- Assert.Equal (40, Console.WindowWidth);
- Assert.Equal (20, Console.WindowHeight);
- Assert.True (wasTerminalResized);
- Application.Shutdown ();
- }
- [Fact]
- public void HeightAsBuffer_Is_False_Left_And_Top_Is_Always_Zero ()
- {
- var driver = new FakeDriver ();
- Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- Assert.False (Application.HeightAsBuffer);
- Assert.Equal (0, Console.WindowLeft);
- Assert.Equal (0, Console.WindowTop);
- driver.SetWindowPosition (5, 5);
- Assert.Equal (0, Console.WindowLeft);
- Assert.Equal (0, Console.WindowTop);
- Application.Shutdown ();
- }
- [Fact]
- public void HeightAsBuffer_Is_True_Left_Cannot_Be_Greater_Than_WindowWidth ()
- {
- var driver = new FakeDriver ();
- Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- Application.HeightAsBuffer = true;
- Assert.True (Application.HeightAsBuffer);
- driver.SetWindowPosition (81, 25);
- Assert.Equal (0, Console.WindowLeft);
- Assert.Equal (0, Console.WindowTop);
- Application.Shutdown ();
- }
- [Fact]
- public void HeightAsBuffer_Is_True_Left_Cannot_Be_Greater_Than_BufferWidth_Minus_WindowWidth ()
- {
- var driver = new FakeDriver ();
- Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- Application.HeightAsBuffer = true;
- Assert.True (Application.HeightAsBuffer);
- driver.SetWindowPosition (81, 25);
- Assert.Equal (0, Console.WindowLeft);
- Assert.Equal (0, Console.WindowTop);
- // MockDriver will now be sets to 120x25
- driver.SetBufferSize (120, 25);
- Assert.Equal (120, Application.Driver.Cols);
- Assert.Equal (25, Application.Driver.Rows);
- Assert.Equal (120, Console.BufferWidth);
- Assert.Equal (25, Console.BufferHeight);
- Assert.Equal (120, Console.WindowWidth);
- Assert.Equal (25, Console.WindowHeight);
- driver.SetWindowPosition (121, 25);
- Assert.Equal (0, Console.WindowLeft);
- Assert.Equal (0, Console.WindowTop);
- driver.SetWindowSize (90, 25);
- Assert.Equal (120, Application.Driver.Cols);
- Assert.Equal (25, Application.Driver.Rows);
- Assert.Equal (120, Console.BufferWidth);
- Assert.Equal (25, Console.BufferHeight);
- Assert.Equal (90, Console.WindowWidth);
- Assert.Equal (25, Console.WindowHeight);
- driver.SetWindowPosition (121, 25);
- Assert.Equal (30, Console.WindowLeft);
- Assert.Equal (0, Console.WindowTop);
- Application.Shutdown ();
- }
- [Fact]
- public void HeightAsBuffer_Is_True_Top_Cannot_Be_Greater_Than_WindowHeight ()
- {
- var driver = new FakeDriver ();
- Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- Application.HeightAsBuffer = true;
- Assert.True (Application.HeightAsBuffer);
- driver.SetWindowPosition (80, 26);
- Assert.Equal (0, Console.WindowLeft);
- Assert.Equal (0, Console.WindowTop);
- Application.Shutdown ();
- }
- [Fact]
- public void HeightAsBuffer_Is_True_Top_Cannot_Be_Greater_Than_BufferHeight_Minus_WindowHeight ()
- {
- var driver = new FakeDriver ();
- Application.Init (driver, new FakeMainLoop (() => FakeConsole.ReadKey (true)));
- Application.HeightAsBuffer = true;
- Assert.True (Application.HeightAsBuffer);
- driver.SetWindowPosition (80, 26);
- Assert.Equal (0, Console.WindowLeft);
- Assert.Equal (0, Console.WindowTop);
- // MockDriver will now be sets to 120x25
- driver.SetBufferSize (80, 40);
- Assert.Equal (80, Application.Driver.Cols);
- Assert.Equal (40, Application.Driver.Rows);
- Assert.Equal (80, Console.BufferWidth);
- Assert.Equal (40, Console.BufferHeight);
- Assert.Equal (80, Console.WindowWidth);
- Assert.Equal (40, Console.WindowHeight);
- driver.SetWindowPosition (80, 40);
- Assert.Equal (0, Console.WindowLeft);
- Assert.Equal (0, Console.WindowTop);
- driver.SetWindowSize (80, 20);
- Assert.Equal (80, Application.Driver.Cols);
- Assert.Equal (40, Application.Driver.Rows);
- Assert.Equal (80, Console.BufferWidth);
- Assert.Equal (40, Console.BufferHeight);
- Assert.Equal (80, Console.WindowWidth);
- Assert.Equal (20, Console.WindowHeight);
- driver.SetWindowPosition (80, 41);
- Assert.Equal (0, Console.WindowLeft);
- Assert.Equal (20, Console.WindowTop);
- Application.Shutdown ();
- }
- [Fact]
- public void Internal_Tests ()
- {
- var cs = new ColorScheme ();
- Assert.Equal ("", cs.caller);
- }
- [Fact]
- [AutoInitShutdown]
- public void KeyModifiers_Resetting_At_New_Keystrokes ()
- {
- bool? okInitialFocused = null;
- bool? cancelInitialFocused = null;
- var okClicked = false;
- var closing = false;
- var cursorRight = false;
- var cancelHasFocus = false;
- var closed = false;
- var top = Application.Top;
- var ok = new Button ("Ok");
- ok.Clicked += () => {
- if (!okClicked) {
- okClicked = true;
- Application.RequestStop ();
- }
- };
- var cancel = new Button ("Cancel");
- var d = new Dialog ("Quit", cancel, ok);
- d.KeyPress += (e) => {
- if (e.KeyEvent.Key == (Key.Q | Key.CtrlMask)) {
- if (!okClicked && !closing) {
- okInitialFocused = ok.HasFocus;
- cancelInitialFocused = cancel.HasFocus;
- closing = true;
- var mKeys = new Stack<ConsoleKeyInfo> ();
- var cki = new ConsoleKeyInfo ('\0', ConsoleKey.Enter, false, false, false);
- mKeys.Push (cki);
- cki = new ConsoleKeyInfo ('\0', ConsoleKey.RightArrow, false, false, false);
- mKeys.Push (cki);
- FakeConsole.MockKeyPresses = mKeys;
- }
- e.Handled = true;
- } else if (e.KeyEvent.Key == Key.CursorRight) {
- if (!cursorRight) {
- cursorRight = true;
- } else if (ok.HasFocus) {
- e.Handled = true;
- } else {
- cancelHasFocus = true;
- }
- }
- };
- d.Loaded += () => {
- var mKeys = new Stack<ConsoleKeyInfo> ();
- var cki = new ConsoleKeyInfo ('q', ConsoleKey.Q, false, false, true);
- mKeys.Push (cki);
- FakeConsole.MockKeyPresses = mKeys;
- };
- d.Closed += (_) => {
- if (okClicked && closing) {
- closed = true;
- }
- };
- top.Ready += () => Application.Run (d);
- Application.Iteration += () => {
- if (closed) {
- Application.RequestStop ();
- }
- };
- Application.Run ();
- Assert.False (okInitialFocused);
- Assert.True (cancelInitialFocused);
- Assert.True (okClicked);
- Assert.True (closing);
- Assert.True (cursorRight);
- Assert.True (cancelHasFocus);
- Assert.True (closed);
- Assert.Empty (FakeConsole.MockKeyPresses);
- }
- }
- }
|