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

Add the SequenceEqual extension #97

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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
42 changes: 42 additions & 0 deletions ShittyLINQ/SequenceEqual.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace ShittyLINQ
{
public static partial class Extensions
{
public static bool SequenceEqual<T>(this IEnumerable<T> first, IEnumerable<T> second)
{
if (first.Count() != second.Count())
return false;

var areSequenceEquals = true;

for (int i = 0; i < first.Count(); i++)
{
areSequenceEquals &= (first.ElementAt(i).Equals(second.ElementAt(i)));
}

return areSequenceEquals;
}

public static bool SequenceEqual<T>(
this IEnumerable<T> first,
IEnumerable<T> second,
IEqualityComparer<T> comparer)
{
if (first.Count() != second.Count())
return false;

var areSequenceEquals = true;

for (int i = 0; i < first.Count(); i++)
{
areSequenceEquals &= (comparer.Equals(first.ElementAt(i), second.ElementAt(i)));
}

return areSequenceEquals;
}
}
}
93 changes: 93 additions & 0 deletions ShittyLinqTests/SequenceEqualTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using ShittyLINQ;
using System;
using System.Collections.Generic;
using System.Text;

namespace ShittyTests
{
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}

class ProductA
{
public string Name { get; set; }
public int Code { get; set; }
}

class ProductComparer : IEqualityComparer<ProductA>
{

public bool Equals(ProductA x, ProductA y)
{
if (ReferenceEquals(x, y)) return true;

return x != null && y != null && x.Code.Equals(y.Code) && x.Name.Equals(y.Name);
}

public int GetHashCode(ProductA obj)
{
int hashProductName = obj.Name == null ? 0 : obj.Name.GetHashCode();

int hashProductCode = obj.Code.GetHashCode();

return hashProductName ^ hashProductCode;
}
}

/// <summary>
/// The code for the tests is the same than in the Microsoft example
/// for the SequenceEqual extension
/// </summary>
[TestClass]
public class SequenceEqualTests
{
[TestMethod]
public void When_Two_List_Are_Fill_With_Same_Objects_Then_Should_Be_Equals()
{
var pet1 = new Pet { Name = "Turbo", Age = 2 };
var pet2 = new Pet { Name = "Peanut", Age = 8 };

var pets1 = new List<Pet> { pet1, pet2 };
var pets2 = new List<Pet> { pet1, pet2 };

var equal = pets1.SequenceEqual(pets2);

Assert.IsTrue(equal);
}

[TestMethod]
public void When_Two_List_Are_Fill_With_Same_Objects_But_Different_References_Then_Should_Be_Not_Equals()
{
var pet1 = new Pet() { Name = "Turbo", Age = 2 };
var pet2 = new Pet() { Name = "Peanut", Age = 8 };

// Create two lists of pets.
var pets1 = new List<Pet> { pet1, pet2 };
var pets2 =
new List<Pet> { new Pet { Name = "Turbo", Age = 2 },
new Pet { Name = "Peanut", Age = 8 } };

var equal = pets1.SequenceEqual(pets2);

Assert.IsFalse(equal);
}

[TestMethod]
public void When_Two_Lists_Are_Fill_With_Different_References_But_With_Comparer_Then_Should_Be_Equals()
{
ProductA[] storeA = { new ProductA { Name = "apple", Code = 9 },
new ProductA { Name = "orange", Code = 4 } };

ProductA[] storeB = { new ProductA { Name = "apple", Code = 9 },
new ProductA { Name = "orange", Code = 4 } };

bool equalAB = storeA.SequenceEqual(storeB, new ProductComparer());

Assert.IsTrue(equalAB);
}
}
}