PKHeX/Tests/PKHeX.Core.Tests/Util/ConvertUtilTests.cs
Kurt 88830e0d00
Update from .NET Framework 4.6 to .NET 7 (#3729)
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now.

Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes.

Adds functionality for Batch Editor commands to `>`, `<` and <=/>=

TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants.

Main window has a new layout to account for DPI scaling (8 point grid)

Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects
Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724)
Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720)
Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714)
Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691)
Added: Properties for ribbon/mark count (closes #3659)
Fixed: Traded SV eggs are now checked correctly (closes #3692)
2023-01-21 20:02:33 -08:00

81 lines
2.3 KiB
C#

using System;
using FluentAssertions;
using Xunit;
using static System.Buffers.Binary.BinaryPrimitives;
namespace PKHeX.Core.Tests.Util;
public class ConvertUtilTests
{
[Theory]
[InlineData("-050 ", -50)]
[InlineData("123 45678", 12345678)]
[InlineData("--8765-43 21", -87654321)]
public void CheckConvertValidI32(string v, int result)
{
var convert = Core.Util.ToInt32(v);
convert.Should().Be(result);
}
[Theory]
[InlineData("50", 50)]
[InlineData("12 345678", 12345678)]
[InlineData("87654 321", 87654321)]
public void CheckConvertValidU32(string v, uint result)
{
var convert = Core.Util.ToUInt32(v);
convert.Should().Be(result);
}
[Theory]
[InlineData("0x50", 0x50)]
[InlineData("0x12 345678", 0x12345678)]
[InlineData("8aF5z4 32-1", 0x8aF54321)]
public void CheckConvertValidHexU32(string v, uint result)
{
var convert = Core.Util.GetHexValue(v);
convert.Should().Be(result);
}
[Theory]
[InlineData("01020304", 0x1020304)]
public void CheckConvertHexString(string v, uint result)
{
var convert = Core.Util.GetBytesFromHexString(v);
var u32 = ReadUInt32LittleEndian(convert);
u32.Should().Be(result);
var remake = Core.Util.GetHexStringFromBytes(convert);
remake.Should().Be(v);
}
[Theory]
[InlineData(0x12345678, 12345678)]
public void CheckConvertBCD_Little(uint raw, int expect)
{
Span<byte> data = stackalloc byte[4];
WriteUInt32LittleEndian(data, raw);
var result = BinaryCodedDecimal.ToInt32LE(data);
result.Should().Be(expect);
Span<byte> newData = stackalloc byte[4];
BinaryCodedDecimal.WriteBytesLE(newData, result);
data.SequenceEqual(newData).Should().BeTrue();
}
[Theory]
[InlineData(0x78563412, 12345678)]
public void CheckConvertBCD_Big(uint raw, int expect)
{
Span<byte> data = stackalloc byte[4];
WriteUInt32LittleEndian(data, raw);
var result = BinaryCodedDecimal.ToInt32BE(data);
result.Should().Be(expect);
Span<byte> newData = stackalloc byte[4];
BinaryCodedDecimal.WriteBytesBE(newData, result);
data.SequenceEqual(newData).Should().BeTrue();
}
}