Itino.Assurance 1.0.0

dotnet add package Itino.Assurance --version 1.0.0
NuGet\Install-Package Itino.Assurance -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Itino.Assurance" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Itino.Assurance --version 1.0.0
#r "nuget: Itino.Assurance, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Itino.Assurance as a Cake Addin
#addin nuget:?package=Itino.Assurance&version=1.0.0

// Install Itino.Assurance as a Cake Tool
#tool nuget:?package=Itino.Assurance&version=1.0.0

Itino.Assurance Overview

A tiny validation library that simplifies arguments' and an application state's validation.

Usage Examples

For all argument validation failures ("Assure.Argument") the "System.ArgumentException" exception is thrown with the message that includes a variable name automatically obtained from the context. Other exception types and the "fluent" interface is supported.

String Arguments Validation

void TextValidationExample(string textArgument)
{
    Assure.Argument.NotWhiteSpace(textArgument);
}

TextValidationExample(""); // The exception's message: "The string 'textArgument' cannot be blank.".

Comparison

Multiple arguments:

void ComparableValidationExample(int positiveArgument, int negativeOrZeroArgument)
{
    Assure.Argument
        .GreaterThan(positiveArgument, 0)
        .LessThanOrEqual(negativeOrZeroArgument, 0);
}

ComparableValidationExample(-5, 4); // The exception's message: "The 'positiveArgument' value '-5' is less than '0'.".

ComparableValidationExample(2, 3); // The exception's message: "The 'negativeOrZeroArgument' value '3' is greater than '0'.".

Range validation:

void RangeValidationExample(int inRangeArgument)
{
    Assure.Argument
        .GreaterThanOrEqual(inRangeArgument, 3)
        .LessThan(inRangeArgument, 7);
}

RangeValidationExample(2); // The exception's message: "The 'inRangeArgument' value '2' is less than '3'.".

RangeValidationExample(9); // The exception's message: "The 'inRangeArgument' value '9' is greater than '7'.".

Collections/arrays validation:

void NotEmptyValidationExample(IReadOnlyCollection<int> collectionArgument)
{
    Assure.Argument.NotEmpty(collectionArgument);
}

NotEmptyValidationExampleExample([]); // The exception's message: "The collection 'collectionArgument' is empty.".
void EmptyValidationExample(int[] arrayArgument)
{
    Assure.Argument.Empty(arrayArgument);
}

EmptyValidationExample(new int[1]); // The exception's message: "The array 'arrayArgument' is not empty.".

File system validation:

void DirectoryDoesNotExistValidationExample(string directoryPathArgument)
{
    Assure.Argument.DirectoryDoesNotExist(directoryPathArgument);
}

DirectoryDoesNotExistValidationExample("C:/temp"); // If the directory exists, the code throws the "System.ArgumentException" exception with the message: "The 'directoryPathArgument' directory exists: 'C:/temp'.".
void FileExistsValidationExample(string filePathArgument)
{
    Assure.Argument.FileExists(filePathArgument);
}

FileExistsValidationExample("C:/non-existing/file.path"); // If the file does not exists, the code throws the "System.IO.FileNotFoundException" exception with the message: "The 'filePathArgument' file not found: 'C:/non-existing/file.path'.".

Application flow validation:

Assure.Operation.NotReached(); // If the code is reached, it throws the "System.InvalidOperationException" exception with the message: "The statement is not supposed to be reached.".

Chained validation:

void ChainedValidationExample(string directoryPath)
{
    Assure.Argument
        .NotWhiteSpace(directoryPath)
        .DirectoryExists(directoryPath);
}

ChainedValidationExample("   "); // Throws the "System.ArgumentException" exception with the message: "The string 'directoryPath' cannot be blank.".

ChainedValidationExample("C:/non-existing-directory/path"); // Throws the "System.IO.DirectoryNotFoundException" exception with the message: "The 'directoryPath' directory not found: 'C:/non-existing-directory/path'.".

Multiple arguments:

void ChainedMultipleArgumentsValidationExample(string argument1, int argument2, int[] argument3)
{
    Assure.Argument
        .NotWhiteSpace(argument1)
        .GreaterThanOrEqual(argument2, 0)
        .NotEmpty(argument3);
}

Single line assignment:

void SingleLineAssignmentExample(string textArgument, int intArgument)
{
    var textVariable = Assure.Argument.NotWhiteSpace(textArgument).Value;

    SomeMethod(Assure.Argument.GreaterThan(intArgument, 0));
}

Custom exceptions:

void CustomExceptionExample(int intArgument)
{
    Assure
        .WithException(message => new ArgumentOutOfRangeException(message))
        .LessThan(intArgument, 5);
}

CustomExceptionExample(8); // Throws the "System.ArgumentOutOfRangeException" with the message: "Specified argument was out of the range of valid values. (Parameter 'The 'intArgument' value '8' is greater than '5'.')".

Predefined Exception Types And Keywords

Assure.Is.NotWhiteSpace(argument); // Throws "Itino.Assurance.AssuranceException".
Assure.That.NotWhiteSpace(argument); // Throws "Itino.Assurance.AssuranceException" ("That" is an alias of "Is").
Assure.Argument.NotWhiteSpace(argument); // Throws "System.ArgumentException".
Assure.Operation.NotWhiteSpace(argument); // Throws "System.InvalidOperationException".
Assure.WithException(message => new NotSupportedException(message)).NotWhiteSpace(argument); // Throws "System.NotSupportedException".

Validation Functionality Custom Extensions

static class CustomValidationExtensions
{
    internal static readonly Func<string, string?, string, string> SpecificTextErrorMessage =
        (value, name, textToCompare) => $"The '{name}' value '{value}' is not equal to '{textToCompare}'.";

    static IAssuranceContext<TException, string> EqualToSpecificText<TException>(
        this IAssuranceContext<TException, string> context,
        string textToCompare)
        where TException : Exception
        => context.Assure(
            value => !value.Equals(textToCompare, StringComparison.InvariantCulture),
            (value, name) => SpecificTextErrorMessage(value, name, textToCompare));

    static IAssuranceContext<TException, string> EqualToSpecificText<TException>(
        this IAssuranceContext<TException> context,
        string value,
        string textToCompare,
        [CallerArgumentExpression(nameof(value))] string? name = null)
        where TException : Exception
        => context.WithValue(value, name).EqualToSpecificText(textToCompare);
}

// Usage

void CustomValidationExample(string textArgument)
{
    Assure.Argument.EqualToSpecificText(textArgument, "specific text to compare");
}

Assure.Is.EqualToSpecificText(text, "some text"); // Throws the "System.ArgumentException" exception with message "The 'textArgument' value 'some text' is not equal to 'specific text to compare'.".

// or

var textVariable = "some text";
Assure.Is.EqualToSpecificText(textVariable, "another text"); // Throws the "Itino.Assurance.AssuranceException" exception with the message "The 'textVariable' value 'some text' is not equal to 'another text'.".
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 72 4/17/2024