12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010 |
- using System;
- using System.Diagnostics;
- using System.Linq;
- using System.Runtime.InteropServices;
- using System.Threading;
- using System.Threading.Tasks;
- using Xunit;
- // Alias Console to MockConsole so we don't accidentally use Console
- using Console = Terminal.Gui.FakeConsole;
- namespace Terminal.Gui.ApplicationTests {
- public class ApplicationTests {
- public ApplicationTests ()
- {
- #if DEBUG_IDISPOSABLE
- Responder.Instances.Clear ();
- Application.RunState.Instances.Clear ();
- #endif
- }
- void Pre_Init_State ()
- {
- Assert.Null (Application.Driver);
- Assert.Null (Application.Top);
- Assert.Null (Application.Current);
- Assert.False (Application.EnableConsoleScrolling);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Iteration);
- Assert.Null (Application.RootMouseEvent);
- Assert.Null (Application.Resized);
- }
- void Post_Init_State ()
- {
- Assert.NotNull (Application.Driver);
- Assert.NotNull (Application.Top);
- Assert.NotNull (Application.Current);
- Assert.False (Application.EnableConsoleScrolling);
- Assert.NotNull (Application.MainLoop);
- Assert.Null (Application.Iteration);
- Assert.Null (Application.RootMouseEvent);
- Assert.Null (Application.Resized);
- }
- void Init ()
- {
- Application.Init (new FakeDriver ());
- Assert.NotNull (Application.Driver);
- Assert.NotNull (Application.MainLoop);
- Assert.NotNull (SynchronizationContext.Current);
- }
- void Shutdown ()
- {
- Application.Shutdown ();
- }
- [Fact]
- public void Init_Shutdown_Cleans_Up ()
- {
- // Verify initial state is per spec
- Pre_Init_State ();
- Application.Init (new FakeDriver ());
- // Verify post-Init state is correct
- Post_Init_State ();
- // MockDriver is always 80x25
- Assert.Equal (80, Application.Driver.Cols);
- Assert.Equal (25, Application.Driver.Rows);
- Application.Shutdown ();
- // Verify state is back to initial
- Pre_Init_State ();
- #if DEBUG_IDISPOSABLE
- // Validate there are no outstanding Responder-based instances
- // after a scenario was selected to run. This proves the main UI Catalog
- // 'app' closed cleanly.
- foreach (var inst in Responder.Instances) {
- Assert.True (inst.WasDisposed);
- }
- #endif
- }
- [Fact]
- public void Init_Shutdown_Toplevel_Not_Disposed ()
- {
- Application.Init (new FakeDriver ());
- Application.Shutdown ();
- #if DEBUG_IDISPOSABLE
- Assert.Single (Responder.Instances);
- Assert.True (Responder.Instances [0].WasDisposed);
- #endif
- }
- [Fact]
- public void Init_Unbalanced_Throwss ()
- {
- Application.Init (new FakeDriver ());
- Toplevel topLevel = null;
- Assert.Throws<InvalidOperationException> (() => Application.InternalInit (() => topLevel = new TestToplevel (), new FakeDriver ()));
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- // Now try the other way
- topLevel = null;
- Application.InternalInit (() => topLevel = new TestToplevel (), new FakeDriver ());
- Assert.Throws<InvalidOperationException> (() => Application.Init (new FakeDriver ()));
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- class TestToplevel : Toplevel {
- public TestToplevel ()
- {
- IsMdiContainer = false;
- }
- }
- [Fact]
- public void Init_Begin_End_Cleans_Up ()
- {
- Init ();
- // Begin will cause Run() to be called, which will call Begin(). Thus will block the tests
- // if we don't stop
- Application.Iteration = () => {
- Application.RequestStop ();
- };
- Application.RunState runstate = null;
- Action<Application.RunState> NewRunStateFn = (rs) => {
- Assert.NotNull (rs);
- runstate = rs;
- };
- Application.NotifyNewRunState += NewRunStateFn;
- Toplevel topLevel = new Toplevel ();
- var rs = Application.Begin (topLevel);
- Assert.NotNull (rs);
- Assert.NotNull (runstate);
- Assert.Equal (rs, runstate);
- Assert.Equal (topLevel, Application.Top);
- Assert.Equal (topLevel, Application.Current);
- Application.NotifyNewRunState -= NewRunStateFn;
- Application.End (runstate);
- Assert.Null (Application.Current);
- Assert.NotNull (Application.Top);
- Assert.NotNull (Application.MainLoop);
- Assert.NotNull (Application.Driver);
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void InitWithTopLevelFactory_Begin_End_Cleans_Up ()
- {
- // Begin will cause Run() to be called, which will call Begin(). Thus will block the tests
- // if we don't stop
- Application.Iteration = () => {
- Application.RequestStop ();
- };
- // NOTE: Run<T>, when called after Init has been called behaves differently than
- // when called if Init has not been called.
- Toplevel topLevel = null;
- Application.InternalInit (() => topLevel = new TestToplevel (), new FakeDriver ());
- Application.RunState runstate = null;
- Action<Application.RunState> NewRunStateFn = (rs) => {
- Assert.NotNull (rs);
- runstate = rs;
- };
- Application.NotifyNewRunState += NewRunStateFn;
- var rs = Application.Begin (topLevel);
- Assert.NotNull (rs);
- Assert.NotNull (runstate);
- Assert.Equal (rs, runstate);
- Assert.Equal (topLevel, Application.Top);
- Assert.Equal (topLevel, Application.Current);
- Application.NotifyNewRunState -= NewRunStateFn;
- Application.End (runstate);
- Assert.Null (Application.Current);
- Assert.NotNull (Application.Top);
- Assert.NotNull (Application.MainLoop);
- Assert.NotNull (Application.Driver);
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Begin_Null_Toplevel_Throws ()
- {
- // Setup Mock driver
- Init ();
- // Test null Toplevel
- Assert.Throws<ArgumentNullException> (() => Application.Begin (null));
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- #region RunTests
- [Fact]
- public void Run_T_After_InitWithDriver_with_TopLevel_Throws ()
- {
- // Setup Mock driver
- Init ();
- // Run<Toplevel> when already initialized with a Driver will throw (because Toplevel is not dervied from TopLevel)
- Assert.Throws<ArgumentException> (() => Application.Run<Toplevel> (errorHandler: null));
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Run_T_After_InitWithDriver_with_TopLevel_and_Driver_Throws ()
- {
- // Setup Mock driver
- Init ();
- // Run<Toplevel> when already initialized with a Driver will throw (because Toplevel is not dervied from TopLevel)
- Assert.Throws<ArgumentException> (() => Application.Run<Toplevel> (errorHandler: null, new FakeDriver ()));
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Run_T_After_InitWithDriver_with_TestTopLevel_DoesNotThrow ()
- {
- // Setup Mock driver
- Init ();
- Application.Iteration = () => {
- Application.RequestStop ();
- };
- // Init has been called and we're passing no driver to Run<TestTopLevel>. This is ok.
- Application.Run<TestToplevel> ();
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Run_T_After_InitNullDriver_with_TestTopLevel_Throws ()
- {
- Application.ForceFakeConsole = true;
- Application.Init (null, null);
- Assert.Equal (typeof (FakeDriver), Application.Driver.GetType ());
- Application.Iteration = () => {
- Application.RequestStop ();
- };
- // Init has been called without selecting a driver and we're passing no driver to Run<TestTopLevel>. Bad
- Application.Run<TestToplevel> ();
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Run_T_Init_Driver_Cleared_with_TestTopLevel_Throws ()
- {
- Init ();
- Application.Driver = null;
- Application.Iteration = () => {
- Application.RequestStop ();
- };
- // Init has been called, but Driver has been set to null. Bad.
- Assert.Throws<InvalidOperationException> (() => Application.Run<TestToplevel> ());
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Run_T_NoInit_DoesNotThrow ()
- {
- Application.ForceFakeConsole = true;
- Application.Iteration = () => {
- Application.RequestStop ();
- };
- Application.Run<TestToplevel> ();
- Assert.Equal (typeof (FakeDriver), Application.Driver.GetType ());
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Run_T_NoInit_WithDriver_DoesNotThrow ()
- {
- Application.Iteration = () => {
- Application.RequestStop ();
- };
- // Init has NOT been called and we're passing a valid driver to Run<TestTopLevel>. This is ok.
- Application.Run<TestToplevel> (errorHandler: null, new FakeDriver ());
- Shutdown ();
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Run_RequestStop_Stops ()
- {
- // Setup Mock driver
- Init ();
- var top = new Toplevel ();
- var rs = Application.Begin (top);
- Assert.NotNull (rs);
- Assert.Equal (top, Application.Current);
- Application.Iteration = () => {
- Application.RequestStop ();
- };
- Application.Run (top);
- Application.Shutdown ();
- Assert.Null (Application.Current);
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Run_RunningFalse_Stops ()
- {
- // Setup Mock driver
- Init ();
- var top = new Toplevel ();
- var rs = Application.Begin (top);
- Assert.NotNull (rs);
- Assert.Equal (top, Application.Current);
- Application.Iteration = () => {
- top.Running = false;
- };
- Application.Run (top);
- Application.Shutdown ();
- Assert.Null (Application.Current);
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void Run_Loaded_Ready_Unlodaded_Events ()
- {
- Init ();
- var top = Application.Top;
- var count = 0;
- top.Loaded += () => count++;
- top.Ready += () => count++;
- top.Unloaded += () => count++;
- Application.Iteration = () => Application.RequestStop ();
- Application.Run ();
- Application.Shutdown ();
- Assert.Equal (3, count);
- }
- // TODO: Add tests for Run that test errorHandler
- #endregion
- #region ShutdownTests
- [Fact]
- public void Shutdown_Allows_Async ()
- {
- static async Task TaskWithAsyncContinuation ()
- {
- await Task.Yield ();
- await Task.Yield ();
- }
- Init ();
- Application.Shutdown ();
- var task = TaskWithAsyncContinuation ();
- Thread.Sleep (20);
- Assert.True (task.IsCompletedSuccessfully);
- }
- [Fact]
- public void Shutdown_Resets_SyncContext ()
- {
- Init ();
- Application.Shutdown ();
- Assert.Null (SynchronizationContext.Current);
- }
- #endregion
- [Fact]
- [AutoInitShutdown]
- public void SetCurrentAsTop_Run_A_Not_Modal_Toplevel_Make_It_The_Current_Application_Top ()
- {
- var t1 = new Toplevel ();
- var t2 = new Toplevel ();
- var t3 = new Toplevel ();
- var d = new Dialog ();
- var t4 = new Toplevel ();
- // t1, t2, t3, d, t4
- var iterations = 5;
- t1.Ready += () => {
- Assert.Equal (t1, Application.Top);
- Application.Run (t2);
- };
- t2.Ready += () => {
- Assert.Equal (t2, Application.Top);
- Application.Run (t3);
- };
- t3.Ready += () => {
- Assert.Equal (t3, Application.Top);
- Application.Run (d);
- };
- d.Ready += () => {
- Assert.Equal (t3, Application.Top);
- Application.Run (t4);
- };
- t4.Ready += () => {
- Assert.Equal (t4, Application.Top);
- t4.RequestStop ();
- d.RequestStop ();
- t3.RequestStop ();
- t2.RequestStop ();
- };
- // Now this will close the MdiContainer when all MdiChildes was closed
- t2.Closed += (_) => {
- t1.RequestStop ();
- };
- Application.Iteration += () => {
- if (iterations == 5) {
- // The Current still is t4 because Current.Running is false.
- Assert.Equal (t4, Application.Current);
- Assert.False (Application.Current.Running);
- Assert.Equal (t4, Application.Top);
- } else if (iterations == 4) {
- // The Current is d and Current.Running is false.
- Assert.Equal (d, Application.Current);
- Assert.False (Application.Current.Running);
- Assert.Equal (t4, Application.Top);
- } else if (iterations == 3) {
- // The Current is t3 and Current.Running is false.
- Assert.Equal (t3, Application.Current);
- Assert.False (Application.Current.Running);
- Assert.Equal (t3, Application.Top);
- } else if (iterations == 2) {
- // The Current is t2 and Current.Running is false.
- Assert.Equal (t2, Application.Current);
- Assert.False (Application.Current.Running);
- Assert.Equal (t2, Application.Top);
- } else {
- // The Current is t1.
- Assert.Equal (t1, Application.Current);
- Assert.False (Application.Current.Running);
- Assert.Equal (t1, Application.Top);
- }
- iterations--;
- };
- Application.Run (t1);
- Assert.Equal (t1, Application.Top);
- }
- [Fact]
- [AutoInitShutdown]
- public void Internal_Properties_Correct ()
- {
- Assert.True (Application._initialized);
- Assert.NotNull (Application.Top);
- var rs = Application.Begin (Application.Top);
- Assert.Equal (Application.Top, rs.Toplevel);
- Assert.Null (Application.MouseGrabView); // public
- Assert.Null (Application.WantContinuousButtonPressedView); // public
- Assert.False (Application.DebugDrawBounds);
- Assert.False (Application.ShowChild (Application.Top));
- }
- #region KeyboardTests
- [Fact]
- public void KeyUp_Event ()
- {
- // Setup Mock driver
- Init ();
- // Setup some fake keypresses (This)
- var input = "Tests";
- // Put a control-q in at the end
- FakeConsole.MockKeyPresses.Push (new ConsoleKeyInfo ('q', ConsoleKey.Q, shift: false, alt: false, control: true));
- foreach (var c in input.Reverse ()) {
- if (char.IsLetter (c)) {
- FakeConsole.MockKeyPresses.Push (new ConsoleKeyInfo (c, (ConsoleKey)char.ToUpper (c), shift: char.IsUpper (c), alt: false, control: false));
- } else {
- FakeConsole.MockKeyPresses.Push (new ConsoleKeyInfo (c, (ConsoleKey)c, shift: false, alt: false, control: false));
- }
- }
- int stackSize = FakeConsole.MockKeyPresses.Count;
- int iterations = 0;
- Application.Iteration = () => {
- iterations++;
- // Stop if we run out of control...
- if (iterations > 10) {
- Application.RequestStop ();
- }
- };
- int keyUps = 0;
- var output = string.Empty;
- Application.Top.KeyUp += (View.KeyEventEventArgs args) => {
- if (args.KeyEvent.Key != (Key.CtrlMask | Key.Q)) {
- output += (char)args.KeyEvent.KeyValue;
- }
- keyUps++;
- };
- Application.Run (Application.Top);
- // Input string should match output
- Assert.Equal (input, output);
- // # of key up events should match stack size
- //Assert.Equal (stackSize, keyUps);
- // We can't use numbers variables on the left side of an Assert.Equal/NotEqual,
- // it must be literal (Linux only).
- Assert.Equal (6, keyUps);
- // # of key up events should match # of iterations
- Assert.Equal (stackSize, iterations);
- Application.Shutdown ();
- Assert.Null (Application.Current);
- Assert.Null (Application.Top);
- Assert.Null (Application.MainLoop);
- Assert.Null (Application.Driver);
- }
- [Fact]
- public void AlternateForwardKey_AlternateBackwardKey_Tests ()
- {
- Init ();
- var top = Application.Top;
- var w1 = new Window ();
- var v1 = new TextField ();
- var v2 = new TextView ();
- w1.Add (v1, v2);
- var w2 = new Window ();
- var v3 = new CheckBox ();
- var v4 = new Button ();
- w2.Add (v3, v4);
- top.Add (w1, w2);
- Application.Iteration += () => {
- Assert.True (v1.HasFocus);
- // Using default keys.
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.Tab,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v2.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.Tab,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v3.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.Tab,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v4.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.Tab,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v1.HasFocus);
- top.ProcessKey (new KeyEvent (Key.ShiftMask | Key.CtrlMask | Key.Tab,
- new KeyModifiers () { Shift = true, Ctrl = true }));
- Assert.True (v4.HasFocus);
- top.ProcessKey (new KeyEvent (Key.ShiftMask | Key.CtrlMask | Key.Tab,
- new KeyModifiers () { Shift = true, Ctrl = true }));
- Assert.True (v3.HasFocus);
- top.ProcessKey (new KeyEvent (Key.ShiftMask | Key.CtrlMask | Key.Tab,
- new KeyModifiers () { Shift = true, Ctrl = true }));
- Assert.True (v2.HasFocus);
- top.ProcessKey (new KeyEvent (Key.ShiftMask | Key.CtrlMask | Key.Tab,
- new KeyModifiers () { Shift = true, Ctrl = true }));
- Assert.True (v1.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.PageDown,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v2.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.PageDown,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v3.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.PageDown,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v4.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.PageDown,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v1.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.PageUp,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v4.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.PageUp,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v3.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.PageUp,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v2.HasFocus);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.PageUp,
- new KeyModifiers () { Ctrl = true }));
- Assert.True (v1.HasFocus);
- // Using another's alternate keys.
- Application.AlternateForwardKey = Key.F7;
- Application.AlternateBackwardKey = Key.F6;
- top.ProcessKey (new KeyEvent (Key.F7, new KeyModifiers ()));
- Assert.True (v2.HasFocus);
- top.ProcessKey (new KeyEvent (Key.F7, new KeyModifiers ()));
- Assert.True (v3.HasFocus);
- top.ProcessKey (new KeyEvent (Key.F7, new KeyModifiers ()));
- Assert.True (v4.HasFocus);
- top.ProcessKey (new KeyEvent (Key.F7, new KeyModifiers ()));
- Assert.True (v1.HasFocus);
- top.ProcessKey (new KeyEvent (Key.F6, new KeyModifiers ()));
- Assert.True (v4.HasFocus);
- top.ProcessKey (new KeyEvent (Key.F6, new KeyModifiers ()));
- Assert.True (v3.HasFocus);
- top.ProcessKey (new KeyEvent (Key.F6, new KeyModifiers ()));
- Assert.True (v2.HasFocus);
- top.ProcessKey (new KeyEvent (Key.F6, new KeyModifiers ()));
- Assert.True (v1.HasFocus);
- Application.RequestStop ();
- };
- Application.Run (top);
- // Replacing the defaults keys to avoid errors on others unit tests that are using it.
- Application.AlternateForwardKey = Key.PageDown | Key.CtrlMask;
- Application.AlternateBackwardKey = Key.PageUp | Key.CtrlMask;
- Application.QuitKey = Key.Q | Key.CtrlMask;
- Assert.Equal (Key.PageDown | Key.CtrlMask, Application.AlternateForwardKey);
- Assert.Equal (Key.PageUp | Key.CtrlMask, Application.AlternateBackwardKey);
- Assert.Equal (Key.Q | Key.CtrlMask, Application.QuitKey);
- // Shutdown must be called to safely clean up Application if Init has been called
- Application.Shutdown ();
- }
- [Fact]
- [AutoInitShutdown]
- public void QuitKey_Getter_Setter ()
- {
- var top = Application.Top;
- var isQuiting = false;
- top.Closing += (e) => {
- isQuiting = true;
- e.Cancel = true;
- };
- Application.Begin (top);
- top.Running = true;
- Assert.Equal (Key.Q | Key.CtrlMask, Application.QuitKey);
- Application.Driver.SendKeys ('q', ConsoleKey.Q, false, false, true);
- Assert.True (isQuiting);
- isQuiting = false;
- Application.QuitKey = Key.C | Key.CtrlMask;
- Application.Driver.SendKeys ('q', ConsoleKey.Q, false, false, true);
- Assert.False (isQuiting);
- Application.Driver.SendKeys ('c', ConsoleKey.C, false, false, true);
- Assert.True (isQuiting);
- // Reset the QuitKey to avoid throws errors on another tests
- Application.QuitKey = Key.Q | Key.CtrlMask;
- }
- [Fact]
- [AutoInitShutdown]
- public void EnsuresTopOnFront_CanFocus_True_By_Keyboard_And_Mouse ()
- {
- var top = Application.Top;
- var win = new Window ("win") { X = 0, Y = 0, Width = 20, Height = 10 };
- var tf = new TextField () { Width = 10 };
- win.Add (tf);
- var win2 = new Window ("win2") { X = 22, Y = 0, Width = 20, Height = 10 };
- var tf2 = new TextField () { Width = 10 };
- win2.Add (tf2);
- top.Add (win, win2);
- Application.Begin (top);
- Assert.True (win.CanFocus);
- Assert.True (win.HasFocus);
- Assert.True (win2.CanFocus);
- Assert.False (win2.HasFocus);
- Assert.Equal ("win2", ((Window)top.Subviews [top.Subviews.Count - 1]).Title);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.Tab, new KeyModifiers ()));
- Assert.True (win.CanFocus);
- Assert.False (win.HasFocus);
- Assert.True (win2.CanFocus);
- Assert.True (win2.HasFocus);
- Assert.Equal ("win2", ((Window)top.Subviews [top.Subviews.Count - 1]).Title);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.Tab, new KeyModifiers ()));
- Assert.True (win.CanFocus);
- Assert.True (win.HasFocus);
- Assert.True (win2.CanFocus);
- Assert.False (win2.HasFocus);
- Assert.Equal ("win", ((Window)top.Subviews [top.Subviews.Count - 1]).Title);
- win2.MouseEvent (new MouseEvent () { Flags = MouseFlags.Button1Pressed });
- Assert.True (win.CanFocus);
- Assert.False (win.HasFocus);
- Assert.True (win2.CanFocus);
- Assert.True (win2.HasFocus);
- Assert.Equal ("win2", ((Window)top.Subviews [top.Subviews.Count - 1]).Title);
- win2.MouseEvent (new MouseEvent () { Flags = MouseFlags.Button1Released });
- Assert.Null (Toplevel.dragPosition);
- }
- [Fact]
- [AutoInitShutdown]
- public void EnsuresTopOnFront_CanFocus_False_By_Keyboard_And_Mouse ()
- {
- var top = Application.Top;
- var win = new Window ("win") { X = 0, Y = 0, Width = 20, Height = 10 };
- var tf = new TextField () { Width = 10 };
- win.Add (tf);
- var win2 = new Window ("win2") { X = 22, Y = 0, Width = 20, Height = 10 };
- var tf2 = new TextField () { Width = 10 };
- win2.Add (tf2);
- top.Add (win, win2);
- Application.Begin (top);
- Assert.True (win.CanFocus);
- Assert.True (win.HasFocus);
- Assert.True (win2.CanFocus);
- Assert.False (win2.HasFocus);
- Assert.Equal ("win2", ((Window)top.Subviews [top.Subviews.Count - 1]).Title);
- win.CanFocus = false;
- Assert.False (win.CanFocus);
- Assert.False (win.HasFocus);
- Assert.True (win2.CanFocus);
- Assert.True (win2.HasFocus);
- Assert.Equal ("win2", ((Window)top.Subviews [top.Subviews.Count - 1]).Title);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.Tab, new KeyModifiers ()));
- Assert.True (win2.CanFocus);
- Assert.False (win.HasFocus);
- Assert.True (win2.CanFocus);
- Assert.True (win2.HasFocus);
- Assert.Equal ("win2", ((Window)top.Subviews [top.Subviews.Count - 1]).Title);
- top.ProcessKey (new KeyEvent (Key.CtrlMask | Key.Tab, new KeyModifiers ()));
- Assert.False (win.CanFocus);
- Assert.False (win.HasFocus);
- Assert.True (win2.CanFocus);
- Assert.True (win2.HasFocus);
- Assert.Equal ("win2", ((Window)top.Subviews [top.Subviews.Count - 1]).Title);
- win.MouseEvent (new MouseEvent () { Flags = MouseFlags.Button1Pressed });
- Assert.False (win.CanFocus);
- Assert.False (win.HasFocus);
- Assert.True (win2.CanFocus);
- Assert.True (win2.HasFocus);
- Assert.Equal ("win2", ((Window)top.Subviews [top.Subviews.Count - 1]).Title);
- win2.MouseEvent (new MouseEvent () { Flags = MouseFlags.Button1Released });
- Assert.Null (Toplevel.dragPosition);
- }
- #endregion
- [Fact, AutoInitShutdown]
- public void GetSupportedCultures_Method ()
- {
- var cultures = Application.GetSupportedCultures ();
- Assert.Equal (cultures.Count, Application.SupportedCultures.Count);
- }
- #region mousegrabtests
- [Fact, AutoInitShutdown]
- public void MouseGrabView_WithNullMouseEventView ()
- {
- var tf = new TextField () { Width = 10 };
- var sv = new ScrollView () {
- Width = Dim.Fill (),
- Height = Dim.Fill (),
- ContentSize = new Size (100, 100)
- };
- sv.Add (tf);
- Application.Top.Add (sv);
- var iterations = -1;
- Application.Iteration = () => {
- iterations++;
- if (iterations == 0) {
- Assert.True (tf.HasFocus);
- Assert.Null (Application.MouseGrabView);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 5,
- Y = 5,
- Flags = MouseFlags.ReportMousePosition
- });
- Assert.Equal (sv, Application.MouseGrabView);
- MessageBox.Query ("Title", "Test", "Ok");
- Assert.Null (Application.MouseGrabView);
- } else if (iterations == 1) {
- Assert.Equal (sv, Application.MouseGrabView);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 5,
- Y = 5,
- Flags = MouseFlags.ReportMousePosition
- });
- Assert.Equal (sv, Application.MouseGrabView);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 40,
- Y = 12,
- Flags = MouseFlags.ReportMousePosition
- });
- Assert.Null (Application.MouseGrabView);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 0,
- Y = 0,
- Flags = MouseFlags.Button1Pressed
- });
- Assert.Null (Application.MouseGrabView);
- Application.RequestStop ();
- } else if (iterations == 2) {
- Assert.Null (Application.MouseGrabView);
- Application.RequestStop ();
- }
- };
- Application.Run ();
- }
- [Fact, AutoInitShutdown]
- public void MouseGrabView_GrabbedMouse_UnGrabbedMouse ()
- {
- View grabView = null;
- var count = 0;
- var view1 = new View ();
- var view2 = new View ();
- Application.GrabbedMouse += Application_GrabbedMouse;
- Application.UnGrabbedMouse += Application_UnGrabbedMouse;
- Application.GrabMouse (view1);
- Assert.Equal (0, count);
- Assert.Equal (grabView, view1);
- Assert.Equal (view1, Application.MouseGrabView);
- Application.UngrabMouse ();
- Assert.Equal (1, count);
- Assert.Equal (grabView, view1);
- Assert.Null (Application.MouseGrabView);
- Application.GrabbedMouse += Application_GrabbedMouse;
- Application.UnGrabbedMouse += Application_UnGrabbedMouse;
- Application.GrabMouse (view2);
- Assert.Equal (1, count);
- Assert.Equal (grabView, view2);
- Assert.Equal (view2, Application.MouseGrabView);
- Application.UngrabMouse ();
- Assert.Equal (2, count);
- Assert.Equal (grabView, view2);
- Assert.Null (Application.MouseGrabView);
- void Application_GrabbedMouse (View obj)
- {
- if (count == 0) {
- Assert.Equal (view1, obj);
- grabView = view1;
- } else {
- Assert.Equal (view2, obj);
- grabView = view2;
- }
- Application.GrabbedMouse -= Application_GrabbedMouse;
- }
- void Application_UnGrabbedMouse (View obj)
- {
- if (count == 0) {
- Assert.Equal (view1, obj);
- Assert.Equal (grabView, obj);
- } else {
- Assert.Equal (view2, obj);
- Assert.Equal (grabView, obj);
- }
- count++;
- Application.UnGrabbedMouse -= Application_UnGrabbedMouse;
- }
- }
- #endregion
- }
- }
|