mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
209 lines
7.7 KiB
209 lines
7.7 KiB
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="GuardTests.cs" company="James Jackson-South">
|
|
// Copyright © James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
// <summary>
|
|
// Tests the <see cref="Guard" /> helper.
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace ImageProcessorCore.Tests.Helpers
|
|
{
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
using Xunit;
|
|
|
|
/// <summary>
|
|
/// Tests the <see cref="Guard"/> helper.
|
|
/// </summary>
|
|
public class GuardTests
|
|
{
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.NotNull"/> method throws when the argument is null.
|
|
/// </summary>
|
|
[Fact]
|
|
public void NotNullThrowsWhenArgIsNull()
|
|
{
|
|
Assert.Throws<ArgumentNullException>(() => Guard.NotNull(null, "foo"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.NotNull"/> method throws when the argument name is empty.
|
|
/// </summary>
|
|
[Fact]
|
|
public void NotNullThrowsWhenArgNameEmpty()
|
|
{
|
|
Assert.Throws<ArgumentNullException>(() => Guard.NotNull(null, string.Empty));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.NotEmpty"/> method throws when the argument is empty.
|
|
/// </summary>
|
|
[Fact]
|
|
[SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1122:UseStringEmptyForEmptyStrings", Justification = "Reviewed. Suppression is OK here.")]
|
|
public void NotEmptyThrowsWhenEmpty()
|
|
{
|
|
Assert.Throws<ArgumentException>(() => Guard.NotNullOrEmpty("", string.Empty));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.NotEmpty"/> method throws when the argument is whitespace.
|
|
/// </summary>
|
|
[Fact]
|
|
public void NotEmptyThrowsWhenWhitespace()
|
|
{
|
|
Assert.Throws<ArgumentException>(() => Guard.NotNullOrEmpty(" ", string.Empty));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.NotEmpty"/> method throws when the argument name is null.
|
|
/// </summary>
|
|
[Fact]
|
|
public void NotEmptyThrowsWhenParameterNameNull()
|
|
{
|
|
Assert.Throws<ArgumentNullException>(() => Guard.NotNullOrEmpty(null, null));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThan"/> method throws when the argument is greater.
|
|
/// </summary>
|
|
[Fact]
|
|
public void LessThanThrowsWhenArgIsGreater()
|
|
{
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => Guard.MustBeLessThan(1, 0, "foo"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThan"/> method throws when the argument is equal.
|
|
/// </summary>
|
|
[Fact]
|
|
public void LessThanThrowsWhenArgIsEqual()
|
|
{
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => Guard.MustBeLessThan(1, 1, "foo"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThanOrEqual"/> method throws when the argument is greater.
|
|
/// </summary>
|
|
[Fact]
|
|
public void LessThanOrEqualToThrowsWhenArgIsGreater()
|
|
{
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => Guard.MustBeLessThanOrEqualTo(1, 0, "foo"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThanOrEqual"/> method does not throw when the argument
|
|
/// is less.
|
|
/// </summary>
|
|
[Fact]
|
|
public void LessThanOrEqualToDoesNotThrowWhenArgIsLess()
|
|
{
|
|
Exception ex = Record.Exception(() => Guard.MustBeLessThanOrEqualTo(0, 1, "foo"));
|
|
Assert.Null(ex);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThanOrEqual"/> method does not throw when the argument
|
|
/// is equal.
|
|
/// </summary>
|
|
[Fact]
|
|
public void LessThanOrEqualToDoesNotThrowWhenArgIsEqual()
|
|
{
|
|
Exception ex = Record.Exception(() => Guard.MustBeLessThanOrEqualTo(1, 1, "foo"));
|
|
Assert.Equal(1, 1);
|
|
Assert.Null(ex);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThan"/> method throws when the argument is greater.
|
|
/// </summary>
|
|
[Fact]
|
|
public void GreaterThanThrowsWhenArgIsLess()
|
|
{
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => Guard.MustBeGreaterThan(0, 1, "foo"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThan"/> method throws when the argument is greater.
|
|
/// </summary>
|
|
[Fact]
|
|
public void GreaterThanThrowsWhenArgIsEqual()
|
|
{
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => Guard.MustBeGreaterThan(1, 1, "foo"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThan"/> method throws when the argument name is greater.
|
|
/// </summary>
|
|
[Fact]
|
|
public void GreaterThanOrEqualToThrowsWhenArgIsLess()
|
|
{
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => Guard.MustBeGreaterThanOrEqualTo(0, 1, "foo"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThanOrEqual"/> method does not throw when the argument
|
|
/// is less.
|
|
/// </summary>
|
|
[Fact]
|
|
public void GreaterThanOrEqualToDoesNotThrowWhenArgIsGreater()
|
|
{
|
|
Exception ex = Record.Exception(() => Guard.MustBeGreaterThanOrEqualTo(1, 0, "foo"));
|
|
Assert.Null(ex);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeLessThanOrEqual"/> method does not throw when the argument
|
|
/// is equal.
|
|
/// </summary>
|
|
[Fact]
|
|
public void GreaterThanOrEqualToDoesNotThrowWhenArgIsEqual()
|
|
{
|
|
Exception ex = Record.Exception(() => Guard.MustBeGreaterThanOrEqualTo(1, 1, "foo"));
|
|
Assert.Equal(1, 1);
|
|
Assert.Null(ex);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeBetweenOrEqualTo"/> method throws when the argument is less.
|
|
/// </summary>
|
|
[Fact]
|
|
public void BetweenOrEqualToThrowsWhenArgIsLess()
|
|
{
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => Guard.MustBeBetweenOrEqualTo(-2, -1, 1, "foo"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeBetweenOrEqualTo"/> method throws when the argument is greater.
|
|
/// </summary>
|
|
[Fact]
|
|
public void BetweenOrEqualToThrowsWhenArgIsGreater()
|
|
{
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => Guard.MustBeBetweenOrEqualTo(2, -1, 1, "foo"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeBetweenOrEqualTo"/> method does not throw when the argument
|
|
/// is equal.
|
|
/// </summary>
|
|
[Fact]
|
|
public void BetweenOrEqualToDoesNotThrowWhenArgIsEqual()
|
|
{
|
|
Exception ex = Record.Exception(() => Guard.MustBeBetweenOrEqualTo(1, 1, 1, "foo"));
|
|
Assert.Null(ex);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tests that the <see cref="M:Guard.MustBeBetweenOrEqualTo"/> method does not throw when the argument
|
|
/// is equal.
|
|
/// </summary>
|
|
[Fact]
|
|
public void BetweenOrEqualToDoesNotThrowWhenArgIsBetween()
|
|
{
|
|
Exception ex = Record.Exception(() => Guard.MustBeBetweenOrEqualTo(0, -1, 1, "foo"));
|
|
Assert.Null(ex);
|
|
}
|
|
}
|
|
}
|
|
|