PSO2SERVER/ServerTest/Test.cs

152 lines
4.9 KiB
C#
Raw Permalink Normal View History

2024-12-12 14:26:37 +08:00
using Newtonsoft.Json;
using Xunit;
2024-09-10 01:13:20 +08:00
using PSO2SERVER.Models;
using PSO2SERVER.Protocol;
using PSO2SERVER.Protocol.Handlers;
2024-12-03 18:17:43 +08:00
using PSO2SERVER.Zone;
2024-12-12 14:26:37 +08:00
using System;
using System.Runtime.InteropServices;
2024-12-02 20:43:28 +08:00
using static PSO2SERVER.Models.CharacterStruct;
2024-09-10 00:31:40 +08:00
2024-09-10 01:13:20 +08:00
namespace ServerTest
2024-09-10 00:31:40 +08:00
{
public class ReflectionTests
{
2024-12-12 14:26:37 +08:00
public ReflectionTests()
2024-09-10 00:31:40 +08:00
{
2024-12-12 14:26:37 +08:00
// Setup 方法:在构造函数中加载 PacketHandlers
2024-09-10 00:31:40 +08:00
PacketHandlers.LoadPacketHandlers();
}
2024-12-12 14:26:37 +08:00
[Fact]
2024-09-10 00:31:40 +08:00
public void TestLoginLookup()
{
2024-12-12 14:26:37 +08:00
// 使用 xUnit 的 Assert.NotNull 代替 NUnit 的 Assert.IsNotNull
Assert.NotNull(PacketHandlers.GetHandlerFor(0x11, 0x0));
2024-09-10 00:31:40 +08:00
}
2024-12-12 14:26:37 +08:00
[Fact]
2024-09-10 00:31:40 +08:00
public void TestAllHandlers()
{
2024-12-12 14:26:37 +08:00
// 遍历每个加载的处理程序,检查是否为 null 和正确类型
2024-09-10 00:31:40 +08:00
foreach (var p in PacketHandlers.GetLoadedHandlers())
{
2024-12-12 14:26:37 +08:00
Assert.NotNull(p); // 确保 p 不是 null
Assert.IsType<PacketHandler>(p); // 确保 p 是 PacketHandler 类型
2024-09-10 00:31:40 +08:00
}
}
}
public class UnsafeTests
{
2024-12-02 20:43:28 +08:00
private readonly JobParam _jp = new JobParam();
2024-09-10 00:31:40 +08:00
2024-12-12 14:26:37 +08:00
[Fact]
2024-09-10 00:31:40 +08:00
public void CheckJobParam()
{
2024-12-02 20:43:28 +08:00
var size = Marshal.SizeOf(typeof(JobParam));
2024-12-12 14:26:37 +08:00
Assert.NotNull(_jp);
2024-09-10 00:31:40 +08:00
var jpArr = new byte[size];
var ptr = Marshal.AllocHGlobal(size);
Marshal.StructureToPtr(_jp, ptr, true);
Marshal.Copy(ptr, jpArr, 0, size);
Marshal.FreeHGlobal(ptr);
foreach (var b in jpArr)
{
2024-12-12 14:26:37 +08:00
Assert.Equal(0, b);
2024-09-10 00:31:40 +08:00
}
2024-12-12 14:26:37 +08:00
Assert.Equal(size, jpArr.Length);
2024-09-10 00:31:40 +08:00
}
}
public class WriterTests
{
private PacketWriter _writer;
2024-12-12 14:26:37 +08:00
public WriterTests() // 构造函数初始化
2024-09-10 00:31:40 +08:00
{
_writer = new PacketWriter();
}
2024-12-12 14:26:37 +08:00
[Fact]
2024-09-10 00:31:40 +08:00
public void TestStructureWrite()
{
2024-12-02 20:43:28 +08:00
var structureSize = Marshal.SizeOf(typeof(JobParam));
var jp = new JobParam();
2024-09-10 00:31:40 +08:00
jp.entries.hunter.level = 7;
_writer.WriteStruct(jp);
var structArray = _writer.ToArray();
2024-12-12 14:26:37 +08:00
Assert.Equal(structureSize, structArray.Length); // xUnit 中使用 Assert.Equal
Assert.Equal(7, structArray[12]); // xUnit 中使用 Assert.Equal
2024-09-10 00:31:40 +08:00
}
}
public class JsonTests
{
2024-12-12 14:26:37 +08:00
[Fact]
2024-09-10 00:31:40 +08:00
public void TestObjectSerialize()
{
var testObject = new PSOObject
{
Name = "testobj",
2024-09-21 13:11:22 +08:00
Header = new ObjectHeader { ID = 1337, ObjectType = ObjectType.Object },
2024-09-10 00:31:40 +08:00
Position = new PSOLocation
{
RotX = (float)3.3,
RotY = (float)3.3,
RotZ = (float)3.3,
RotW = (float)3.3,
PosX = (float)3.3,
PosY = (float)3.3,
PosZ = (float)3.3
},
ThingFlag = 4,
Things = new PSOObject.PSOObjectThing[2]
};
var thingData = BitConverter.ToUInt32(new byte[] { 0xff, 0xff, 0xff, 0xff }, 0);
testObject.Things[0] = new PSOObject.PSOObjectThing { Data = thingData };
var output = JsonConvert.SerializeObject(testObject);
2024-12-12 14:26:37 +08:00
Console.WriteLine(output); // 在 xUnit 中,控制台输出会显示在日志中
2024-09-10 00:31:40 +08:00
}
}
public class DataTests
{
2024-12-12 14:26:37 +08:00
[Fact]
2024-09-10 00:31:40 +08:00
public void TestShiftEnum()
{
byte[] bytes = { 0x1, 0x1, 0x1 };
uint dataFlags = bytes[0];
dataFlags |= (uint)(bytes[1] << 8);
dataFlags |= (uint)(bytes[2] << 16);
2024-12-12 14:26:37 +08:00
Assert.Equal(PackedData.ENT1_ID | PackedData.ROT_Y | PackedData.UNK_Y,
(PackedData)dataFlags); // xUnit 中使用 Assert.Equal
Console.WriteLine((PackedData)dataFlags); // 在 xUnit 中,控制台输出会显示在日志中
2024-09-10 00:31:40 +08:00
}
2024-12-12 14:26:37 +08:00
[Fact]
2024-09-10 00:31:40 +08:00
public void TestItemGUID()
{
byte[] itemData =
{
0xDA, 0x40, 0x99, 0x60, 0x79, 0x2E, 0xFF, 0x03, 0x01, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x20, 0x00,
0x00, 0x03, 0xFF, 0x0A, 0x64, 0x00, 0x12, 0x34, 0x01, 0x02, 0x02, 0x02, 0x03, 0x02, 0x04, 0x02,
0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
2024-12-10 13:33:57 +08:00
PSO2Items item = PSO2Items.FromByteArray(itemData);
2024-12-12 14:26:37 +08:00
ulong oldguid = 0x03FF2E79609940DA;
2024-12-10 13:33:57 +08:00
ulong guid = item.GetGUID();
ulong newguid = 0x0123456789ABCDEF;
2024-09-10 00:31:40 +08:00
2024-12-12 14:26:37 +08:00
Assert.Equal(oldguid, guid); // xUnit 中使用 Assert.Equal
2024-09-10 00:31:40 +08:00
item.SetGUID(newguid);
2024-12-12 14:26:37 +08:00
Assert.Equal(newguid, item.GetGUID()); // xUnit 中使用 Assert.Equal
2024-09-10 00:31:40 +08:00
}
}
}