12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // 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 Xunit;
- namespace Tests
- {
- public class Take : AsyncEnumerableTests
- {
- [Fact]
- public void Take_Null()
- {
- AssertThrows<ArgumentNullException>(() => AsyncEnumerable.Take<int>(null, 5));
- }
- [Fact]
- public void Take0()
- {
- var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable();
- var ys = xs.Take(-2);
- var e = ys.GetAsyncEnumerator();
- NoNext(e);
- }
- [Fact]
- public void Take1()
- {
- var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable();
- var ys = xs.Take(2);
- var e = ys.GetAsyncEnumerator();
- HasNext(e, 1);
- HasNext(e, 2);
- NoNext(e);
- }
- [Fact]
- public void Take2()
- {
- var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable();
- var ys = xs.Take(10);
- var e = ys.GetAsyncEnumerator();
- HasNext(e, 1);
- HasNext(e, 2);
- HasNext(e, 3);
- HasNext(e, 4);
- NoNext(e);
- }
- [Fact]
- public void Take3()
- {
- var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable();
- var ys = xs.Take(0);
- var e = ys.GetAsyncEnumerator();
- NoNext(e);
- }
- [Fact]
- public void Take4()
- {
- var ex = new Exception("Bang");
- var xs = AsyncEnumerable.Throw<int>(ex);
- var ys = xs.Take(2);
- var e = ys.GetAsyncEnumerator();
- AssertThrows(() => e.MoveNextAsync().Wait(WaitTimeoutMs), (Exception ex_) => ((AggregateException)ex_).Flatten().InnerExceptions.Single() == ex);
- }
- [Fact]
- public async Task Take5()
- {
- var xs = new[] { 1, 2, 3, 4 }.ToAsyncEnumerable();
- var ys = xs.Take(2);
- await SequenceIdentity(ys);
- }
- }
- }
|