Testing for a deadlock with nUnit - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T03:58:05Zhttp://stackoverflow.com/feeds/question/472700http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/472700/testing-for-a-deadlock-with-nunit3Testing for a deadlock with nUnitfrou2009-01-23T12:25:01Z2009-01-23T12:54:02Z
<p>Hello - I'm new to unit testing and nUnit (2.48). I'd like to write a test method where the failure case is that it deadlocks. Is this possible? Obviously nUnit doesn't know by default how long the method should take to execute, so would I have to write code to do the work on a separate thread and then abort it and throw and exception if it took longer than some time I define? Is there a better way to do this?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/472700/testing-for-a-deadlock-with-nunit/472731#4727312Answer by Mark Heath for Testing for a deadlock with nUnitMark Heath2009-01-23T12:38:11Z2009-01-23T12:38:11Z<p>Well its certainly possible to test for a deadlock by running your code on another thread and seeing if it returns in a timely fashion. Here's some (very basic) example code:</p>
<pre><code>[TestFixture]
public class DeadlockTests
{
[Test]
public void TestForDeadlock()
{
Thread thread = new Thread(ThreadFunction);
thread.Start();
if (!thread.Join(5000))
{
Assert.Fail("Deadlock detected");
}
}
private void ThreadFunction()
{
// do something that causes a deadlock here
Thread.Sleep(10000);
}
}
</code></pre>
<p>I wouldn't like to say that this is the "best way", but it is one I have found useful on occasions.</p>
http://stackoverflow.com/questions/472700/testing-for-a-deadlock-with-nunit/472735#4727353Answer by Mendelt for Testing for a deadlock with nUnitMendelt2009-01-23T12:39:44Z2009-01-23T12:39:44Z<p>It is possible but it might not be the best thing to do. Unit tests aren't really suitable for testing concurrency behaviour, unfortunately there aren't many test-methods that are suitable.</p>
<p>NUnit doesnt do anything with threads. You could write tests that start several threads and then test their interaction. But these would start to look more like integration tests than unit tests.</p>
<p>Another problem is that deadlock behaviour usually depends on the order threads are scheduled in. So it would be hard to write a conclusive test to test a certain deadlock issue because you don't have any control over the thread scheduling, this is done by the OS. You could end up with tests that sometimes fail on multicore processors but always succeed on single core processors.</p>
http://stackoverflow.com/questions/472700/testing-for-a-deadlock-with-nunit/472742#4727422Answer by Martin Moser for Testing for a deadlock with nUnitMartin Moser2009-01-23T12:43:31Z2009-01-23T12:43:31Z<p>Take a look at the Microsoft Project called "Chess".
It is designed to find concurred bugs <a href="http://research.microsoft.com/en-us/projects/chess/" rel="nofollow">http://research.microsoft.com/en-us/projects/chess/</a></p>
http://stackoverflow.com/questions/472700/testing-for-a-deadlock-with-nunit/472756#4727562Answer by David Schmitt for Testing for a deadlock with nUnitDavid Schmitt2009-01-23T12:47:42Z2009-01-23T12:47:42Z<p>Deadlock detection is equivalent to the <a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">halting problem</a>, and therefore currently not solvable in the general case.</p>
<p>If you have a specific problem to guard against, there might be specific hacks to get at least a modicum of security. Be aware though, that this can only be a hack and never 100%. For example such a test might always pass on the development machine but never on the production machine.</p>
http://stackoverflow.com/questions/472700/testing-for-a-deadlock-with-nunit/472760#4727603Answer by bitschnau for Testing for a deadlock with nUnitbitschnau2009-01-23T12:48:18Z2009-01-23T12:54:02Z<p>To test for a deadlock, you must implement a state graph and a check for cycles in your current state graph in the unit test. The state graph consists of the ressources as nodes and the dependencies as edges.
I have no idea of the implementation of such a thing, but thats the theory.</p>
<p>A unit test tests for the correctness of the in and output of data (mainly for the later point) and not for the correctness of the execution flow of your application.</p>
<p>Markus Heath idea seems reasonable, but is academically wrong.</p>