// 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 Any : AsyncEnumerableTests { [Fact] public async Task Any_Null() { await Assert.ThrowsAsync(() => AsyncEnumerable.Any(default)); await Assert.ThrowsAsync(() => AsyncEnumerable.Any(default, x => true)); await Assert.ThrowsAsync(() => AsyncEnumerable.Any(Return42, default(Func))); await Assert.ThrowsAsync(() => AsyncEnumerable.Any(default, CancellationToken.None)); await Assert.ThrowsAsync(() => AsyncEnumerable.Any(default, x => true, CancellationToken.None)); await Assert.ThrowsAsync(() => AsyncEnumerable.Any(Return42, default(Func), CancellationToken.None)); } [Fact] public async Task Any1Async() { var res = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable().Any(x => x % 2 == 0); Assert.True(await res); } [Fact] public async Task Any2Async() { var res = new[] { 2, 8, 4 }.ToAsyncEnumerable().Any(x => x % 2 != 0); Assert.False(await res); } [Fact] public async Task Any3Async() { var ex = new Exception("Bang!"); var res = Throw(ex).Any(x => x % 2 == 0); await AssertThrowsAsync(res, ex); } [Fact] public async Task Any4Async() { var ex = new Exception("Bang!"); var res = new[] { 2, 8, 4 }.ToAsyncEnumerable().Any(new Func(x => { throw ex; })); await AssertThrowsAsync(res, ex); } [Fact] public async Task Any5Async() { var res = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable().Any(); Assert.True(await res); } [Fact] public async Task Any6Async() { var res = new int[0].ToAsyncEnumerable().Any(); Assert.False(await res); } } }