AsyncEnumerableTests.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Threading.Tasks;
  8. using FluentAssertions;
  9. using Xunit;
  10. namespace Tests
  11. {
  12. public class AsyncEnumerableTests
  13. {
  14. protected static readonly IAsyncEnumerable<int> Return42 = new[] { 42 }.ToAsyncEnumerable();
  15. protected static Func<Exception, bool> SingleInnerExceptionMatches(Exception ex) => e => ((AggregateException)e).Flatten().InnerExceptions.Single() == ex;
  16. protected const int WaitTimeoutMs = 5000;
  17. #pragma warning disable xUnit1013 // Public method should be marked as test
  18. public void AssertThrows<E>(Action a)
  19. where E : Exception
  20. {
  21. Assert.Throws<E>(a);
  22. }
  23. public void AssertThrows<E>(Action a, Func<E, bool> assert)
  24. where E : Exception
  25. {
  26. var hasFailed = false;
  27. try
  28. {
  29. a();
  30. }
  31. catch (E e)
  32. {
  33. Assert.True(assert(e));
  34. hasFailed = true;
  35. }
  36. if (!hasFailed)
  37. {
  38. Assert.True(false);
  39. }
  40. }
  41. public void AssertThrowsAsync(Task t, Exception e)
  42. {
  43. AssertThrows(() => t.Wait(WaitTimeoutMs), SingleInnerExceptionMatches(e));
  44. }
  45. public void AssertThrowsAsync<T>(ValueTask<T> t, Exception e)
  46. {
  47. AssertThrows(() => t.Wait(WaitTimeoutMs), SingleInnerExceptionMatches(e));
  48. }
  49. public async Task NoNextAsync<T>(IAsyncEnumerator<T> e)
  50. {
  51. Assert.False(await e.MoveNextAsync());
  52. }
  53. public async Task HasNextAsync<T>(IAsyncEnumerator<T> e, T value)
  54. {
  55. Assert.True(await e.MoveNextAsync());
  56. Assert.Equal(value, e.Current);
  57. }
  58. public async Task SequenceIdentity<T>(IAsyncEnumerable<T> enumerable)
  59. {
  60. var en1 = enumerable.GetAsyncEnumerator();
  61. var en2 = enumerable.GetAsyncEnumerator();
  62. Assert.Equal(en1.GetType(), en2.GetType());
  63. await en1.DisposeAsync();
  64. await en2.DisposeAsync();
  65. var e1t = enumerable.ToList();
  66. var e2t = enumerable.ToList();
  67. await Task.WhenAll(e1t, e2t);
  68. var e1Result = e1t.Result;
  69. var e2Result = e2t.Result;
  70. e1Result.ShouldAllBeEquivalentTo(e2Result);
  71. }
  72. #pragma warning restore xUnit1013 // Public method should be marked as test
  73. protected static IAsyncEnumerable<TValue> Throw<TValue>(Exception exception)
  74. {
  75. if (exception == null)
  76. throw new ArgumentNullException(nameof(exception));
  77. #if NO_TASK_FROMEXCEPTION
  78. var tcs = new TaskCompletionSource<bool>();
  79. tcs.TrySetException(exception);
  80. var moveNextThrows = new ValueTask<bool>(tcs.Task);
  81. #else
  82. var moveNextThrows = new ValueTask<bool>(Task.FromException<bool>(exception));
  83. #endif
  84. return AsyncEnumerable.CreateEnumerable(
  85. _ => AsyncEnumerable.CreateEnumerator<TValue>(
  86. () => moveNextThrows,
  87. current: null,
  88. dispose: null)
  89. );
  90. }
  91. }
  92. }