您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
104 行
3.3 KiB
104 行
3.3 KiB
using NUnit.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine.Experimental.Rendering;
|
|
|
|
namespace UnityEditor.Experimental.Rendering.Tests
|
|
{
|
|
public unsafe class CoreUnsafeUtilsTests
|
|
{
|
|
public struct TestData : IEquatable<TestData>
|
|
{
|
|
public int intValue;
|
|
public float floatValue;
|
|
|
|
public bool Equals(TestData other)
|
|
{
|
|
return intValue == other.intValue && floatValue == other.floatValue;
|
|
}
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
if (!(obj is TestData))
|
|
return false;
|
|
return Equals((TestData)obj);
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
fixed (float* fptr = &floatValue)
|
|
return intValue ^ *(int*)fptr;
|
|
}
|
|
}
|
|
|
|
static object[][] s_CopyToList = new object[][]
|
|
{
|
|
new object[] { new List<TestData>
|
|
{
|
|
new TestData { floatValue = 2, intValue = 1 },
|
|
new TestData { floatValue = 3, intValue = 2 },
|
|
new TestData { floatValue = 4, intValue = 3 },
|
|
new TestData { floatValue = 5, intValue = 4 },
|
|
new TestData { floatValue = 6, intValue = 5 },
|
|
} }
|
|
};
|
|
|
|
[Test]
|
|
[TestCaseSource("s_CopyToList")]
|
|
public void CopyToList(List<TestData> datas)
|
|
{
|
|
var dest = stackalloc TestData[datas.Count];
|
|
datas.CopyTo(dest, datas.Count);
|
|
|
|
for (int i = 0; i < datas.Count; ++i)
|
|
Assert.AreEqual(datas[i], dest[i]);
|
|
}
|
|
|
|
|
|
|
|
static object[][] s_CopyToArray = new object[][]
|
|
{
|
|
new object[] { new TestData[]
|
|
{
|
|
new TestData { floatValue = 2, intValue = 1 },
|
|
new TestData { floatValue = 3, intValue = 2 },
|
|
new TestData { floatValue = 4, intValue = 3 },
|
|
new TestData { floatValue = 5, intValue = 4 },
|
|
new TestData { floatValue = 6, intValue = 5 },
|
|
} }
|
|
};
|
|
|
|
[Test]
|
|
[TestCaseSource("s_CopyToArray")]
|
|
public void CopyToArray(TestData[] datas)
|
|
{
|
|
var dest = stackalloc TestData[datas.Length];
|
|
datas.CopyTo(dest, datas.Length);
|
|
|
|
for (int i = 0; i < datas.Length; ++i)
|
|
Assert.AreEqual(datas[i], dest[i]);
|
|
}
|
|
|
|
static object[][] s_QuickSort = new object[][]
|
|
{
|
|
new object[] { new int[] { 0, 1 } },
|
|
new object[] { new int[] { 1, 0 } },
|
|
new object[] { new int[] { 0, 4, 2, 6, 3, 7, 1, 5 } }, // Test with unique set
|
|
new object[] { new int[] { 0, 4, 2, 6, 4, 7, 1, 5 } }, // Test with non unique set
|
|
};
|
|
|
|
[Test]
|
|
[TestCaseSource("s_QuickSort")]
|
|
public void QuickSort(int[] values)
|
|
{
|
|
// We must perform a copy to avoid messing the test data directly
|
|
var ptrValues = stackalloc int[values.Length];
|
|
values.CopyTo(ptrValues, values.Length);
|
|
|
|
CoreUnsafeUtils.QuickSort<int>(values.Length, ptrValues);
|
|
|
|
for (int i = 0; i< values.Length - 1; ++i)
|
|
Assert.LessOrEqual(ptrValues[i], ptrValues[i + 1]);
|
|
}
|
|
}
|
|
}
|