modernuo/Projects/Server.Tests/Tests/Geometry/Rectangle2DTests.cs
Kamron Batman 03fb36c869
fix: Adds ISpanParsable and fixes command conditionals (#1241)
* Adds `ISpanParsable<T>`
* Removes `[Parsable]`
* Fixes querying by serial, body, and a few others.
* Adds `Parse` to `Rectangle3D`
* Fixes AutoArchive NPE


Closes #1209
2022-11-12 00:26:02 -08:00

132 lines
5.1 KiB
C#

using System;
using Xunit;
namespace Server.Tests;
public class Rectangle2DTests
{
[Fact]
public void TestRectangle2DToString()
{
const int max = int.MaxValue;
const int min = int.MinValue;
Assert.Equal("(0, 0)+(0, 0)", new Rectangle2D(0, 0, 0, 0).ToString());
Assert.Equal("(1, 1)+(1, 1)", new Rectangle2D(1, 1, 1, 1).ToString());
Assert.Equal($"({max}, {max})+({max}, {max})", new Rectangle2D(max, max, max, max).ToString());
Assert.Equal($"({min}, {min})+({min}, {min})", new Rectangle2D(min, min, min, min).ToString());
}
[Fact]
public void TestRectangle2DTryFormatSucceeds()
{
const int max = int.MaxValue;
const int min = int.MinValue;
char[] array = new char[128];
var p1 = new Rectangle2D(0, 0, 0, 0);
Assert.True(p1.TryFormat(array, out var cp1, null, null));
Assert.Equal(9 + 4, cp1);
Array.Clear(array);
var p2 = new Rectangle2D(1, 1, 1, 1);
Assert.True(p2.TryFormat(array, out var cp2, null, null));
Assert.Equal(9 + 4, cp2);
Array.Clear(array);
var p3 = new Rectangle2D(max, max, max, max);
Assert.True(p3.TryFormat(array, out var cp3, null, null));
Assert.Equal(9 + 4 * 10, cp3);
Array.Clear(array);
var p4 = new Rectangle2D(min, min, min, min);
Assert.True(p4.TryFormat(array, out var cp4, null, null));
Assert.Equal(9 + 4 * 11, cp4);
}
[Fact]
public void TestRectangle2DTryFormatFails()
{
const int max = int.MaxValue;
const int min = int.MinValue;
char[] array = new char[1];
var p1 = new Rectangle2D(0, 0, 0, 0);
Assert.False(p1.TryFormat(array, out var cp1, null, null));
Assert.Equal(0, cp1);
Array.Clear(array);
var p2 = new Rectangle2D(1, 1, 1, 1);
Assert.False(p2.TryFormat(array, out var cp2, null, null));
Assert.Equal(0, cp2);
Array.Clear(array);
var p3 = new Rectangle2D(max, max, max, max);
Assert.False(p3.TryFormat(array, out var cp3, null, null));
Assert.Equal(0, cp3);
Array.Clear(array);
var p4 = new Rectangle2D(min, min, min, min);
Assert.False(p4.TryFormat(array, out var cp4, null, null));
Assert.Equal(0, cp4);
}
[Fact]
public void TestRectangle2DTryParse()
{
// Happy Path
Assert.True(Rectangle2D.TryParse("(101, 23)+(55, 89)", null, out var p));
Assert.Equal(new Rectangle2D(new Point2D(101, 23), new Point2D(55, 89)), p);
Assert.Equal(new Rectangle2D(new Point2D(101, 23), new Point2D(55, 89)), Rectangle2D.Parse("(101, 23)+(55, 89)", null));
// Trimming
Assert.True(Rectangle2D.TryParse(" (101,23)+ (55, 89) ", null, out p));
Assert.Equal(new Rectangle2D(new Point2D(101, 23), new Point2D(55, 89)), p);
Assert.Equal(new Rectangle2D(new Point2D(101, 23), new Point2D(55, 89)), Rectangle2D.Parse(" (101,23)+ (55, 89) ", null));
// No parenthesis
Assert.False(Rectangle2D.TryParse("101, 23)+( 55, 89)", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("101, 23)+( 55, 89)", null));
Assert.False(Rectangle2D.TryParse("(101, 23)+(55, 89", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("(101, 23)+(55, 89", null));
// No numbers
Assert.False(Rectangle2D.TryParse("()", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("()", null));
Assert.False(Rectangle2D.TryParse("(,)", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("(,)", null));
Assert.False(Rectangle2D.TryParse("(|)", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("(|)", null));
Assert.False(Rectangle2D.TryParse("(101)", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("(101)", null));
Assert.False(Rectangle2D.TryParse("(101,)", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("(101,)", null));
Assert.False(Rectangle2D.TryParse("(,23)", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("(,23)", null));
Assert.False(Rectangle2D.TryParse("(,23)+(,55)", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("(,23)+(,55)", null));
Assert.False(Rectangle2D.TryParse("(,23,)+(,89)", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("(,23,)+(,89)", null));
Assert.False(Rectangle2D.TryParse("(,,)+(55,89)", null, out p));
Assert.Equal(default, p);
Assert.Throws<FormatException>(() => Rectangle2D.Parse("(,,)+(55,89)", null));
}
}