mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
357 lines
8.8 KiB
357 lines
8.8 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team |
|
// |
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this |
|
// software and associated documentation files (the "Software"), to deal in the Software |
|
// without restriction, including without limitation the rights to use, copy, modify, merge, |
|
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
|
// to whom the Software is furnished to do so, subject to the following conditions: |
|
// |
|
// The above copyright notice and this permission notice shall be included in all copies or |
|
// substantial portions of the Software. |
|
// |
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
|
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
|
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
|
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
// DEALINGS IN THE SOFTWARE. |
|
|
|
#pragma warning disable 1998 |
|
using System; |
|
using System.Collections.Generic; |
|
using System.IO; |
|
using System.Linq; |
|
using System.Threading.Tasks; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Correctness |
|
{ |
|
public class Async |
|
{ |
|
public static void Main() |
|
{ |
|
new Async().Run().Wait(); |
|
} |
|
|
|
public async Task Run() |
|
{ |
|
Console.WriteLine("SimpleBoolTaskMethod:"); |
|
await SimpleBoolTaskMethod(); |
|
Console.WriteLine("StreamCopyTo:"); |
|
StreamCopyTo(new MemoryStream(new byte[1024]), 16); |
|
Console.WriteLine("StreamCopyToWithConfigureAwait:"); |
|
StreamCopyToWithConfigureAwait(new MemoryStream(new byte[1024]), 16); |
|
Console.WriteLine("AwaitInForEach:"); |
|
await AwaitInForEach(Enumerable.Range(0, 100).Select(i => Task.FromResult(i))); |
|
Console.WriteLine("TaskMethodWithoutAwaitButWithExceptionHandling:"); |
|
await TaskMethodWithoutAwaitButWithExceptionHandling(); |
|
#if CS60 |
|
Console.WriteLine($"{nameof(AwaitCatch)}:"); |
|
await AwaitCatch(Task.FromResult(1)); |
|
Console.WriteLine($"{nameof(AwaitMultipleCatchBlocks)}:"); |
|
await AwaitMultipleCatchBlocks(Task.FromResult(1)); |
|
Console.WriteLine($"{nameof(AwaitMultipleCatchBlocks2)}:"); |
|
await AwaitMultipleCatchBlocks2(Task.FromResult(1)); |
|
Console.WriteLine($"{nameof(AwaitInComplexFinally)}:"); |
|
Console.WriteLine(await AwaitInComplexFinally()); |
|
try |
|
{ |
|
Console.WriteLine($"{nameof(AwaitFinally)}:"); |
|
await AwaitFinally(Task.FromResult(2)); |
|
} |
|
catch (Exception ex) |
|
{ |
|
Console.WriteLine(ex + " caught!"); |
|
} |
|
#endif |
|
Console.WriteLine("NestedAwait:"); |
|
await NestedAwait(Task.FromResult(Task.FromResult(5))); |
|
Console.WriteLine("AwaitWithStack:"); |
|
await AwaitWithStack(Task.FromResult(3)); |
|
Console.WriteLine("AwaitWithStack2:"); |
|
await AwaitWithStack2(Task.FromResult(4)); |
|
#if CS60 |
|
Console.WriteLine($"{nameof(AwaitInCatch)}:"); |
|
await AwaitInCatch(Task.FromResult(1), Task.FromResult(2)); |
|
Console.WriteLine($"{nameof(AwaitInFinally)}:"); |
|
await AwaitInFinally(Task.FromResult(2), Task.FromResult(4)); |
|
Console.WriteLine($"{nameof(AwaitInCatchAndFinally)}:"); |
|
await AwaitInCatchAndFinally(Task.FromResult(3), Task.FromResult(6), Task.FromResult(9)); |
|
Console.WriteLine($"{nameof(AwaitInFinallyInUsing)}:"); |
|
Console.WriteLine(await AwaitInFinallyInUsing(Task.FromResult<IDisposable>(new StringWriter()), Task.FromResult(6), Task.FromResult(9))); |
|
#endif |
|
} |
|
|
|
public async Task<bool> SimpleBoolTaskMethod() |
|
{ |
|
Console.WriteLine("Before"); |
|
await Task.Delay(TimeSpan.FromSeconds(1.0)); |
|
Console.WriteLine("After"); |
|
return true; |
|
} |
|
|
|
public async void StreamCopyTo(Stream destination, int bufferSize) |
|
{ |
|
Console.WriteLine("Before"); |
|
byte[] array = new byte[bufferSize]; |
|
int count; |
|
Console.WriteLine("BeforeLoop"); |
|
while ((count = await destination.ReadAsync(array, 0, array.Length)) != 0) |
|
{ |
|
Console.WriteLine("In Loop after condition!"); |
|
await destination.WriteAsync(array, 0, count); |
|
Console.WriteLine("In Loop after inner await"); |
|
} |
|
Console.WriteLine("After"); |
|
} |
|
|
|
public async void StreamCopyToWithConfigureAwait(Stream destination, int bufferSize) |
|
{ |
|
Console.WriteLine("Before"); |
|
byte[] array = new byte[bufferSize]; |
|
int count; |
|
Console.WriteLine("Before Loop"); |
|
while ((count = await destination.ReadAsync(array, 0, array.Length).ConfigureAwait(false)) != 0) |
|
{ |
|
Console.WriteLine("Before Inner Await"); |
|
await destination.WriteAsync(array, 0, count).ConfigureAwait(false); |
|
Console.WriteLine("After Inner Await"); |
|
} |
|
Console.WriteLine("After"); |
|
} |
|
|
|
public async Task<int> AwaitInForEach(IEnumerable<Task<int>> elements) |
|
{ |
|
int num = 0; |
|
Console.WriteLine("Before Loop"); |
|
foreach (Task<int> current in elements) |
|
{ |
|
Console.WriteLine("Before Inner Await"); |
|
num += await current; |
|
Console.WriteLine("After Inner Await"); |
|
} |
|
Console.WriteLine("After"); |
|
return num; |
|
} |
|
|
|
public async Task TaskMethodWithoutAwaitButWithExceptionHandling() |
|
{ |
|
try |
|
{ |
|
using (new StringWriter()) |
|
{ |
|
Console.WriteLine("No Await"); |
|
} |
|
} |
|
catch (Exception) |
|
{ |
|
Console.WriteLine("Crash"); |
|
} |
|
} |
|
|
|
#if CS60 |
|
public async Task AwaitCatch(Task<int> task) |
|
{ |
|
try |
|
{ |
|
Console.WriteLine("Before throw"); |
|
throw new Exception(); |
|
} |
|
catch |
|
{ |
|
Console.WriteLine(await task); |
|
} |
|
} |
|
|
|
public async Task AwaitMultipleCatchBlocks(Task<int> task) |
|
{ |
|
try |
|
{ |
|
Console.WriteLine("Before throw"); |
|
throw new Exception(); |
|
} |
|
catch (OutOfMemoryException ex) |
|
{ |
|
Console.WriteLine(ex.ToString()); |
|
Console.WriteLine(await task); |
|
} |
|
catch |
|
{ |
|
Console.WriteLine(await task); |
|
} |
|
} |
|
|
|
|
|
public async Task AwaitMultipleCatchBlocks2(Task<int> task) |
|
{ |
|
try |
|
{ |
|
Console.WriteLine("Before throw"); |
|
throw new Exception(); |
|
} |
|
catch (OutOfMemoryException ex) |
|
{ |
|
Console.WriteLine(ex.ToString()); |
|
Console.WriteLine(await task); |
|
} |
|
catch (InternalBufferOverflowException ex) |
|
{ |
|
Console.WriteLine(ex.ToString()); |
|
} |
|
catch |
|
{ |
|
Console.WriteLine(await task); |
|
} |
|
} |
|
|
|
public async Task AwaitFinally(Task<int> task) |
|
{ |
|
try |
|
{ |
|
Console.WriteLine("Before throw"); |
|
throw new Exception(); |
|
} |
|
finally |
|
{ |
|
Console.WriteLine(await task); |
|
} |
|
} |
|
#endif |
|
|
|
public async Task<int> NestedAwait(Task<Task<int>> task) |
|
{ |
|
return await (await task); |
|
} |
|
|
|
public async Task AwaitWithStack(Task<int> task) |
|
{ |
|
Console.WriteLine("A", 1, await task); |
|
} |
|
|
|
public async Task AwaitWithStack2(Task<int> task) |
|
{ |
|
if (await this.SimpleBoolTaskMethod()) |
|
{ |
|
Console.WriteLine("A", 1, await task); |
|
} |
|
else |
|
{ |
|
int num = 1; |
|
Console.WriteLine("A", 1, num); |
|
} |
|
} |
|
|
|
#if CS60 |
|
public async Task AwaitInCatch(Task<int> task1, Task<int> task2) |
|
{ |
|
try |
|
{ |
|
Console.WriteLine("Start try"); |
|
await task1; |
|
Console.WriteLine("End try"); |
|
} |
|
catch (Exception) |
|
{ |
|
Console.WriteLine("Start catch"); |
|
await task2; |
|
Console.WriteLine("End catch"); |
|
} |
|
Console.WriteLine("End Method"); |
|
} |
|
|
|
public async Task AwaitInFinally(Task<int> task1, Task<int> task2) |
|
{ |
|
try |
|
{ |
|
Console.WriteLine("Start try"); |
|
await task1; |
|
Console.WriteLine("End try"); |
|
} |
|
finally |
|
{ |
|
Console.WriteLine("Start finally"); |
|
await task2; |
|
Console.WriteLine("End finally"); |
|
} |
|
Console.WriteLine("End Method"); |
|
} |
|
|
|
public static async Task<int> AwaitInComplexFinally() |
|
{ |
|
Console.WriteLine("a"); |
|
try |
|
{ |
|
Console.WriteLine("b"); |
|
await Task.Delay(1); |
|
Console.WriteLine("c"); |
|
} |
|
catch (Exception ex) |
|
{ |
|
await Task.Delay(ex.HResult); |
|
} |
|
finally |
|
{ |
|
Console.WriteLine("d"); |
|
int i = 0; |
|
if (Console.CapsLock) |
|
{ |
|
i++; |
|
await Task.Delay(i); |
|
} |
|
else |
|
{ |
|
while (i < 5) |
|
{ |
|
Console.WriteLine("i: " + i); |
|
i++; |
|
} |
|
} |
|
Console.WriteLine("e"); |
|
} |
|
Console.WriteLine("f"); |
|
return 1; |
|
} |
|
|
|
public async Task AwaitInCatchAndFinally(Task<int> task1, Task<int> task2, Task<int> task3) |
|
{ |
|
try |
|
{ |
|
Console.WriteLine("Start try"); |
|
await task1; |
|
Console.WriteLine("End try"); |
|
} |
|
catch (Exception ex) |
|
{ |
|
Console.WriteLine("Start catch"); |
|
await task2; |
|
Console.WriteLine("End catch"); |
|
} |
|
finally |
|
{ |
|
Console.WriteLine("Start finally"); |
|
await task3; |
|
Console.WriteLine("End finally"); |
|
} |
|
Console.WriteLine("End Method"); |
|
} |
|
|
|
public async Task<int> AwaitInFinallyInUsing(Task<IDisposable> task1, Task<int> task2, Task<int> task3) |
|
{ |
|
using (await task1) |
|
{ |
|
Console.WriteLine("Start using"); |
|
try |
|
{ |
|
Console.WriteLine("Before return"); |
|
return await task2; |
|
} |
|
finally |
|
{ |
|
Console.WriteLine("Start finally"); |
|
await task3; |
|
Console.WriteLine("End finally"); |
|
} |
|
} |
|
} |
|
#endif |
|
} |
|
} |