123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // Alias Console to MockConsole so we don't accidentally use Console
- namespace Terminal.Gui.ApplicationTests;
- public class SyncrhonizationContextTests
- {
- [Fact(Skip = "Causes ubuntu to crash in github action.")]
- public void SynchronizationContext_CreateCopy ()
- {
- Application.Init ();
- SynchronizationContext context = SynchronizationContext.Current;
- Assert.NotNull (context);
- SynchronizationContext contextCopy = context.CreateCopy ();
- Assert.NotNull (contextCopy);
- Assert.NotEqual (context, contextCopy);
- Application.Shutdown ();
- }
- [Theory]
- [InlineData (typeof (FakeDriver))]
- //[InlineData (typeof (NetDriver))]
- [InlineData (typeof (WindowsDriver))]
- //[InlineData (typeof (CursesDriver))]
- public void SynchronizationContext_Post (Type driverType)
- {
- Application.Init (driverName: driverType.Name);
- SynchronizationContext context = SynchronizationContext.Current;
- var success = false;
- Task.Run (
- () =>
- {
- Thread.Sleep (1_000);
- // non blocking
- context.Post (
- delegate
- {
- success = true;
- // then tell the application to quit
- Application.Invoke (() => Application.RequestStop ());
- },
- null
- );
- Assert.False (success);
- }
- );
- // blocks here until the RequestStop is processed at the end of the test
- Application.Run ().Dispose ();
- Assert.True (success);
- Application.Shutdown ();
- }
- [Fact]
- [AutoInitShutdown]
- public void SynchronizationContext_Send ()
- {
- Application.Init ();
- SynchronizationContext context = SynchronizationContext.Current;
- var success = false;
- Task.Run (
- () =>
- {
- Thread.Sleep (1_000);
- // blocking
- context.Send (
- delegate
- {
- success = true;
- // then tell the application to quit
- Application.Invoke (() => Application.RequestStop ());
- },
- null
- );
- Assert.True (success);
- }
- );
- // blocks here until the RequestStop is processed at the end of the test
- Application.Run ().Dispose ();
- Assert.True (success);
- Application.Shutdown ();
- }
- }
|