baseline: OpenMU upstream b5a0961 (fresh source)

This commit is contained in:
Acentech Dev
2026-07-14 19:00:35 +03:00
parent 450402e47d
commit 36fc125d5c
11968 changed files with 748705 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
// <copyright file="AppearanceSerializerTest.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.Tests;
using Moq;
using MUnique.OpenMU.DataModel.Configuration;
using MUnique.OpenMU.DataModel.Configuration.Items;
using MUnique.OpenMU.DataModel.Entities;
using MUnique.OpenMU.GameServer.RemoteView;
/// <summary>
/// Tests the <see cref="AppearanceSerializer"/>.
/// </summary>
[TestFixture]
public class AppearanceSerializerTest
{
/// <summary>
/// Tests if a new (naked) dark knight with small axe would be serialized correctly.
/// </summary>
[Test]
public void NewDarkKnightWithSmallAxe()
{
var serializer = new AppearanceSerializer();
var appearanceData = new Mock<IAppearanceData>();
appearanceData.Setup(a => a.CharacterClass).Returns(new CharacterClass { Number = 0x20 >> 3 }); // Dark Knight;
appearanceData.Setup(a => a.EquippedItems).Returns(this.GetSmallAxeEquipped());
var data = new byte[serializer.NeededSpace];
serializer.WriteAppearanceData(data, appearanceData.Object, false);
var expected = new byte[] { 0x20, 0x00, 0xFF, 0xFF, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00, 0x20, 0xFF, 0xFF, 0xFF, 0x00, 0x00 };
Assert.That(data, Is.EquivalentTo(expected));
}
private IEnumerable<ItemAppearance> GetSmallAxeEquipped()
{
yield return new ItemAppearance { Definition = new ItemDefinition { Group = 1 } };
}
}