mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-18 12:13:16 +00:00
48 lines
2.3 KiB
C#
48 lines
2.3 KiB
C#
using Xunit;
|
|
|
|
namespace SabreTools.Metadata.DatFiles.Test
|
|
{
|
|
public class DepotInformationTests
|
|
{
|
|
#region GetDepotPath
|
|
|
|
[Theory]
|
|
[InlineData(null, 0, null)]
|
|
[InlineData(null, 4, null)]
|
|
[InlineData(new byte[] { 0x12, 0x34, 0x56 }, 0, null)]
|
|
[InlineData(new byte[] { 0x12, 0x34, 0x56 }, 4, null)]
|
|
[InlineData(new byte[] { 0xda, 0x39, 0xa3, 0xee, 0x5e, 0x6b, 0x4b, 0x0d, 0x32, 0x55, 0xbf, 0xef, 0x95, 0x60, 0x18, 0x90, 0xaf, 0xd8, 0x07, 0x09 }, -1, "da39a3ee5e6b4b0d3255bfef95601890afd80709.gz")]
|
|
[InlineData(new byte[] { 0xda, 0x39, 0xa3, 0xee, 0x5e, 0x6b, 0x4b, 0x0d, 0x32, 0x55, 0xbf, 0xef, 0x95, 0x60, 0x18, 0x90, 0xaf, 0xd8, 0x07, 0x09 }, 0, "da39a3ee5e6b4b0d3255bfef95601890afd80709.gz")]
|
|
[InlineData(new byte[] { 0xda, 0x39, 0xa3, 0xee, 0x5e, 0x6b, 0x4b, 0x0d, 0x32, 0x55, 0xbf, 0xef, 0x95, 0x60, 0x18, 0x90, 0xaf, 0xd8, 0x07, 0x09 }, 1, "da\\da39a3ee5e6b4b0d3255bfef95601890afd80709.gz")]
|
|
public void GetDepotPath_Array(byte[]? hash, int depth, string? expected)
|
|
{
|
|
var depot = new DepotInformation(isActive: true, depth: depth);
|
|
string? actual = depot.GetDepotPath(hash);
|
|
if (System.IO.Path.DirectorySeparatorChar == '/')
|
|
expected = expected?.Replace('\\', '/');
|
|
|
|
Assert.Equal(expected, actual);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(null, 0, null)]
|
|
[InlineData(null, 4, null)]
|
|
[InlineData("123456", 0, null)]
|
|
[InlineData("123456", 4, null)]
|
|
[InlineData("da39a3ee5e6b4b0d3255bfef95601890afd80709", -1, "da39a3ee5e6b4b0d3255bfef95601890afd80709.gz")]
|
|
[InlineData("da39a3ee5e6b4b0d3255bfef95601890afd80709", 0, "da39a3ee5e6b4b0d3255bfef95601890afd80709.gz")]
|
|
[InlineData("da39a3ee5e6b4b0d3255bfef95601890afd80709", 1, "da\\da39a3ee5e6b4b0d3255bfef95601890afd80709.gz")]
|
|
public void GetDepotPath_String(string? hash, int depth, string? expected)
|
|
{
|
|
var depot = new DepotInformation(isActive: true, depth: depth);
|
|
string? actual = depot.GetDepotPath(hash);
|
|
if (System.IO.Path.DirectorySeparatorChar == '/')
|
|
expected = expected?.Replace('\\', '/');
|
|
|
|
Assert.Equal(expected, actual);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|