- [X] Removes some string allocations (e.g. split) - [X] Optimizes some collections - [X] Converts insensitive to extension methods of built-ins. - [X] Adds ordinal (case sensitive) string helpers - [X] Fixes conditionals for in-game commands so they use Ordinal comparisons. - [X] Replaces ToLower.Contains with InsensitiveContains - [X] Adds ValueStringBuilder - [X] Implements ValueStringBuilder in a few places where it makes sense - [X] Removes the redundant Wrap function and replaces it with an optimized version - [X] Fixes list conversions in Utility Closes #351 Bumps release version
63 lines
2 KiB
C#
63 lines
2 KiB
C#
using System;
|
|
using Server.Network;
|
|
using Xunit;
|
|
|
|
namespace Server.Tests.Network
|
|
{
|
|
public class ArrowPacketTests
|
|
{
|
|
[Fact]
|
|
public void TestCancelArrow()
|
|
{
|
|
var expected = new CancelArrow().Compile();
|
|
|
|
using var ns = PacketTestUtilities.CreateTestNetState();
|
|
ns.SendCancelArrow(0, 0, Serial.Zero);
|
|
|
|
var result = ns.SendPipe.Reader.TryRead();
|
|
AssertThat.Equal(result.Buffer[0].AsSpan(0), expected);
|
|
}
|
|
|
|
[Theory, InlineData(0, 0), InlineData(100, 10), InlineData(100000, 100000)]
|
|
public void TestSetArrow(int x, int y)
|
|
{
|
|
var expected = new SetArrow(x, y).Compile();
|
|
|
|
using var ns = PacketTestUtilities.CreateTestNetState();
|
|
ns.SendSetArrow(x, y, Serial.Zero);
|
|
|
|
var result = ns.SendPipe.Reader.TryRead();
|
|
AssertThat.Equal(result.Buffer[0].AsSpan(0), expected);
|
|
}
|
|
|
|
[Theory, InlineData(0, 0), InlineData(100, 10), InlineData(100000, 100000)]
|
|
public void TestCancelArrowHS(int x, int y)
|
|
{
|
|
Serial serial = 0x1024;
|
|
|
|
var expected = new CancelArrowHS(x, y, serial).Compile();
|
|
|
|
using var ns = PacketTestUtilities.CreateTestNetState();
|
|
ns.ProtocolChanges = ProtocolChanges.HighSeas;
|
|
ns.SendCancelArrow(x, y, serial);
|
|
|
|
var result = ns.SendPipe.Reader.TryRead();
|
|
AssertThat.Equal(result.Buffer[0].AsSpan(0), expected);
|
|
}
|
|
|
|
[Theory, InlineData(0, 0), InlineData(100, 10), InlineData(100000, 100000)]
|
|
public void TestSetArrowHS(int x, int y)
|
|
{
|
|
Serial serial = 0x1024;
|
|
|
|
var expected = new SetArrowHS(x, y, serial).Compile();
|
|
|
|
using var ns = PacketTestUtilities.CreateTestNetState();
|
|
ns.ProtocolChanges = ProtocolChanges.HighSeas;
|
|
ns.SendSetArrow(x, y, serial);
|
|
|
|
var result = ns.SendPipe.Reader.TryRead();
|
|
AssertThat.Equal(result.Buffer[0].AsSpan(0), expected);
|
|
}
|
|
}
|
|
}
|