Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Collection range indices #94

Merged
merged 5 commits into from
Oct 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using BenchmarkDotNet.Attributes;
using Light.GuardClauses.FrameworkExtensions;

namespace Light.GuardClauses.Performance.CollectionAssertions;

public class ListCountBenchmark
{
public List<int> List;

// ReSharper disable once UnusedAutoPropertyAccessor.Global
[Params(100, 1000)]
public int NumberOfItems { get; set; }

[GlobalSetup]
public void Setup() => List = Enumerable.Range(1, NumberOfItems).ToList();

// ReSharper disable once UseCollectionCountProperty
[Benchmark(Baseline = true)]
public int LinqCount() => List.Count();

[Benchmark]
public int ExistingEnumerableCount() => EnumerableExtensions.Count(List);

[Benchmark]
public int NewEnumerableOfTGetCount() => List.GetCount();
}

public class StringCountBenchmark
{
public string String;

// ReSharper disable once UnusedAutoPropertyAccessor.Global
[Params(100, 1000)]
public int NumberOfItems { get; set; }

[GlobalSetup]
public void Setup()
{
var random = new Random(42);
var array = new char[NumberOfItems];
for (var i = 0; i < array.Length; i++)
{
array[i] = (char) random.Next('a', 'z' + 1);
}

String = new (array);
}

// ReSharper disable once UseCollectionCountProperty
[Benchmark(Baseline = true)]
public int LinqCount() => String.Count();

[Benchmark]
public int ExistingEnumerableCount() => EnumerableExtensions.Count(String);

[Benchmark]
public int NewEnumerableOfTGetCount() => String.GetCount();
}

public class MyImmutableArrayCountBenchmark
{
public MyImmutableArray<int> MyArray;

// ReSharper disable once UnusedAutoPropertyAccessor.Global
[Params(100, 1000)]
public int NumberOfItems { get; set; }

[GlobalSetup]
public void Setup() => MyArray = new (Enumerable.Range(1, NumberOfItems).ToArray());

// ReSharper disable once UseCollectionCountProperty
[Benchmark(Baseline = true)]
public int LinqCount() => MyArray.Count();

[Benchmark]
public int ExistingEnumerableCount() => EnumerableExtensions.Count(MyArray);

[Benchmark]
public int NewEnumerableOfTGetCount() => MyArray.GetCount();
}

public sealed class MyImmutableArray<T> : IReadOnlyList<T>
{
private readonly T[] _array;

public MyImmutableArray(T[] array) => _array = array;

public IEnumerator<T> GetEnumerator() => ((IEnumerable<T>) _array).GetEnumerator();

IEnumerator IEnumerable.GetEnumerator() => _array.GetEnumerator();

public int Count => _array.Length;

public T this[int index] => _array[index];
}
Original file line number Diff line number Diff line change
@@ -3,11 +3,12 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net7.0;net48</TargetFrameworks>
<LangVersion>11</LangVersion>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Light.GuardClauses\Light.GuardClauses.csproj" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.7" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.9" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Code/Light.GuardClauses.Performance/Program.cs
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ public static class Program
private static IConfig DefaultConfiguration =>
DefaultConfig
.Instance
.AddJob(Job.Default.WithRuntime(CoreRuntime.Core60))
.AddJob(Job.Default.WithRuntime(CoreRuntime.Core70))
.AddJob(Job.Default.WithRuntime(ClrRuntime.Net48))
.AddDiagnoser(MemoryDiagnoser.Default, new DisassemblyDiagnoser(new DisassemblyDiagnoserConfig()));

Original file line number Diff line number Diff line change
@@ -69,6 +69,6 @@ public static void CallerArgumentExpression()
Action act = () => myNumber.MustBeOneOf(Enumerable.Range(1, 10));

act.Should().Throw<ValueIsNotOneOfException>()
.And.ParamName.Should().Be(nameof(myNumber));
.WithParameterName(nameof(myNumber));
}
}
Original file line number Diff line number Diff line change
@@ -67,6 +67,6 @@ public static void CallerArgumentExpression()
var act = () => array.MustContain("Baz");

act.Should().Throw<MissingItemException>()
.And.ParamName.Should().Be(nameof(array));
.WithParameterName(nameof(array));
}
}
Original file line number Diff line number Diff line change
@@ -68,6 +68,6 @@ public static void CallerArgumentExpression()
Action act = () => collection.MustHaveCount(5);

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be(nameof(collection));
.WithParameterName(nameof(collection));
}
}
Original file line number Diff line number Diff line change
@@ -69,6 +69,6 @@ public static void CallerArgumentExpression()
var act = () => myCollection.MustHaveMaximumCount(2);

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be(nameof(myCollection));
.WithParameterName(nameof(myCollection));
}
}
Original file line number Diff line number Diff line change
@@ -70,6 +70,6 @@ public static void CallerArgumentExpression()
Action act = () => myCollection.MustHaveMinimumCount(5);

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be(nameof(myCollection));
.WithParameterName(nameof(myCollection));
}
}
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ public static void CollectionNull()
Action act = () => ((object[]) null).MustNotBeNullOrEmpty("Foo");

act.Should().Throw<ArgumentNullException>()
.And.ParamName.Should().Be("Foo");
.WithParameterName("Foo");
}

[Fact]
@@ -68,7 +68,7 @@ public static void CallerArgumentExpressionForEmptyCollection()
Action act = () => emptyArray.MustNotBeNullOrEmpty();

act.Should().Throw<EmptyCollectionException>()
.And.ParamName.Should().Be(nameof(emptyArray));
.WithParameterName(nameof(emptyArray));
}

[Fact]
@@ -80,6 +80,6 @@ public static void CallerArgumentExpressionForNull()
Action act = () => nullArray.MustNotBeNullOrEmpty();

act.Should().Throw<ArgumentNullException>()
.And.ParamName.Should().Be(nameof(nullArray));
.WithParameterName(nameof(nullArray));
}
}
Original file line number Diff line number Diff line change
@@ -67,6 +67,6 @@ public static void CallerArgumentExpression()
Action act = () => fortyTwo.MustNotBeOneOf(new[] { 42 });

act.Should().Throw<ValueIsOneOfException>()
.And.ParamName.Should().Be(nameof(fortyTwo));
.WithParameterName(nameof(fortyTwo));
}
}
Original file line number Diff line number Diff line change
@@ -73,6 +73,6 @@ public static void CallerArgumentExpression()
Action act = () => array.MustNotContain(3);

act.Should().Throw<ExistingItemException>()
.And.ParamName.Should().Be(nameof(array));
.WithParameterName(nameof(array));
}
}
Original file line number Diff line number Diff line change
@@ -85,6 +85,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("mySpan");
.WithParameterName("mySpan");
}
}
Original file line number Diff line number Diff line change
@@ -86,6 +86,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("span");
.WithParameterName("span");
}
}
Original file line number Diff line number Diff line change
@@ -84,6 +84,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("ultraSpan");
.WithParameterName("ultraSpan");
}
}
Original file line number Diff line number Diff line change
@@ -87,6 +87,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("mySpan");
.WithParameterName("mySpan");
}
}
Original file line number Diff line number Diff line change
@@ -89,6 +89,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("mySpan");
.WithParameterName("mySpan");
}
}
Original file line number Diff line number Diff line change
@@ -89,6 +89,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("mySpan");
.WithParameterName("mySpan");
}
}
Original file line number Diff line number Diff line change
@@ -85,6 +85,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("mySpan");
.WithParameterName("mySpan");
}
}
Original file line number Diff line number Diff line change
@@ -86,6 +86,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("span");
.WithParameterName("span");
}
}
Original file line number Diff line number Diff line change
@@ -84,6 +84,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("span");
.WithParameterName("span");
}
}
Original file line number Diff line number Diff line change
@@ -87,6 +87,6 @@ public static void CallerArgumentExpression()
};

act.Should().Throw<InvalidCollectionCountException>()
.And.ParamName.Should().Be("mySpan");
.WithParameterName("mySpan");
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using FluentAssertions;
using FluentAssertions;
using Light.GuardClauses.Exceptions;
using Xunit;

Original file line number Diff line number Diff line change
@@ -40,8 +40,8 @@ public static void EnumValueValid<T>(T enumValue) where T : Enum, IComparable
[InlineData(-2)]
[InlineData(-512)]
[InlineData(int.MinValue)]
[InlineData(1024)]
[InlineData(2048)]
[InlineData(2055)]
[InlineData(int.MaxValue)]
public static void InvalidNumberStyles(int invalidValue) => ((NumberStyles) invalidValue).IsValidEnumValue().Should().BeFalse();

Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ public static void ReferenceIsNull()
Action act = () => ((object) null).MustBeOfType<string>("Foo");

act.Should().Throw<ArgumentNullException>()
.And.ParamName.Should().Be("Foo");
.WithParameterName("Foo");
}

[Fact]
@@ -72,7 +72,7 @@ public static void CallerArgumentExpressionForTypeCastException()
Action act = () => someValue.MustBeOfType<Exception>();

act.Should().Throw<TypeCastException>()
.And.ParamName.Should().Be(nameof(someValue));
.WithParameterName(nameof(someValue));
}

[Fact]
@@ -84,6 +84,6 @@ public static void CallerArgumentExpressionForArgumentNullException()
Action act = () => myValue.MustBeOfType<string>();

act.Should().Throw<ArgumentNullException>()
.And.ParamName.Should().Be(nameof(myValue));
.WithParameterName(nameof(myValue));
}
}
4 changes: 2 additions & 2 deletions Code/Light.GuardClauses.Tests/CommonAssertions/MustBeTests.cs
Original file line number Diff line number Diff line change
@@ -85,7 +85,7 @@ public static void CallerArgumentExpression()
Action act = () => five.MustBe(4);

act.Should().Throw<ValuesNotEqualException>()
.And.ParamName.Should().Be(nameof(five));
.WithParameterName(nameof(five));
}

[Fact]
@@ -96,6 +96,6 @@ public static void CallerArgumentExpressionForEqualityComparerOverload()
Action act = () => seven.MustBe(1, new EqualityComparerStub<int>(false));

act.Should().Throw<ValuesNotEqualException>()
.And.ParamName.Should().Be(nameof(seven));
.WithParameterName(nameof(seven));
}
}
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ public static void CallerArgumentExpression()
Action act = () => someValue.MustBeValidEnumValue();

act.Should().Throw<EnumValueNotDefinedException>()
.And.ParamName.Should().Be(nameof(someValue));
.WithParameterName(nameof(someValue));
}
}

Original file line number Diff line number Diff line change
@@ -42,6 +42,6 @@ public static void CallerArgumentExpression()
Action act = () => nullable.MustHaveValue();

act.Should().Throw<NullableHasNoValueException>()
.And.ParamName.Should().Be(nameof(nullable));
.WithParameterName(nameof(nullable));
}
}
Original file line number Diff line number Diff line change
@@ -94,7 +94,7 @@ public static void CallerArgumentExpression()
Action act = () => someParameter.MustNotBeDefault();

act.Should().Throw<ArgumentDefaultException>()
.And.ParamName.Should().Be(nameof(someParameter));
.WithParameterName(nameof(someParameter));
}

}
Loading