DotRecastNetSim/test/DotRecast.Core.Test/RcRentedArrayTest.cs

59 lines
1.7 KiB
C#
Raw Normal View History

2024-01-21 13:05:02 +03:00
using System;
using System.Collections.Generic;
using DotRecast.Core.Buffers;
using NUnit.Framework;
namespace DotRecast.Core.Test;
public class RcRentedArrayTest
{
public List<int> RandomValues(int length)
{
var rand = new RcRand();
// excepted values
var list = new List<int>();
for (int i = 0; i < length; ++i)
{
list.Add(rand.NextInt32());
}
return list;
}
[Test]
2024-01-21 13:27:58 +03:00
public void TestRentedArray()
2024-01-21 13:05:02 +03:00
{
var rand = new RcRand();
for (int loop = 0; loop < 1024; ++loop)
{
2024-01-21 13:27:58 +03:00
RcRentedArray<int> rentedArray;
2024-01-21 13:05:02 +03:00
{
int length = Math.Max(2, (int)(rand.Next() * 2048));
2024-01-21 13:27:58 +03:00
var values = RandomValues(length);
2024-02-24 14:00:51 +03:00
using var array = RcRentedArray.Rent<int>(length);
2024-01-21 13:05:02 +03:00
2024-01-21 13:27:58 +03:00
for (int i = 0; i < array.Length; ++i)
{
array[i] = values[i];
}
for (int i = 0; i < array.Length; ++i)
{
Assert.That(array[i], Is.EqualTo(values[i]));
}
Assert.That(array[^1], Is.EqualTo(values[^1]));
2024-01-21 13:27:58 +03:00
Assert.Throws<IndexOutOfRangeException>(() => array[-1] = 0);
Assert.Throws<IndexOutOfRangeException>(() => array[array.Length + 1] = 0);
Assert.Throws<IndexOutOfRangeException>(() => _ = array[-1]);
Assert.Throws<IndexOutOfRangeException>(() => _ = array[array.Length + 1]);
2024-01-21 13:27:58 +03:00
// danger
rentedArray = array;
2024-01-21 13:05:02 +03:00
}
2024-01-21 13:27:58 +03:00
Assert.Throws<NullReferenceException>(() => rentedArray[^1] = 0);
2024-01-21 13:05:02 +03:00
}
}
}