Given the following example code, how can I configure Pex to respect my Code Contracts?

    public static IEnumerable<User> Administrators(this UserGroup userGroup)
    {
        Contract.Requires(userGroup != null);
        Contract.Requires(userGroup.UserList != null);

        return userGroup.UserList.Where(ul => ul.IsAdmin == true);
    }

Current Problem: When I run Pex, it's still generating test cases which violate the specified code contracts.

FYI: Here are the 'Code Contracts' settings in my csproj file.


EDIT: Did something break in SP1?

link|improve this question

Have you tried emailing them? pexbug@microsoft.com – Porges May 26 '11 at 22:51
1  
I think this is a bug. John Nicholas' solution works, but it is still not correct behavior for PEX. The point of using code contracts with pex was that PEX automatically picked up on the code contracts and treated their failure as expected behavior or a passing test. – Joshua Dale Jul 1 '11 at 22:24
feedback

3 Answers

up vote 3 down vote accepted

First you need to use a typed version of Requires

use ArgumentNullException as T

Also in you project properties you need to tell code cotracts to use the standard rewriter. DO NOT click assert on failure ;)

Contract.Requires<ArgumentNullException>(i != null);

then your code will throw an argumetn null exception and pex can add an attribute to your pexmethod to say that it is allowed to throw it and will create a passing test that throws the exception

you can then promote those and save the unit tests

link|improve this answer
+1: Many thanks!! That 'Assert on Failure' setting tripped me up big time. – Jim G. Jun 24 '11 at 17:40
1  
yeah spent a few hours smashing face into keyboard on that one myself ;) – John Nicholas Jun 25 '11 at 11:08
feedback

It violates the contracts on purpose to verify that an exception is thrown when the contract is violated. A lot of people will compile away the Requires methods in the Release build where some would say the edge cases should still be handled. It is also possible to write a custom contract failure handler which might not throw an exception or assertion failure. If you have a custom contract failure handler that doesn't prevent further execution you might cause even larger problems to happen further down the line.

What Pex does do is write the tests that violate a contract so that it passes when an exception is thrown.

TL/DR You shouldn't worry about it.

link|improve this answer
Thanks for the information, Bryan. Just curious though - Is there a way that I can tell Pex to expect the exception and to mark that test green when it violates the contract? – Jim G. May 27 '11 at 14:52
Pex should mark the test green when it violates the contract automatically if the contract throws an assertion or exception. – Bryan Anderson May 27 '11 at 14:56
It should, but I think the current implementation is broken. I am having an issue with it currently. stackoverflow.com/questions/5845610/… – Joshua Dale Jun 22 '11 at 3:17
@Joshua Dale: @John Nicholas solution worked for me. Please give it a shot. – Jim G. Jun 24 '11 at 17:46
1  
That is a fix, but it is still not correct behavior. The tests should automatically pick up the code contracts and treat failures as expected behavior. – Joshua Dale Jul 1 '11 at 22:20
feedback

I had the same problem. There are two things:

1) Check that Run-time rewriting is enabled (as John suggests)

2) Make sure that your test class is decorated with [PexClass(typeof(MyClass))]

I have written the test manually so I have forgot that PexClass attribute and the contracts were treated as regular exceptions by Pex - so they were failing.

Honza

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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