// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the Apache 2.0 License. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Xunit; namespace Tests { public class LongCount : AsyncEnumerableTests { [Fact] public async Task LongCount_Null() { await Assert.ThrowsAsync(() => AsyncEnumerable.LongCount(default)); await Assert.ThrowsAsync(() => AsyncEnumerable.LongCount(default, x => true)); await Assert.ThrowsAsync(() => AsyncEnumerable.LongCount(Return42, default(Func))); await Assert.ThrowsAsync(() => AsyncEnumerable.LongCount(default, CancellationToken.None)); await Assert.ThrowsAsync(() => AsyncEnumerable.LongCount(default, x => true, CancellationToken.None)); await Assert.ThrowsAsync(() => AsyncEnumerable.LongCount(Return42, default(Func), CancellationToken.None)); } [Fact] public void LongCount1() { Assert.Equal(0, new int[0].ToAsyncEnumerable().LongCount().Result); Assert.Equal(3, new[] { 1, 2, 3 }.ToAsyncEnumerable().LongCount().Result); AssertThrows(() => Throw(new Exception("Bang!")).LongCount().Wait(WaitTimeoutMs)); } [Fact] public void LongCount2() { Assert.Equal(0, new int[0].ToAsyncEnumerable().LongCount(x => x < 3).Result); Assert.Equal(2, new[] { 1, 2, 3 }.ToAsyncEnumerable().LongCount(x => x < 3).Result); AssertThrows(() => Throw(new Exception("Bang!")).LongCount(x => x < 3).Wait(WaitTimeoutMs)); } [Fact] public void LongCount3() { var ex = new Exception("Bang!"); var ys = new[] { 1, 2, 3 }.ToAsyncEnumerable().LongCount(new Func(x => { throw ex; })); AssertThrows(() => ys.Wait(WaitTimeoutMs), ex_ => ((AggregateException)ex_).Flatten().InnerExceptions.Single() == ex); } } }