How to use Config2 method of Microsoft.Coyote.Actors.Tests.SendAndExecuteTests class

Best Coyote code snippet using Microsoft.Coyote.Actors.Tests.SendAndExecuteTests.Config2

SendAndExecuteTests.cs

Source:SendAndExecuteTests.cs Github

copy

Full Screen

...21 {22 this.Tcs = tcs;23 }24 }25 private class Config2 : Event26 {27 public bool HandleException;28 public TaskCompletionSource<bool> Tcs;29 public Config2(bool handleEx, TaskCompletionSource<bool> tcs)30 {31 this.HandleException = handleEx;32 this.Tcs = tcs;33 }34 }35 private class E1 : Event36 {37 public int Value;38 public E1()39 {40 this.Value = 0;41 }42 }43 private class E2 : Event44 {45 public ActorId Id;46 public E2(ActorId id)47 {48 this.Id = id;49 }50 }51 private class E3 : Event52 {53 }54 private class MHalts : Event55 {56 }57 private class SEReturns : Event58 {59 }60 private class M1 : StateMachine61 {62 [Start]63 [OnEntry(nameof(InitOnEntry))]64 private class Init : State65 {66 }67 private async SystemTasks.Task InitOnEntry(Event e)68 {69 var tcs = (e as Config1).Tcs;70 var e1 = new E1();71 var m = await this.Context.CreateActorAndExecuteAsync(typeof(N1));72 await this.Context.SendEventAndExecuteAsync(m, e1);73 this.Assert(e1.Value is 1);74 tcs.SetResult(true);75 }76 }77 private class N1 : StateMachine78 {79 private bool LEHandled = false;80 [Start]81 [OnEntry(nameof(InitOnEntry))]82 [OnEventDoAction(typeof(E1), nameof(HandleEventE))]83 [OnEventDoAction(typeof(E3), nameof(HandleEventLE))]84 private class Init : State85 {86 }87 private void InitOnEntry()88 {89 this.SendEvent(this.Id, new E3());90 }91 private void HandleEventLE()92 {93 this.LEHandled = true;94 }95 private void HandleEventE(Event e)96 {97 this.Assert(this.LEHandled);98 (e as E1).Value = 1;99 }100 }101 [Fact(Timeout = 5000)]102 public async SystemTasks.Task TestSyncSendBlocks()103 {104 await this.RunAsync(async r =>105 {106 var failed = false;107 var tcs = TaskCompletionSource.Create<bool>();108 r.OnFailure += (ex) =>109 {110 failed = true;111 tcs.SetResult(true);112 };113 r.CreateActor(typeof(M1), new Config1(tcs));114 await this.WaitAsync(tcs.Task);115 Assert.False(failed);116 },117 handleFailures: false);118 }119 private class M2 : StateMachine120 {121 [Start]122 [OnEntry(nameof(InitOnEntry))]123 [IgnoreEvents(typeof(E3))]124 private class Init : State125 {126 }127 private async SystemTasks.Task InitOnEntry(Event e)128 {129 var tcs = (e as Config1).Tcs;130 var m = await this.Context.CreateActorAndExecuteAsync(typeof(N2), new E2(this.Id));131 var handled = await this.Context.SendEventAndExecuteAsync(m, new E3());132 this.Assert(handled);133 tcs.SetResult(true);134 }135 }136 private class N2 : StateMachine137 {138 [Start]139 [OnEntry(nameof(InitOnEntry))]140 [IgnoreEvents(typeof(E3))]141 private class Init : State142 {143 }144 private async SystemTasks.Task InitOnEntry(Event e)145 {146 var creator = (e as E2).Id;147#pragma warning disable CS0618 // Type or member is obsolete148 var handled = await this.Id.Runtime.SendEventAndExecuteAsync(creator, new E3());149#pragma warning restore CS0618 // Type or member is obsolete150 this.Assert(!handled);151 }152 }153 [Fact(Timeout = 5000)]154 public async SystemTasks.Task TestSendCycleDoesNotDeadlock()155 {156 await this.RunAsync(async r =>157 {158 var failed = false;159 var tcs = TaskCompletionSource.Create<bool>();160 r.OnFailure += (ex) =>161 {162 failed = true;163 tcs.SetResult(false);164 };165 r.CreateActor(typeof(M2), new Config1(tcs));166 await this.WaitAsync(tcs.Task);167 Assert.False(failed);168 },169 handleFailures: false);170 }171 private class M3 : StateMachine172 {173 [Start]174 [OnEntry(nameof(InitOnEntry))]175 private class Init : State176 {177 }178 private async SystemTasks.Task InitOnEntry(Event e)179 {180 var tcs = (e as Config1).Tcs;181 var m = await this.Context.CreateActorAndExecuteAsync(typeof(N3));182 var handled = await this.Context.SendEventAndExecuteAsync(m, new E3());183 this.Monitor<SafetyMonitor>(new SEReturns());184 this.Assert(handled);185 tcs.TrySetResult(true);186 }187 }188 private class N3 : StateMachine189 {190 [Start]191 [OnEventDoAction(typeof(E3), nameof(HandleE))]192 private class Init : State193 {194 }195 private void HandleE() => this.RaiseHaltEvent();196 protected override SystemTasks.Task OnHaltAsync(Event e)197 {198 this.Monitor<SafetyMonitor>(new MHalts());199 return SystemTasks.Task.CompletedTask;200 }201 }202 private class SafetyMonitor : Monitor203 {204 private bool MHalted = false;205 private bool SEReturned = false;206 [Start]207 [Hot]208 [OnEventDoAction(typeof(MHalts), nameof(OnMHalts))]209 [OnEventDoAction(typeof(SEReturns), nameof(OnSEReturns))]210 private class Init : State211 {212 }213 [Cold]214 private class Done : State215 {216 }217 private void OnMHalts()218 {219 this.Assert(this.SEReturned is false);220 this.MHalted = true;221 }222 private void OnSEReturns()223 {224 this.Assert(this.MHalted);225 this.SEReturned = true;226 this.RaiseGotoStateEvent<Done>();227 }228 }229 [Fact(Timeout = 5000)]230 public async SystemTasks.Task TestMachineHaltsOnSendExec()231 {232 var config = GetConfiguration();233 config.IsMonitoringEnabledInInProduction = true;234 await this.RunAsync(async r =>235 {236 var failed = false;237 var tcs = TaskCompletionSource.Create<bool>();238 r.OnFailure += (ex) =>239 {240 failed = true;241 tcs.SetResult(false);242 };243 r.RegisterMonitor<SafetyMonitor>();244 r.CreateActor(typeof(M3), new Config1(tcs));245 await this.WaitAsync(tcs.Task);246 Assert.False(failed);247 }, config, handleFailures: false);248 }249 private class M4 : StateMachine250 {251 [Start]252 [OnEntry(nameof(InitOnEntry))]253 private class Init : State254 {255 }256 private async SystemTasks.Task InitOnEntry(Event e)257 {258 var tcs = (e as Config2).Tcs;259 var m = await this.Context.CreateActorAndExecuteAsync(typeof(N4), e);260 var handled = await this.Context.SendEventAndExecuteAsync(m, new E3());261 this.Assert(handled);262 tcs.TrySetResult(true);263 }264 protected override OnExceptionOutcome OnException(Exception ex, string methodName, Event e)265 {266 this.Assert(false);267 return OnExceptionOutcome.ThrowException;268 }269 }270 private class N4 : StateMachine271 {272 private bool HandleException = false;273 [Start]274 [OnEntry(nameof(InitOnEntry))]275 [OnEventDoAction(typeof(E3), nameof(HandleE))]276 private class Init : State277 {278 }279 private void InitOnEntry(Event e)280 {281 this.HandleException = (e as Config2).HandleException;282 }283#pragma warning disable CA1822 // Mark members as static284 private void HandleE() => throw new Exception();285#pragma warning restore CA1822 // Mark members as static286 protected override OnExceptionOutcome OnException(Exception ex, string methodName, Event e)287 {288 if (this.HandleException)289 {290 return OnExceptionOutcome.HandledException;291 }292 return OnExceptionOutcome.ThrowException;293 }294 }295 [Fact(Timeout = 5000)]296 public async SystemTasks.Task TestHandledExceptionOnSendExec()297 {298 await this.RunAsync(async r =>299 {300 var failed = false;301 var tcs = TaskCompletionSource.Create<bool>();302 r.OnFailure += (ex) =>303 {304 failed = true;305 tcs.SetResult(false);306 };307 r.CreateActor(typeof(M4), new Config2(true, tcs));308 await this.WaitAsync(tcs.Task);309 Assert.False(failed);310 },311 handleFailures: false);312 }313 [Fact(Timeout = 5000)]314 public async SystemTasks.Task TestUnHandledExceptionOnSendExec()315 {316 await this.RunAsync(async r =>317 {318 var failed = false;319 var tcs = TaskCompletionSource.Create<bool>();320 var message = string.Empty;321 r.OnFailure += (ex) =>322 {323 if (!failed)324 {325 message = (ex is ActionExceptionFilterException) ? ex.InnerException.Message : ex.Message;326 failed = true;327 tcs.TrySetResult(false);328 }329 };330 r.CreateActor(typeof(M4), new Config2(false, tcs));331 await this.WaitAsync(tcs.Task);332 Assert.True(failed);333 Assert.StartsWith("Exception of type 'System.Exception' was thrown", message);334 },335 handleFailures: false);336 }337 private class M5 : StateMachine338 {339 [Start]340 [OnEntry(nameof(InitOnEntry))]341 private class Init : State342 {343 }344 private async SystemTasks.Task InitOnEntry(Event e)...

Full Screen

Full Screen

Config2

Using AI Code Generation

copy

Full Screen

1using Microsoft.Coyote;2using Microsoft.Coyote.Actors;3using Microsoft.Coyote.Actors.Timers;4using Microsoft.Coyote.Specifications;5using Microsoft.Coyote.SystematicTesting;6using Microsoft.Coyote.Tasks;7using Microsoft.VisualStudio.TestTools.UnitTesting;8using System;9using System.Threading.Tasks;10{11 {12 {13 public int Value;14 public E(int value)15 {16 this.Value = value;17 }18 }19 {20 public ActorId Id;21 public M(ActorId id)22 {23 this.Id = id;24 }25 }26 {27 public ActorId Id;28 public N(ActorId id)29 {30 this.Id = id;31 }32 }33 {34 [OnEventDoAction(typeof(E), nameof(HandleE))]35 [OnEventDoAction(typeof(M), nameof(HandleM))]36 [OnEventDoAction(typeof(N), nameof(HandleN))]37 [OnEventDoAction(typeof(Halt), nameof(HandleHalt))]38 {39 }40 private void HandleE(Event e)41 {42 this.Send(this.Id, new E(2));43 }44 private void HandleM(Event e)45 {46 this.Send((e as M).Id, new E(1));47 }48 private void HandleN(Event e)49 {50 this.Send((e as N).Id, new E(1));51 }52 private void HandleHalt(Event e)53 {54 this.RaiseHaltEvent();55 }56 }57 {58 [OnEventDoAction(typeof(E), nameof(HandleE))]59 [OnEventDoAction(typeof(Halt), nameof(HandleHalt))]60 {61 }62 private void HandleE(Event e)63 {64 this.Assert((e as E).Value == 2);65 }66 private void HandleHalt(Event e)67 {68 this.RaiseHaltEvent();69 }70 }71 public void TestSendAndExecute()72 {73 var configuration = Configuration.Create();74 configuration.TestingIterations = 1;

Full Screen

Full Screen

Config2

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using Microsoft.Coyote.Actors;7using Microsoft.Coyote.Actors.Timers;8using Microsoft.Coyote.SystematicTesting;9using Microsoft.Coyote;10using Microsoft.Coyote.Specifications;11using Microsoft.Coyote.Tasks;12{13 {14 {15 public readonly int Value;16 public E(int value)17 {18 this.Value = value;19 }20 }21 {22 public readonly int Value;23 public Config2(int value)24 {25 this.Value = value;26 }27 }28 {29 private int Value;30 [OnEventDoAction(typeof(Config2), nameof(Configure))]31 [OnEventDoAction(typeof(E), nameof(Handle))]32 {33 }34 private void Configure()35 {36 this.Value = (this.ReceivedEvent as Config2).Value;37 }38 private void Handle()39 {40 this.Value += (this.ReceivedEvent as E).Value;41 }42 protected override Task OnHaltAsync(Event e)43 {44 this.Assert(this.Value == 3, "Value is '{0}' instead of 3.", this.Value);45 return Task.CompletedTask;46 }47 }48 public void TestSendAndExecute()49 {50 var runtime = RuntimeFactory.Create();51 var m = runtime.CreateActor(typeof(M1));52 runtime.SendEvent(m, new Config2(1));53 runtime.SendEvent(m, new E(2));54 runtime.SendEvent(m, HaltEvent.Instance);55 runtime.Wait();56 }57 }58}59using System;60using System.Collections.Generic;61using System.Linq;62using System.Text;63using System.Threading.Tasks;64using Microsoft.Coyote.Actors;65using Microsoft.Coyote.Actors.Timers;66using Microsoft.Coyote.SystematicTesting;67using Microsoft.Coyote;68using Microsoft.Coyote.Specifications;69using Microsoft.Coyote.Tasks;70{

Full Screen

Full Screen

Config2

Using AI Code Generation

copy

Full Screen

1using System;2using System.Threading.Tasks;3using Microsoft.Coyote;4using Microsoft.Coyote.Actors;5using Microsoft.Coyote.Actors.SharedObjects;6using Microsoft.Coyote.Actors.Timers;7using Microsoft.Coyote.Specifications;8using Microsoft.Coyote.SystematicTesting;9using Microsoft.Coyote.SystematicTesting.Strategies;10using Microsoft.Coyote.Tasks;11using Microsoft.Coyote.Tests.Common;12using Microsoft.Coyote.Tests.Common.Actors;13using Microsoft.Coyote.Tests.Common.Actors.SharedObjects;14using Microsoft.Coyote.Tests.Common.Actors.Timers;15using Microsoft.Coyote.Tests.Common.Tasks;16using Microsoft.Coyote.Tests.Common.TestingServices;17using Microsoft.Coyote.Tests.Common.Utilities;18using Microsoft.Coyote.Tests.SystematicTesting.Strategies;19using Microsoft.Coyote.Tests.SystematicTesting.TestActors;20using Microsoft.Coyote.Tests.SystematicTesting.TestTasks;21using Microsoft.Coyote.Tests.SystematicTesting.TestingServices;22using Microsoft.Coyote.Tests.SystematicTesting.Utilities;23using Microsoft.Coyote.Tests.SystematicTesting;24using Microsoft.Coyote.Tests;25using Microsoft.Coyote.Actors.Tests;26using Microsoft.Coyote.Actors.Tests.Actors;27using Microsoft.Coyote.Actors.Tests.Tasks;28using Microsoft.Coyote.Actors.Tests.SharedObjects;29using Microsoft.Coyote.Actors.Tests.Timers;30using Microsoft.Coyote.Actors.Tests.Utilities;31using Microsoft.Coyote.Actors.Tests.TestingServices;32using Microsoft.Coyote.Actors.Tests.TestActors;33using Microsoft.Coyote.Actors.Tests.TestTasks;34{35 {36 {37 public int Value;38 public E(int value)39 {40 this.Value = value;41 }42 }43 {44 public int Value;45 public M(int value)46 {47 this.Value = value;48 }49 }50 {51 public int Value;52 public N(int value)53 {54 this.Value = value;55 }56 }57 {58 public ActorId Id;59 public Config1(ActorId id)60 {61 this.Id = id;62 }63 }64 {65 public ActorId Id;

Full Screen

Full Screen

Config2

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using Microsoft.Coyote.Actors;7using Microsoft.Coyote.Actors.Timers;8using Microsoft.Coyote.SystematicTesting;9using Microsoft.Coyote.Tests.Common;10using Xunit;11using Xunit.Abstractions;12{13 {14 public SendAndExecuteTests(ITestOutputHelper output)15 : base(output)16 {17 }18 {19 }20 {21 }22 {23 }24 {25 public ActorId Id;26 public Config2(ActorId id)27 {28 this.Id = id;29 }30 }31 {32 private int Count;33 protected override Task OnInitializeAsync(Event initialEvent)34 {35 this.Count = 0;36 this.SendEvent(this.Id, new Ping());37 return Task.CompletedTask;38 }39 protected override Task OnEventAsync(Event e)40 {41 switch (e)42 {43 this.Count++;44 if (this.Count == 10)45 {46 this.SendEvent(this.Id, new Done());47 }48 {49 this.SendEvent(this.Id, new Ping());50 }51 break;52 }53 return Task.CompletedTask;54 }55 }56 {57 protected override Task OnEventAsync(Event e)58 {59 switch (e)60 {61 this.SendEvent(this.Id, new Pong());62 break;63 }64 return Task.CompletedTask;65 }66 }67 {68 public ActorId PingerId;69 public ActorId PongerId;70 public Config1(ActorId pingerId, ActorId pongerId)71 {72 this.PingerId = pingerId;73 this.PongerId = pongerId;74 }75 }76 {77 private ActorId PingerId;78 private ActorId PongerId;79 protected override Task OnInitializeAsync(Event initialEvent)80 {81 this.PingerId = (initialEvent as Config

Full Screen

Full Screen

Config2

Using AI Code Generation

copy

Full Screen

1using Microsoft.Coyote.Actors;2using Microsoft.Coyote.SystematicTesting;3using Microsoft.Coyote.TestingServices;4using Microsoft.Coyote.TestingServices.Coverage;5using Microsoft.Coyote.TestingServices.SchedulingStrategies;6using Microsoft.Coyote.TestingServices.Tracing.Schedule;7using Microsoft.Coyote.TestingServices.Tracing.Schedule.Default;8using Microsoft.Coyote.Tests.Common;9using System;10using System.Collections.Generic;11using System.Linq;12using System.Threading.Tasks;13using Xunit;14using Xunit.Abstractions;15{16 {17 public SendAndExecuteTests(ITestOutputHelper output)18 : base(output)19 {20 }21 {22 public int Value;23 public E(int value)24 {25 this.Value = value;26 }27 }28 {29 public TaskCompletionSource<bool> Tcs;30 public M(TaskCompletionSource<bool> tcs)31 {32 this.Tcs = tcs;33 }34 }35 {36 }37 {38 private TaskCompletionSource<bool> Tcs;39 protected override Task OnInitializeAsync(Event initialEvent)40 {41 this.Tcs = (initialEvent as M).Tcs;42 this.SendEvent(this.Id, new N());43 return Task.CompletedTask;44 }45 protected override Task OnEventAsync(Event e)46 {47 if (e is E)48 {49 this.Tcs.SetResult(true);50 }51 return Task.CompletedTask;52 }53 }54 [Fact(Timeout = 5000)]55 public void TestSendAndExecute()56 {57 var test = new Action<PSharpRuntime>((r) => {58 r.CreateActor(typeof(A), new M(new TaskCompletionSource<bool>()));59 });60 var configuration = Configuration.Create().WithTestingIterations(100);61 base.AssertSucceeded(configuration, test);62 }63 [Fact(Timeout = 5000)]64 public void TestSendAndExecuteWithSystematicTesting()65 {66 var test = new Action<PSharpRuntime>((r) => {67 r.CreateActor(typeof(A), new M(new TaskCompletionSource<bool>()));68 });69 var configuration = Configuration.Create().WithTestingIterations(100);

Full Screen

Full Screen

Config2

Using AI Code Generation

copy

Full Screen

1using System;2using System.Threading.Tasks;3using Microsoft.Coyote.Actors;4using Microsoft.Coyote.Actors.Timers;5using Microsoft.Coyote.Actors.Timers.Mocks;6using Microsoft.Coyote.Specifications;7using Microsoft.Coyote.SystematicTesting;8using Microsoft.Coyote.SystematicTesting.Timers;9using Microsoft.Coyote.SystematicTesting.Timers.Mocks;10using Microsoft.Coyote.Tasks;11using Microsoft.Coyote.Tasks.Mocks;12using Microsoft.Coyote.Tests.Common;13using Microsoft.Coyote.Tests.Common.Actors;14using Microsoft.Coyote.Tests.Common.Timers;15using Microsoft.Coyote.Tests.Common.Tasks;16using Microsoft.Coyote.Tests.Common.Telemetry;17using Microsoft.Coyote.Tests.Common.Utilities;18using Microsoft.Coyote.Tests.Common.Mocks;19using Microsoft.Coyote.Tests.Common.Actors.Mocks;20using Microsoft.Coyote.Tests.Common.Timers.Mocks;21using Microsoft.Coyote.Tests.Common.Tasks.Mocks;22using Microsoft.Coyote.Tests.Common.Telemetry.Mocks;23using Microsoft.Coyote.Tests.Common.Utilities.Mocks;24using Microsoft.Coyote.Tests.SystematicTesting.Actors;25using Microsoft.Coyote.Tests.SystematicTesting.Actors.Mocks;26using Microsoft.Coyote.Tests.SystematicTesting.Timers;27using Microsoft.Coyote.Tests.SystematicTesting.Timers.Mocks;28using Microsoft.Coyote.Tests.SystematicTesting.Tasks;29using Microsoft.Coyote.Tests.SystematicTesting.Tasks.Mocks;30using Microsoft.Coyote.Tests.SystematicTesting.Telemetry;31using Microsoft.Coyote.Tests.SystematicTesting.Telemetry.Mocks;32using Microsoft.Coyote.Tests.SystematicTesting.Utilities;33using Microsoft.Coyote.Tests.SystematicTesting.Utilities.Mocks;34using System.Collections.Generic;35using System.Collections.Immutable;36using System.Linq;37using System.Text;38using System.Threading;39using System.Threading.Tasks;40using Xunit;41using Xunit.Abstractions;42using Xunit.Sdk;43using Microsoft.Coyote.Tests.SystematicTesting;44using Microsoft.Coyote.Tests.SystematicTesting.Mocks;45using Microsoft.Coyote.Tests.Common.Actors.Mocks;46using Microsoft.Coyote.Tests.Common.Actors.Mocks;47using Microsoft.Coyote.Tests.SystematicTesting.Timers.Mocks;48using Microsoft.Coyote.Tests.SystematicTesting.Actors.Mocks;49using Microsoft.Coyote.Tests.SystematicTesting.Tasks.Mocks;50using Microsoft.Coyote.Tests.SystematicTesting.Telemetry.Mocks;

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful