mirror of
https://github.com/chylex/.NET-Community-Toolkit.git
synced 2024-11-24 07:42:45 +01:00
122 lines
3.6 KiB
C#
122 lines
3.6 KiB
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
#if NETCOREAPP
|
|
|
|
using System;
|
|
using System.Runtime.CompilerServices;
|
|
using CommunityToolkit.HighPerformance.Enumerables;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace CommunityToolkit.HighPerformance.UnitTests.Enumerables;
|
|
|
|
[TestClass]
|
|
public class Test_RefEnumerable
|
|
{
|
|
[TestMethod]
|
|
[DataRow(1, 1, new[] { 1 })]
|
|
[DataRow(4, 1, new[] { 1, 2, 3, 4 })]
|
|
[DataRow(4, 4, new[] { 1, 5, 9, 13 })]
|
|
[DataRow(4, 5, new[] { 1, 6, 11, 16 })]
|
|
public void Test_RefEnumerable_DangerousCreate_Ok(int length, int step, int[] values)
|
|
{
|
|
Span<int> data = new[]
|
|
{
|
|
1, 2, 3, 4,
|
|
5, 6, 7, 8,
|
|
9, 10, 11, 12,
|
|
13, 14, 15, 16
|
|
};
|
|
|
|
RefEnumerable<int> enumerable = RefEnumerable<int>.DangerousCreate(ref data[0], length, step);
|
|
|
|
int[] result = enumerable.ToArray();
|
|
|
|
CollectionAssert.AreEqual(result, values);
|
|
}
|
|
|
|
[TestMethod]
|
|
[DataRow(-44, 10)]
|
|
[DataRow(10, -14)]
|
|
[DataRow(-32, -1)]
|
|
[ExpectedException(typeof(ArgumentOutOfRangeException))]
|
|
public void Test_RefEnumerable_DangerousCreate_BelowZero(int length, int step)
|
|
{
|
|
_ = RefEnumerable<int>.DangerousCreate(ref Unsafe.NullRef<int>(), length, step);
|
|
}
|
|
|
|
[TestMethod]
|
|
[DataRow(1, new[] { 1 })]
|
|
[DataRow(1, new[] { 1, 2, 3, 4 })]
|
|
[DataRow(4, new[] { 1, 5, 9, 13 })]
|
|
[DataRow(5, new[] { 1, 6, 11, 16 })]
|
|
public void Test_RefEnumerable_Indexer(int step, int[] values)
|
|
{
|
|
Span<int> data = new[]
|
|
{
|
|
1, 2, 3, 4,
|
|
5, 6, 7, 8,
|
|
9, 10, 11, 12,
|
|
13, 14, 15, 16
|
|
};
|
|
|
|
RefEnumerable<int> enumerable = RefEnumerable<int>.DangerousCreate(ref data[0], values.Length, step);
|
|
|
|
for (int i = 0; i < enumerable.Length; i++)
|
|
{
|
|
Assert.AreEqual(enumerable[i], values[i]);
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Test_RefEnumerable_Indexer_ThrowsIndexOutOfRange()
|
|
{
|
|
int[] array = new[]
|
|
{
|
|
0, 0, 0, 0
|
|
};
|
|
|
|
_ = Assert.ThrowsException<IndexOutOfRangeException>(() => RefEnumerable<int>.DangerousCreate(ref array[0], array.Length, 1)[-1]);
|
|
_ = Assert.ThrowsException<IndexOutOfRangeException>(() => RefEnumerable<int>.DangerousCreate(ref array[0], array.Length, 1)[array.Length]);
|
|
}
|
|
|
|
#if NETCOREAPP3_1_OR_GREATER
|
|
[TestMethod]
|
|
[DataRow(1, new[] { 1 })]
|
|
[DataRow(1, new[] { 1, 2, 3, 4 })]
|
|
[DataRow(4, new[] { 1, 5, 9, 13 })]
|
|
[DataRow(5, new[] { 1, 6, 11, 16 })]
|
|
public void Test_RefEnumerable_Index_Indexer(int step, int[] values)
|
|
{
|
|
Span<int> data = new[]
|
|
{
|
|
1, 2, 3, 4,
|
|
5, 6, 7, 8,
|
|
9, 10, 11, 12,
|
|
13, 14, 15, 16
|
|
};
|
|
|
|
RefEnumerable<int> enumerable = RefEnumerable<int>.DangerousCreate(ref data[0], values.Length, step);
|
|
|
|
for (int i = 1; i <= enumerable.Length; i++)
|
|
{
|
|
Assert.AreEqual(values[^i], enumerable[^i]);
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Test_RefEnumerable_Index_Indexer_ThrowsIndexOutOfRange()
|
|
{
|
|
int[] array = new[]
|
|
{
|
|
0, 0, 0, 0
|
|
};
|
|
|
|
_ = Assert.ThrowsException<IndexOutOfRangeException>(() => RefEnumerable<int>.DangerousCreate(ref array[0], array.Length, 1)[new Index(array.Length)]);
|
|
_ = Assert.ThrowsException<IndexOutOfRangeException>(() => RefEnumerable<int>.DangerousCreate(ref array[0], array.Length, 1)[^0]);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
#endif |