| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 | // 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 Xunit;namespace Tests{    public class GroupJoin : AsyncEnumerableTests    {        [Fact]        public void GroupJoin_Null()        {            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(default(IAsyncEnumerable<int>), Return42, x => x, x => x, (x, y) => x));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(Return42, default(IAsyncEnumerable<int>), x => x, x => x, (x, y) => x));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(Return42, Return42, default(Func<int, int>), x => x, (x, y) => x));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(Return42, Return42, x => x, default(Func<int, int>), (x, y) => x));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(Return42, Return42, x => x, x => x, default(Func<int, IAsyncEnumerable<int>, int>)));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(default(IAsyncEnumerable<int>), Return42, x => x, x => x, (x, y) => x, EqualityComparer<int>.Default));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(Return42, default(IAsyncEnumerable<int>), x => x, x => x, (x, y) => x, EqualityComparer<int>.Default));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(Return42, Return42, default(Func<int, int>), x => x, (x, y) => x, EqualityComparer<int>.Default));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(Return42, Return42, x => x, default(Func<int, int>), (x, y) => x, EqualityComparer<int>.Default));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(Return42, Return42, x => x, x => x, default(Func<int, IAsyncEnumerable<int>, int>), EqualityComparer<int>.Default));            AssertThrows<ArgumentNullException>(() => AsyncEnumerable.GroupJoin<int, int, int, int>(Return42, Return42, x => x, x => x, (x, y) => x, default(IEqualityComparer<int>)));        }        [Fact]        public void GroupJoin1()        {            var xs = new[] { 0, 1, 2 }.ToAsyncEnumerable();            var ys = new[] { 4, 7, 6, 2, 3, 4, 8, 9 }.ToAsyncEnumerable();            var res = xs.GroupJoin(ys, x => x % 3, y => y % 3, (x, i) => x + " - " + i.Aggregate("", (s, j) => s + j).Result);            var e = res.GetAsyncEnumerator();            HasNext(e, "0 - 639");            HasNext(e, "1 - 474");            HasNext(e, "2 - 28");            NoNext(e);        }        [Fact]        public void GroupJoin2()        {            var xs = new[] { 0, 1, 2 }.ToAsyncEnumerable();            var ys = new[] { 3, 6, 4 }.ToAsyncEnumerable();            var res = xs.GroupJoin(ys, x => x % 3, y => y % 3, (x, i) => x + " - " + i.Aggregate("", (s, j) => s + j).Result);            var e = res.GetAsyncEnumerator();            HasNext(e, "0 - 36");            HasNext(e, "1 - 4");            HasNext(e, "2 - ");            NoNext(e);        }        [Fact]        public void GroupJoin3()        {            var ex = new Exception("Bang!");            var xs = Throw<int>(ex);            var ys = new[] { 3, 6, 4 }.ToAsyncEnumerable();            var res = xs.GroupJoin(ys, x => x % 3, y => y % 3, (x, i) => x + " - " + i.Aggregate("", (s, j) => s + j).Result);            var e = res.GetAsyncEnumerator();            AssertThrows(() => e.MoveNextAsync().Wait(WaitTimeoutMs), SingleInnerExceptionMatches(ex));        }        [Fact]        public void GroupJoin4()        {            var ex = new Exception("Bang!");            var xs = new[] { 0, 1, 2 }.ToAsyncEnumerable();            var ys = Throw<int>(ex);            var res = xs.GroupJoin(ys, x => x % 3, y => y % 3, (x, i) => x + " - " + i.Aggregate("", (s, j) => s + j).Result);            var e = res.GetAsyncEnumerator();            AssertThrows(() => e.MoveNextAsync().Wait(WaitTimeoutMs), SingleInnerExceptionMatches(ex));        }        [Fact]        public void GroupJoin5()        {            var ex = new Exception("Bang!");            var xs = new[] { 0, 1, 2 }.ToAsyncEnumerable();            var ys = new[] { 3, 6, 4 }.ToAsyncEnumerable();            var res = xs.GroupJoin(ys, x => { throw ex; }, y => y % 3, (x, i) => x + " - " + i.Aggregate("", (s, j) => s + j).Result);            var e = res.GetAsyncEnumerator();            AssertThrows(() => e.MoveNextAsync().Wait(WaitTimeoutMs), SingleInnerExceptionMatches(ex));        }        [Fact]        public void GroupJoin6()        {            var ex = new Exception("Bang!");            var xs = new[] { 0, 1, 2 }.ToAsyncEnumerable();            var ys = new[] { 3, 6, 4 }.ToAsyncEnumerable();            var res = xs.GroupJoin(ys, x => x % 3, y => { throw ex; }, (x, i) => x + " - " + i.Aggregate("", (s, j) => s + j).Result);            var e = res.GetAsyncEnumerator();            AssertThrows(() => e.MoveNextAsync().Wait(WaitTimeoutMs), SingleInnerExceptionMatches(ex));        }        [Fact]        public void GroupJoin7()        {            var ex = new Exception("Bang!");            var xs = new[] { 0, 1, 2 }.ToAsyncEnumerable();            var ys = new[] { 3, 6, 4 }.ToAsyncEnumerable();            var res = xs.GroupJoin(ys, x => x % 3, y => y % 3, (x, i) =>            {                if (x == 1)                    throw ex;                return x + " - " + i.Aggregate("", (s, j) => s + j).Result;            });            var e = res.GetAsyncEnumerator();            HasNext(e, "0 - 36");            AssertThrows(() => e.MoveNextAsync().Wait(WaitTimeoutMs), SingleInnerExceptionMatches(ex));        }    }}
 |