vote up 0 vote down star

I'm working on a DAL method that uses an ORDER BY clause in a SELECT. The return value from the method is an IEnumerable<T>, where T is a class that encapsulates a domain entity, and the sort order would be based on one of the properties of this class, namely, "Priority." It's important that this ORDER BY works, of course, so I want to write a sort verification into the unit test for this method. Does anyone have a quick and simple algorithm for testing the order of an IEnumerable<T> based on one of the properties of T? Is there something LINQ-y that I can use?

var items = repository.GetItems(true);   //true tells it to use the ORDER BY
items.ToList().ForEach(i => Assert.IsTrue(??What happens here??));

Thanks in advance.

flag

3  
Be careful that you're not testing things that don't need to be tested. Are you ensuring that the query contains the expected order by clause, or are you merely checking to see that the order by clause works? The latter is wasteful. – Chris Nov 4 at 20:04
@Chris - this is a good point (+1), and I wondered the same thing when I was asking the question. Why would you say that testing the order by is wasteful? Should I then simply trust the DB engine and the CLR to keep things straight? – AJ Nov 4 at 20:09
1  
@PITADev: Yes, you should absolutely trust that the DB engine and the CLR keep things straight. You're not testing that int x = 2, y = 2, z = x + y has Assert.IsTrue(z == 4)' succeed are you? You should unit test the behavior of your public methods and nothing more. So if the expected behavior of repository.GetItems(true) returns an ordered list of items, then test that. But don't test that items.OrderBy(x => x, new YourComparer()) does indeed sort the list. However, do unit test that YourComparer does indeed compare correctly. – Jason Nov 4 at 21:01
Thanks all for your guidance. – AJ Nov 4 at 21:57

3 Answers

vote up 1 vote down check

How about:

var list = items.ToList();
for(int i = 1; i < list.Count; i++) {
    Assert.IsTrue(yourComparer.Compare(list[i - 1], list[i]) <= 0);
}

where yourComparer is an instance of YourComparer which implements IComparer<YourBusinessObject>. This ensures that every element is less than the next element in the enumeration.

link|flag
vote up 0 vote down

Something LINQ-y would be to use a separate sorted query...

var sorted = from item in items
 orderby item.Priority
 select item;

Assert.IsTrue(items.SequenceEquals(sorted));

Type inference means you'd need a

 where T : IHasPriority

However, if you have multiple items of the same priority, then for a unit test assertion you're probably best off just looping with the list index as Jason suggested.

link|flag
vote up 0 vote down

You could do another OrderBy and then compare the results.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.