vote up 8 vote down star

Hi,

I've just started skimming 'Debugging MS .Net 2.0 Applications' by John Robbins, and have become confused by his evangelism for Debug.Assert(...).

He points out that well-implemented Asserts store the state, somewhat, of an error condition, e.g.:

Debug.Assert(i > 3, "i > 3", "This means I got a bad parameter");

Now, personally, it seems crazy to me that he so loves restating his test without an actual sensible 'business logic' comment, perhaps "i <= 3 must never happen because of the flobittyjam widgitification process".

So, I think I get Asserts as a kind-of low-level "Let's protect my assumptions" kind of thing... assuming that one feels this is a test one only needs to do in debug - i.e. you are protecting yourself against colleague and future programmers, and hoping that they actually test things.

But what I don't get is, he then goes on to say that you should use assertions in addition to normal error handling; now what I envisage is something like this:

Debug.Assert(i > 3, "i must be greater than 3 because of the flibbity widgit status");
if (i <= 3)
{
    throw new ArgumentOutOfRangeException("i", "i must be > 3 because... i=" + i.ToString());
}

What have I gained by the Debug.Assert repetition of the error condition test? I think I'd get it if we were talking about debug-only double-checking of a very important calculation...

double interestAmount = loan.GetInterest();
Debug.Assert(debugInterestDoubleCheck(loan) == interestAmount, "Mismatch on interest calc");

...but I don't get it for parameter tests which are surely worth checking (in both DEBUG and Release builds)... or not. What am I missing?

flag

67% accept rate

9 Answers

vote up 16 vote down check

Assertions are not for parameter checking. Parameter checking should always be done (and precisely according to what pre-conditions are specified in your documentation and/or specification), and the ArgumentOutOfRangeException thrown as necessary.

Assertions are for testing for "impossible" situations, i.e., things that you (in your program logic) assume are true. The assertions are there to tell you if these assumptions are broken for any reason.

Hope this helps!

link|flag
1  
Assertions can be used for parameter checking of internal method calls (called by code belonging to the same component) methods, as opposed to external method calls (called by another component). For example, I might assert that a private method parameter of type Double isn't a NaN. – RoadWarrior Oct 31 '08 at 11:48
@Chris: You state that Assertions are not to be used for parameter checking. Is there a reason for this? I tend to throw exceptions for parameter checks especially in constructors when I inject dependent objects. However I'm being told to use Assertions. I don't have a logical explanation to using exceptions rather than assertions. Are you able to clarify? Cheers – Gavin Chin Sep 23 at 6:41
Don't worry I found out why. According to Jon Skeet, stackoverflow.com/questions/1276308/…: "Use assertions for internal logic checks within your code, and normal exceptions for error conditions outside your immediate code's control." – Gavin Chin Sep 23 at 7:06
vote up 6 vote down

There is a communication aspect to asserts vs exception throwing.

Let's say we have a User class with a Name property and a ToString method.

If ToString is implemented like this:

public string ToString()
{
     Debug.Assert(Name != null);
     return Name;
}

It says that Name should never null and there is a bug in the User class if it is.

If ToString is implement like this:

public string ToString()
{
     if ( Name == null )
     {
          throw new InvalidOperationException("Name is null");
     }

     return Name;
}

It says that the caller is using ToString incorrectly if Name is null and should check that before calling.

The implementation with both

public string ToString()
{
     Debug.Assert(Name != null);
     if ( Name == null )
     {
          throw new InvalidOperationException("Name is null");
     }

     return Name;
}

says that if Name is null there bug in the User class, but we want to handle it anyway. (The user doesn't need to check Name before calling.) I think this is the kind of safety Robbins was recommending.

link|flag
vote up 2 vote down

I use explicit checks that throw exceptions on public and protected methods and assertions on private methods.

Usually, the explicit checks guard the private methods from seeing incorrect values anyway. So really, the assert is checking for a condition that should be impossible. If an assert does fire, it tells me the there is a defect in the validation logic contained within one of the public routines on the class.

link|flag
vote up 2 vote down

An exception can be caught and swallowed making the error invisible to testing. That can't happen with Debug.Assert.

No one should ever have a catch handler that catches all exceptions, but people do it anyway, and sometimes it is unavoidable. If your code is invoked from COM, the interop layer catches all exceptions and turns them into COM error codes, meaning you won't see your unhandled exceptions. Asserts don't suffer from this.

Also when the exception would be unhandled, a still better practice is to take a mini-dump. One area where VB is more powerful than C# is that you can use an exception filter to snap a mini-dump when the exception is in flight, and leave the rest of the exception handling unchanged. Gregg Miskelly's blog post on exception filter inject provides a useful way to do this from c#.

One other note on assets ... they inteact poorly with Unit testing the error conditions in your code. It is worthwhile to have a wrapper to turn off the assert for your unit tests.

link|flag
vote up 1 vote down

IMO it's a loss of development time only. Properly implemented exception gives you a clear picture of what happened. I saw too much applications showing obscure "Assertion failed: i < 10" errors. I see assertion as a temporary solution. In my opinion no assertions should be in a final version of a program. In my practice I used assertions for quick and dirty checks. Final version of the code should take erroneous situation into account and behave accordingly. If something bad happens you have 2 choices: handle it or leave it. Function should throw an exception with meaningful description if wrong parameters passed in. I see no points in duplication of validation logic.

link|flag
vote up -1 vote down

Thansk to all for your thoughts - it seems like I wasn't missing anything, and the feedback (at least so far) suggests that the book I'm reading may be offering some unusual guidance. Maybe it's even wrong ;)

@Simon - I believe I understand your distinction, but would guess that the intention behind what you're saying is the undelying assumption that you have tested your 'user' input in a public method... I'm looking at a routine right now where the inputs are passed to a private method to be parsed. In other words, dangerous values could still exist in private calls. (depending on so many factors etc etc).

link|flag
Yes, I meant it as a rule of thumb. Clearly, if you want hand off validation functions to private methods you had better put explicit error checking in them. – Simon Johnson Sep 14 '08 at 11:03
vote up -1 vote down

@hwiechers: I take your point re: different implied meanings to the two forms of raising the issue, however I would argue that the wish to handle the error trumps the flagging of an internal inconsistency, and that only one need be applied.

Additionally, say the issue ever does come up from live, reproducing the error in test now results in a different error response, not the same one as live, which could in turn lead to confusion... though granted probably much less than if no checks had been applied ;)

link|flag
vote up -1 vote down

Thanks for your input Steve,

Your comments were thought-provoking - especially in relation to Asserts not being caught by overzealous catch statements. The link provided is a bit beyond me right now - but hopefully I'll be able to start learning WinDbg and SOS in the near future... my PC crashed with a BSOD as I was writing my first resonse here... so I have other things to worry about right now ;)

link|flag

Your Answer

Get an OpenID
or

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