// 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.Linq; using System.Threading; using System.Threading.Tasks; using Xunit; namespace Tests { public class Count : AsyncEnumerableTests { [Fact] public async Task Count_Null() { await Assert.ThrowsAsync(() => AsyncEnumerable.Count(default)); await Assert.ThrowsAsync(() => AsyncEnumerable.Count(default, x => true)); await Assert.ThrowsAsync(() => AsyncEnumerable.Count(Return42, default(Func))); await Assert.ThrowsAsync(() => AsyncEnumerable.Count(default, CancellationToken.None)); await Assert.ThrowsAsync(() => AsyncEnumerable.Count(default, x => true, CancellationToken.None)); await Assert.ThrowsAsync(() => AsyncEnumerable.Count(Return42, default(Func), CancellationToken.None)); } [Fact] public async Task Count1() { Assert.Equal(0, await new int[0].ToAsyncEnumerable().Count()); Assert.Equal(3, await new[] { 1, 2, 3 }.ToAsyncEnumerable().Count()); } [Fact] public async Task Count2() { Assert.Equal(0, await new int[0].ToAsyncEnumerable().Count(x => x < 3)); Assert.Equal(2, await new[] { 1, 2, 3 }.ToAsyncEnumerable().Count(x => x < 3)); } [Fact] public async Task Count3Async() { var ex = new Exception("Bang!"); var ys = new[] { 1, 2, 3 }.ToAsyncEnumerable().Count(new Func(x => { throw ex; })); await AssertThrowsAsync(ys, ex); } [Fact] public async Task Count4Async() { var ex = new Exception("Bang!"); await AssertThrowsAsync(Throw(ex).Count(), ex); } [Fact] public async Task Count5Async() { var ex = new Exception("Bang!"); await AssertThrowsAsync(Throw(ex).Count(x => x < 3), ex); } } }