// 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.Tasks; using Xunit; namespace Tests { public class SkipWhile : AsyncEnumerableTests { [Fact] public void SkipWhile_Null() { Assert.Throws(() => AsyncEnumerable.SkipWhile(default, x => true)); Assert.Throws(() => AsyncEnumerable.SkipWhile(default, (x, i) => true)); Assert.Throws(() => AsyncEnumerable.SkipWhile(Return42, default(Func))); Assert.Throws(() => AsyncEnumerable.SkipWhile(Return42, default(Func))); } [Fact] public async Task SkipWhile1Async() { var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile(x => x < 3); var e = ys.GetAsyncEnumerator(); await HasNextAsync(e, 3); await HasNextAsync(e, 4); await NoNextAsync(e); } [Fact] public async Task SkipWhile2Async() { var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile(x => false); var e = ys.GetAsyncEnumerator(); await HasNextAsync(e, 1); await HasNextAsync(e, 2); await HasNextAsync(e, 3); await HasNextAsync(e, 4); await NoNextAsync(e); } [Fact] public async Task SkipWhile3Async() { var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile(x => true); var e = ys.GetAsyncEnumerator(); await NoNextAsync(e); } [Fact] public async Task SkipWhile4Async() { var xs = new[] { 1, 2, 3, 4, 3, 2, 1 }.ToAsyncEnumerable(); var ys = xs.SkipWhile(x => x < 3); var e = ys.GetAsyncEnumerator(); await HasNextAsync(e, 3); await HasNextAsync(e, 4); await HasNextAsync(e, 3); await HasNextAsync(e, 2); await HasNextAsync(e, 1); await NoNextAsync(e); } [Fact] public void SkipWhile5() { var ex = new Exception("Bang"); var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile(new Func(x => { throw ex; })); var e = ys.GetAsyncEnumerator(); AssertThrowsAsync(e.MoveNextAsync(), ex); } [Fact] public async Task SkipWhile6Async() { var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile((x, i) => i < 2); var e = ys.GetAsyncEnumerator(); await HasNextAsync(e, 3); await HasNextAsync(e, 4); await NoNextAsync(e); } [Fact] public async Task SkipWhile7Async() { var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile((x, i) => false); var e = ys.GetAsyncEnumerator(); await HasNextAsync(e, 1); await HasNextAsync(e, 2); await HasNextAsync(e, 3); await HasNextAsync(e, 4); await NoNextAsync(e); } [Fact] public async Task SkipWhile8Async() { var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile((x, i) => true); var e = ys.GetAsyncEnumerator(); await NoNextAsync(e); } [Fact] public void SkipWhile9() { var ex = new Exception("Bang"); var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile(new Func((x, i) => { throw ex; })); var e = ys.GetAsyncEnumerator(); AssertThrowsAsync(e.MoveNextAsync(), ex); } [Fact] public async Task SkipWhile10() { var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile(x => x < 3); await SequenceIdentity(ys); } [Fact] public async Task SkipWhile11() { var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable(); var ys = xs.SkipWhile((x, i) => false); await SequenceIdentity(ys); } } }