PSO2SERVER/ServerTest/Test.cs
2024-12-10 13:33:57 +08:00

159 lines
4.5 KiB
C#

using System;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.InteropServices;
using Newtonsoft.Json;
using NUnit.Framework;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol;
using PSO2SERVER.Protocol.Handlers;
using PSO2SERVER.Zone;
using static PSO2SERVER.Models.CharacterStruct;
namespace ServerTest
{
[TestFixture]
public class ReflectionTests
{
[SetUp]
public void Setup()
{
PacketHandlers.LoadPacketHandlers();
}
[Test]
public void TestLoginLookup()
{
Assert.IsNotNull(PacketHandlers.GetHandlerFor(0x11, 0x0));
}
[Test]
public void TestAllHandlers()
{
foreach (var p in PacketHandlers.GetLoadedHandlers())
{
Assert.IsNotNull(p);
Assert.IsInstanceOf(typeof(PacketHandler), p, "Loaded PacketHandler is not a Packet Handler!");
}
}
}
[TestFixture]
public class UnsafeTests
{
private readonly JobParam _jp = new JobParam();
[Test]
public void CheckJobParam()
{
var size = Marshal.SizeOf(typeof(JobParam));
Assert.IsNotNull(_jp);
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)
{
Assert.AreEqual(0, b);
}
Assert.AreEqual(size, jpArr.Length);
}
}
[TestFixture]
public class WriterTests
{
private PacketWriter _writer;
[SetUp]
public void Setup()
{
_writer = new PacketWriter();
}
[Test]
public void TestStructureWrite()
{
var structureSize = Marshal.SizeOf(typeof(JobParam));
var jp = new JobParam();
jp.entries.hunter.level = 7;
_writer.WriteStruct(jp);
var structArray = _writer.ToArray();
Assert.AreEqual(structureSize, structArray.Length);
Assert.AreEqual(7, structArray[12]);
}
}
[TestFixture]
public class JsonTests
{
[Test]
public void TestObjectSerialize()
{
var testObject = new PSOObject
{
Name = "testobj",
Header = new ObjectHeader { ID = 1337, ObjectType = ObjectType.Object },
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);
Console.Out.WriteLine(output);
}
}
[TestFixture]
public class DataTests
{
[Test]
public void TestShiftEnum()
{
byte[] bytes = { 0x1, 0x1, 0x1 };
uint dataFlags = bytes[0];
dataFlags |= (uint)(bytes[1] << 8);
dataFlags |= (uint)(bytes[2] << 16);
Assert.AreEqual((PackedData.ENT1_ID | PackedData.ROT_Y | PackedData.UNK_Y),
(PackedData)dataFlags);
Console.Out.WriteLine((PackedData)dataFlags);
}
[Test]
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
};
PSO2Items item = PSO2Items.FromByteArray(itemData);
ulong guid = item.GetGUID();
ulong newguid = 0x0123456789ABCDEF;
Assert.AreEqual(guid, 0x03FF2E79609940DA);
item.SetGUID(newguid);
Assert.AreEqual(item.GetGUID(), 0x0123456789ABCDEF);
}
}
}