Difference between revisions of "HUnit 1.0 User's Guide"

From HaskellWiki
Jump to navigation Jump to search
(Syntax highlighting for Haskell code)
m (remove stray “</p>”)
(3 intermediate revisions by 2 users not shown)
Line 5: Line 5:
 
== Introduction ==
 
== Introduction ==
   
A test-centered methodology for software development is most effective when tests are easy to create, change, and execute. The [http://www.junit.org JUnit] tool pioneered support for test-first development in [http://java.sun.com Java]. HUnit is an adaptation of JUnit to Haskell, a general-purpose, purely functional programming language. (To learn more about Haskell, see [http://www.haskell.org http://www.haskell.org].)
+
A test-centered methodology for software development is most effective when tests are easy to create, change, and execute. The [https://en.wikipedia.org/wiki/SUnit Sunit] tool pioneered support for test-first development in Smalltalk. HUnit is an adaptation of the unit testing framework to Haskell, a general-purpose, purely functional programming language. (To learn more about Haskell, see [http://www.haskell.org http://www.haskell.org].). Unit testing frameworks for various languages are referred to as [https://en.wikipedia.org/wiki/XUnit xUnit].
   
With HUnit, as with JUnit, you can easily create tests, name them, group them into suites, and execute them, with the framework checking the results automatically. Test specification in HUnit is even more concise and flexible than in JUnit, thanks to the nature of the Haskell language. HUnit currently includes only a text-based test controller, but the framework is designed for easy extension. (Would anyone care to write a graphical test controller for HUnit?)
+
With HUnit, as with [https://en.wikipedia.org/wiki/XUnit xUnit], you can easily create tests, name them, group them into suites, and execute them, with the framework checking the results automatically. HUnit currently includes only a text-based test controller, but the framework is designed for easy extension. (Would anyone care to write a graphical test controller for HUnit?)
   
 
The next section helps you get started using HUnit in simple ways. Subsequent sections give details on [[#Writing Tests | writing tests]] and [[#Running Tests | running tests]]. The document concludes with a section describing HUnit's [[#ConstituentFiles | constituent files]] and a section giving [[#References | references]] to further information.
 
The next section helps you get started using HUnit in simple ways. Subsequent sections give details on [[#Writing Tests | writing tests]] and [[#Running Tests | running tests]]. The document concludes with a section describing HUnit's [[#ConstituentFiles | constituent files]] and a section giving [[#References | references]] to further information.
Line 13: Line 13:
 
== Getting Started ==
 
== Getting Started ==
   
In the Haskell module where your tests will reside, import module <hask>Test.HUnit</hask>:
+
In the Haskell module where your tests will reside, import module <code>Test.HUnit</code>:
   
 
<haskell>
 
<haskell>
Line 23: Line 23:
 
<haskell>
 
<haskell>
 
test1 = TestCase (assertEqual "for (foo 3)," (1,2) (foo 3))
 
test1 = TestCase (assertEqual "for (foo 3)," (1,2) (foo 3))
test2 = TestCase (do (x,y) &lt;- partA 3
+
test2 = TestCase (do (x,y) <- partA 3
 
assertEqual "for the first result of partA," 5 x
 
assertEqual "for the first result of partA," 5 x
b &lt;- partB y
+
b <- partB y
 
assertBool ("(partB " ++ show y ++ ") failed") b)
 
assertBool ("(partB " ++ show y ++ ") failed") b)
 
</haskell>
 
</haskell>
Line 35: Line 35:
 
</haskell>
 
</haskell>
   
Run the tests as a group. At a Haskell interpreter prompt, apply the function <hask>runTestTT</hask> to the collected tests. (The "<hask>TT</hask>" suggests '''T'''ext orientation with output to the '''T'''erminal.)</p>
+
Run the tests as a group. At a Haskell interpreter prompt, apply the function <code>runTestTT</code> to the collected tests. (The "<code>TT</code>" suggests '''T'''ext orientation with output to the '''T'''erminal.)
   
 
<haskell>
 
<haskell>
Line 61: Line 61:
 
<haskell>
 
<haskell>
 
tests = test [ "test1" ~: "(foo 3)" ~: (1,2) ~=? (foo 3),
 
tests = test [ "test1" ~: "(foo 3)" ~: (1,2) ~=? (foo 3),
"test2" ~: do (x, y) &lt;- partA 3
+
"test2" ~: do (x, y) <- partA 3
 
assertEqual "for the first result of partA," 5 x
 
assertEqual "for the first result of partA," 5 x
 
partB y @? "(partB " ++ show y ++ ") failed" ]
 
partB y @? "(partB " ++ show y ++ ") failed" ]
Line 89: Line 89:
 
</haskell>
 
</haskell>
   
An assertion is an <hask>IO</hask> computation that always produces a void result. Why is an assertion an <hask>IO</hask> computation? So that programs with real-world side effects can be tested. How does an assertion assert anything if it produces no useful result? The answer is that an assertion can signal failure by calling <hask>assertFailure</hask>.
+
An assertion is an <code>IO</code> computation that always produces a void result. Why is an assertion an <code>IO</code> computation? So that programs with real-world side effects can be tested. How does an assertion assert anything if it produces no useful result? The answer is that an assertion can signal failure by calling <code>assertFailure</code>.
   
 
<haskell>
 
<haskell>
Line 96: Line 96:
 
</haskell>
 
</haskell>
   
<hask>(assertFailure msg)</hask> raises an exception. The string argument identifies the failure. The failure message is prefixed by "<hask>HUnit:</hask>" to mark it as an HUnit assertion failure message. The HUnit test framework interprets such an exception as indicating failure of the test whose execution raised the exception. (Note: The details concerning the implementation of <hask>assertFailure</hask> are subject to change and should not be relied upon.)
+
<code>(assertFailure msg)</code> raises an exception. The string argument identifies the failure. The failure message is prefixed by "<code>HUnit:</code>" to mark it as an HUnit assertion failure message. The HUnit test framework interprets such an exception as indicating failure of the test whose execution raised the exception. (Note: The details concerning the implementation of <code>assertFailure</code> are subject to change and should not be relied upon.)
   
<hask>assertFailure</hask> can be used directly, but it is much more common to use it indirectly through other assertion functions that conditionally assert failure.
+
<code>assertFailure</code> can be used directly, but it is much more common to use it indirectly through other assertion functions that conditionally assert failure.
   
 
<haskell>
 
<haskell>
Line 114: Line 114:
 
</haskell>
 
</haskell>
   
With <hask>assertBool</hask> you give the assertion condition and failure message separately. With <hask>assertString</hask> the two are combined. With <hask>assertEqual</hask> you provide a "preface", an expected value, and an actual value; the failure message shows the two unequal values and is prefixed by the preface. Additional ways to create assertions are described later under [[#Advanced Features | Advanced Features]].
+
With <code>assertBool</code> you give the assertion condition and failure message separately. With <code>assertString</code> the two are combined. With <code>assertEqual</code> you provide a "preface", an expected value, and an actual value; the failure message shows the two unequal values and is prefixed by the preface. Additional ways to create assertions are described later under [[#Advanced Features | Advanced Features]].
   
Since assertions are <hask>IO</hask> computations, they may be combined--along with other <hask>IO</hask> computations--using <hask>(>>=)</hask>, <hask>(>>)</hask>, and the <hask>do</hask> notation. As long as its result is of type <hask>(IO ())</hask>, such a combination constitutes a single, collective assertion, incorporating any number of constituent assertions. The important features of such a collective assertion are that it fails if any of its constituent assertions is executed and fails, and that the first constituent assertion to fail terminates execution of the collective assertion. Such behavior is essential to specifying a test case.
+
Since assertions are <code>IO</code> computations, they may be combined--along with other <code>IO</code> computations--using <code>(>>=)</code>, <code>(>>)</code>, and the <code>do</code> notation. As long as its result is of type <code>(IO ())</code>, such a combination constitutes a single, collective assertion, incorporating any number of constituent assertions. The important features of such a collective assertion are that it fails if any of its constituent assertions is executed and fails, and that the first constituent assertion to fail terminates execution of the collective assertion. Such behavior is essential to specifying a test case.
   
 
=== Test Case ===
 
=== Test Case ===
Line 122: Line 122:
 
A ''test case'' is the unit of test execution. That is, distinct test cases are executed independently. The failure of one is independent of the failure of any other.
 
A ''test case'' is the unit of test execution. That is, distinct test cases are executed independently. The failure of one is independent of the failure of any other.
   
A test case consists of a single, possibly collective, assertion. The possibly multiple constituent assertions in a test case's collective assertion are ''not'' independent. Their interdependence may be crucial to specifying correct operation for a test. A test case may involve a series of steps, each concluding in an assertion, where each step must succeed in order for the test case to continue. As another example, a test may require some "set up" to be performed that must be undone ("torn down" in JUnit parlance) once the test is complete. In this case, you could use Haskell's <hask>IO.bracket</hask> function to achieve the desired effect.
+
A test case consists of a single, possibly collective, assertion. The possibly multiple constituent assertions in a test case's collective assertion are ''not'' independent. Their interdependence may be crucial to specifying correct operation for a test. A test case may involve a series of steps, each concluding in an assertion, where each step must succeed in order for the test case to continue. As another example, a test may require some "set up" to be performed that must be undone ("torn down" in JUnit parlance) once the test is complete. In this case, you could use Haskell's <code>IO.bracket</code> function to achieve the desired effect.
   
You can make a test case from an assertion by applying the <hask>TestCase</hask> constructor. For example, <hask>(TestCase&nbsp;(return&nbsp;()))</hask> is a test case that never fails, and <hask>(TestCase&nbsp;assertEqual&nbsp;"for&nbsp;x,"&nbsp;3&nbsp;x))</hask> is a test case that checks that the value of <hask>x</hask> is 3. Additional ways to create test cases are described later under [[#Advanced Features | Advanced Features]].
+
You can make a test case from an assertion by applying the <code>TestCase</code> constructor. For example, <code>(TestCase&nbsp;(return&nbsp;()))</code> is a test case that never fails, and <code>(TestCase&nbsp;assertEqual&nbsp;"for&nbsp;x,"&nbsp;3&nbsp;x))</code> is a test case that checks that the value of <code>x</code> is 3. Additional ways to create test cases are described later under [[#Advanced Features | Advanced Features]].
   
 
=== Tests ===
 
=== Tests ===
Line 140: Line 140:
 
There are three important features of this definition to note:
 
There are three important features of this definition to note:
   
* A <hask>TestList</hask> consists of a list of tests rather than a list of test cases. This means that the structure of a <hask>Test</hask> is actually a tree. Using a hierarchy helps organize tests just as it helps organize files in a file system.
+
* A <code>TestList</code> consists of a list of tests rather than a list of test cases. This means that the structure of a <code>Test</code> is actually a tree. Using a hierarchy helps organize tests just as it helps organize files in a file system.
* A <hask>TestLabel</hask> is attached to a test rather than to a test case. This means that all nodes in the test tree, not just test case (leaf) nodes, can be labeled. Hierarchical naming helps organize tests just as it helps organize files in a file system.
+
* A <code>TestLabel</code> is attached to a test rather than to a test case. This means that all nodes in the test tree, not just test case (leaf) nodes, can be labeled. Hierarchical naming helps organize tests just as it helps organize files in a file system.
* A <hask>TestLabel</hask> is separate from both <hask>TestCase</hask> and <hask>TestList</hask>. This means that labeling is optional everywhere in the tree. Why is this a good thing? Because of the hierarchical structure of a test, each constituent test case is uniquely identified by its path in the tree, ignoring all labels. Sometimes a test case's path (or perhaps its subpath below a certain node) is a perfectly adequate "name" for the test case (perhaps relative to a certain node). In this case, creating a label for the test case is both unnecessary and inconvenient.
+
* A <code>TestLabel</code> is separate from both <code>TestCase</code> and <code>TestList</code>. This means that labeling is optional everywhere in the tree. Why is this a good thing? Because of the hierarchical structure of a test, each constituent test case is uniquely identified by its path in the tree, ignoring all labels. Sometimes a test case's path (or perhaps its subpath below a certain node) is a perfectly adequate "name" for the test case (perhaps relative to a certain node). In this case, creating a label for the test case is both unnecessary and inconvenient.
   
The number of test cases that a test comprises can be computed with <hask>testCaseCount</hask>.
+
The number of test cases that a test comprises can be computed with <code>testCaseCount</code>.
   
 
<haskell>
 
<haskell>
Line 159: Line 159:
 
</haskell>
 
</haskell>
   
Each occurrence of <hask>TestList</hask> gives rise to a <hask>ListItem</hask> and each occurrence of <hask>TestLabel</hask> gives rise to a <hask>Label</hask>. The <hask>ListItem</hask>s by themselves ensure uniqueness among test case paths, while the <hask>Label</hask>s allow you to add mnemonic names for individual test cases and collections of them.
+
Each occurrence of <code>TestList</code> gives rise to a <code>ListItem</code> and each occurrence of <code>TestLabel</code> gives rise to a <code>Label</code>. The <code>ListItem</code>s by themselves ensure uniqueness among test case paths, while the <code>Label</code>s allow you to add mnemonic names for individual test cases and collections of them.
   
 
Note that the order of nodes in a path is reversed from what you might expect: The first node in the list is the one deepest in the tree. This order is a concession to efficiency: It allows common path prefixes to be shared.
 
Note that the order of nodes in a path is reversed from what you might expect: The first node in the list is the one deepest in the tree. This order is a concession to efficiency: It allows common path prefixes to be shared.
   
The paths of the test cases that a test comprises can be computed with <hask>testCasePaths</hask>. The paths are listed in the order in which the corresponding test cases would be executed.
+
The paths of the test cases that a test comprises can be computed with <code>testCasePaths</code>. The paths are listed in the order in which the corresponding test cases would be executed.
   
 
<haskell>
 
<haskell>
Line 169: Line 169:
 
</haskell>
 
</haskell>
   
The three variants of <hask>Test</hask> can be constructed simply by applying <hask>TestCase</hask>, <hask>TestList</hask>, and <hask>TestLabel</hask> to appropriate arguments. Additional ways to create tests are described later under [[#Advanced Features | Advanced Features]].
+
The three variants of <code>Test</code> can be constructed simply by applying <code>TestCase</code>, <code>TestList</code>, and <code>TestLabel</code> to appropriate arguments. Additional ways to create tests are described later under [[#Advanced Features | Advanced Features]].
   
The design of the type <hask>Test</hask> provides great conciseness, flexibility, and convenience in specifying tests. Moreover, the nature of Haskell significantly augments these qualities:
+
The design of the type <code>Test</code> provides great conciseness, flexibility, and convenience in specifying tests. Moreover, the nature of Haskell significantly augments these qualities:
   
* Combining assertions and other code to construct test cases is easy with the <hask>IO</hask> monad.
+
* Combining assertions and other code to construct test cases is easy with the <code>IO</code> monad.
 
* Using overloaded functions and special operators (see below), specification of assertions and tests is extremely compact.
 
* Using overloaded functions and special operators (see below), specification of assertions and tests is extremely compact.
 
*Structuring a test tree by value, rather than by name as in JUnit, provides for more convenient, flexible, and robust test suite specification. In particular, a test suite can more easily be computed "on the fly" than in other test frameworks.
 
*Structuring a test tree by value, rather than by name as in JUnit, provides for more convenient, flexible, and robust test suite specification. In particular, a test suite can more easily be computed "on the fly" than in other test frameworks.
Line 197: Line 197:
 
</haskell>
 
</haskell>
   
You provide a boolean condition and failure message separately to <hask>(@?)</hask>, as for <hask>assertBool</hask>, but in a different order. The <hask>(@=?)</hask> and <hask>(@?=)</hask> operators provide shorthands for <hask>assertEqual</hask> when no preface is required. They differ only in the order in which the expected and actual values are provided. (The actual value - the uncertain one - goes on the "?" side of the operator.)
+
You provide a boolean condition and failure message separately to <code>(@?)</code>, as for <code>assertBool</code>, but in a different order. The <code>(@=?)</code> and <code>(@?=)</code> operators provide shorthands for <code>assertEqual</code> when no preface is required. They differ only in the order in which the expected and actual values are provided. (The actual value - the uncertain one - goes on the "?" side of the operator.)
   
The <hask>(@?)</hask> operator's first argument is something from which an assertion predicate can be made, that is, its type must be <hask>AssertionPredicable</hask>.
+
The <code>(@?)</code> operator's first argument is something from which an assertion predicate can be made, that is, its type must be <code>AssertionPredicable</code>.
   
 
<haskell>
 
<haskell>
Line 214: Line 214:
 
</haskell>
 
</haskell>
   
The overloaded <hask>assert</hask> function in the <hask>Assertable</hask> type class constructs an assertion.
+
The overloaded <code>assert</code> function in the <code>Assertable</code> type class constructs an assertion.
   
 
<haskell>
 
<haskell>
Line 233: Line 233:
 
</haskell>
 
</haskell>
   
The <hask>ListAssertable</hask> class allows <hask>assert</hask> to be applied to <hask>[Char]</hask> (that is, <hask>String</hask>).
+
The <code>ListAssertable</code> class allows <code>assert</code> to be applied to <code>[Char]</code> (that is, <code>String</code>).
   
 
<haskell>
 
<haskell>
Line 243: Line 243:
 
</haskell>
 
</haskell>
   
With the above declarations, <hask>(assert&nbsp;())</hask>, <hask>(assert&nbsp;True)</hask>, and <hask>(assert&nbsp;"")</hask> (as well as <hask>IO</hask> forms of these values, such as <hask>(return&nbsp;())</hask>) are all assertions that never fail, while <hask>(assert&nbsp;False)</hask> and <hask>(assert&nbsp;"some&nbsp;failure&nbsp;message")</hask> (and their <hask>IO</hask> forms) are assertions that always fail. You may define additional instances for the type classes <hask>Assertable</hask>, <hask>ListAssertable</hask>, and <hask>AssertionPredicable</hask> if that should be useful in your application.
+
With the above declarations, <code>(assert&nbsp;())</code>, <code>(assert&nbsp;True)</code>, and <code>(assert&nbsp;"")</code> (as well as <code>IO</code> forms of these values, such as <code>(return&nbsp;())</code>) are all assertions that never fail, while <code>(assert&nbsp;False)</code> and <code>(assert&nbsp;"some&nbsp;failure&nbsp;message")</code> (and their <code>IO</code> forms) are assertions that always fail. You may define additional instances for the type classes <code>Assertable</code>, <code>ListAssertable</code>, and <code>AssertionPredicable</code> if that should be useful in your application.
   
The overloaded <hask>test</hask> function in the <hask>Testable</hask> type class constructs a test.
+
The overloaded <code>test</code> function in the <code>Testable</code> type class constructs a test.
   
 
<haskell>
 
<haskell>
Line 261: Line 261:
 
</haskell>
 
</haskell>
   
The <hask>test</hask> function makes a test from either an <hask>Assertion</hask> (using <hask>TestCase</hask>), a list of <hask>Testable</hask> items (using <hask>TestList</hask>), or a <hask>Test</hask> (making no change).
+
The <code>test</code> function makes a test from either an <code>Assertion</code> (using <code>TestCase</code>), a list of <code>Testable</code> items (using <code>TestList</code>), or a <code>Test</code> (making no change).
   
 
The following operators can be used to construct tests.
 
The following operators can be used to construct tests.
Line 282: Line 282:
 
</haskell>
 
</haskell>
   
<hask>(~?)</hask>, <hask>(~=?)</hask>, and <hask>(~?=)</hask> each make an assertion, as for <hask>(@?)</hask>, <hask>(@=?)</hask>, and <hask>(@?=)</hask>, respectively, and then a test case from that assertion. <hask>(~:)</hask> attaches a label to something that is <hask>Testable</hask>. You may define additional instances for the type class <hask>Testable</hask> should that be useful.
+
<code>(~?)</code>, <code>(~=?)</code>, and <code>(~?=)</code> each make an assertion, as for <code>(@?)</code>, <code>(@=?)</code>, and <code>(@?=)</code>, respectively, and then a test case from that assertion. <code>(~:)</code> attaches a label to something that is <code>Testable</code>. You may define additional instances for the type class <code>Testable</code> should that be useful.
   
 
== Running Tests ==
 
== Running Tests ==
Line 292: Line 292:
 
All test controllers share a common test execution model. They differ only in how the results of test execution are shown.
 
All test controllers share a common test execution model. They differ only in how the results of test execution are shown.
   
The execution of a test (a value of type <hask>Test</hask>) involves the serial execution (in the <hask>IO</hask> monad) of its constituent test cases. The test cases are executed in a depth-first, left-to-right order. During test execution, four counts of test cases are maintained:
+
The execution of a test (a value of type <code>Test</code>) involves the serial execution (in the <code>IO</code> monad) of its constituent test cases. The test cases are executed in a depth-first, left-to-right order. During test execution, four counts of test cases are maintained:
   
 
<haskell>
 
<haskell>
Line 299: Line 299:
 
</haskell>
 
</haskell>
   
* <hask>cases</hask> is the number of test cases included in the test. This number is a static property of a test and remains unchanged during test execution.
+
* <code>cases</code> is the number of test cases included in the test. This number is a static property of a test and remains unchanged during test execution.
* <hask>tried</hask> is the number of test cases that have been executed so far during the test execution.
+
* <code>tried</code> is the number of test cases that have been executed so far during the test execution.
* <hask>errors</hask> is the number of test cases whose execution ended with an unexpected exception being raised. Errors indicate problems with test cases, as opposed to the code under test.
+
* <code>errors</code> is the number of test cases whose execution ended with an unexpected exception being raised. Errors indicate problems with test cases, as opposed to the code under test.
* <hask>failures</hask> is the number of test cases whose execution asserted failure. Failures indicate problems with the code under test.
+
* <code>failures</code> is the number of test cases whose execution asserted failure. Failures indicate problems with the code under test.
   
Why is there no count for test case successes? The technical reason is that the counts are maintained such that the number of test case successes is always equal to <hask>(tried&nbsp;-&nbsp;(errors&nbsp;+&nbsp;failures))</hask>. The psychosocial reason is that, with test-centered development and the expectation that test failures will be few and short-lived, attention should be focused on the failures rather than the successes.
+
Why is there no count for test case successes? The technical reason is that the counts are maintained such that the number of test case successes is always equal to <code>(tried&nbsp;-&nbsp;(errors&nbsp;+&nbsp;failures))</code>. The psychosocial reason is that, with test-centered development and the expectation that test failures will be few and short-lived, attention should be focused on the failures rather than the successes.
   
 
As test execution proceeds, three kinds of reporting event are communicated to the test controller. (What the controller does in response to the reporting events depends on the controller.)
 
As test execution proceeds, three kinds of reporting event are communicated to the test controller. (What the controller does in response to the reporting events depends on the controller.)
Line 322: Line 322:
 
</haskell>
 
</haskell>
   
<hask>runTestText</hask> is generalized on a ''reporting scheme'' given as its first argument. During execution of the test given as its second argument, the controller creates a string for each reporting event and processes it according to the reporting scheme. When test execution is complete, the controller returns the final counts along with the final state for the reporting scheme.
+
<code>runTestText</code> is generalized on a ''reporting scheme'' given as its first argument. During execution of the test given as its second argument, the controller creates a string for each reporting event and processes it according to the reporting scheme. When test execution is complete, the controller returns the final counts along with the final state for the reporting scheme.
   
 
The strings for the three kinds of reporting event are as follows.
 
The strings for the three kinds of reporting event are as follows.
   
* A ''start'' report is the result of the function <hask>showCounts</hask> applied to the counts current immediately prior to initiation of the test case being started.
+
* A ''start'' report is the result of the function <code>showCounts</code> applied to the counts current immediately prior to initiation of the test case being started.
* An ''error' report is of the form "<hask>Error&nbsp;in:&nbsp;&nbsp;&nbsp;''path''\n''message''</hask>", where ''path'' is the path of the test case in error, as shown by <hask>showPath</hask>, and ''message'' is a message describing the error. If the path is empty, the report has the form "<hask>Error:\n''message''</hask>".
+
* An ''error'' report is of the form "<code>Error&nbsp;in:&nbsp;&nbsp;&nbsp;''path''\n''message''</code>", where ''path'' is the path of the test case in error, as shown by <code>showPath</code>, and ''message'' is a message describing the error. If the path is empty, the report has the form "<code>Error:\n''message''</code>".
* A ''failure'' report is of the form "<hask>Failure&nbsp;in:&nbsp;''path''\n''message''</hask>", where <i>path</i> is the path of the test case in error, as shown by <hask>showPath</hask>, and ''message'' is the failure message. If the path is empty, the report has the form "<hask>Failure:\n''message''</hask>".
+
* A ''failure'' report is of the form "<code>Failure&nbsp;in:&nbsp;''path''\n''message''</code>", where <i>path</i> is the path of the test case in error, as shown by <code>showPath</code>, and ''message'' is the failure message. If the path is empty, the report has the form "<code>Failure:\n''message''</code>".
   
The function <hask>showCounts</hask> shows a set of counts.
+
The function <code>showCounts</code> shows a set of counts.
   
 
<haskell>
 
<haskell>
Line 336: Line 336:
 
</haskell>
 
</haskell>
   
The form of its result is "<hask>Cases:&nbsp;''cases''&nbsp;&nbsp;Tried:&nbsp;<i>tried</i>&nbsp;&nbsp;Errors:&nbsp;<i>errors</i>&nbsp;&nbsp;Failures:&nbsp;<i>failures</i></hask>" where <i>cases</i>, <i>tried</i>, <i>errors</i>, and <i>failures</i> are the count values.
+
The form of its result is "<code>Cases:&nbsp;''cases''&nbsp;&nbsp;Tried:&nbsp;<i>tried</i>&nbsp;&nbsp;Errors:&nbsp;<i>errors</i>&nbsp;&nbsp;Failures:&nbsp;<i>failures</i></code>" where <i>cases</i>, <i>tried</i>, <i>errors</i>, and <i>failures</i> are the count values.
   
The function <hask>showPath</hask> shows a test case path.
+
The function <code>showPath</code> shows a test case path.
   
 
<haskell>
 
<haskell>
Line 344: Line 344:
 
</haskell>
 
</haskell>
   
The nodes in the path are reversed (so that the path reads from the root down to the test case), and the representations for the nodes are joined by '<hask>:</hask>' separators. The representation for <hask>(ListItem <i>n</i>)</hask> is <hask>(show n)</hask>. The representation for <hask>(Label <i>label</i>)</hask> is normally <i>label</i>. However, if <i>label</i> contains a colon or if <hask>(show <i>label</i>)</hask> is different from <i>label</i> surrounded by quotation marks--that is, if any ambiguity could exist--then <hask>(Label <i>label</i>)</hask> is represented as <hask>(show <i>label</i>)</hask>.
+
The nodes in the path are reversed (so that the path reads from the root down to the test case), and the representations for the nodes are joined by '<code>:</code>' separators. The representation for <code>(ListItem <i>n</i>)</code> is <code>(show n)</code>. The representation for <code>(Label <i>label</i>)</code> is normally <i>label</i>. However, if <i>label</i> contains a colon or if <code>(show <i>label</i>)</code> is different from <i>label</i> surrounded by quotation marks--that is, if any ambiguity could exist--then <code>(Label <i>label</i>)</code> is represented as <code>(show <i>label</i>)</code>.
   
 
HUnit includes two reporting schemes for the text-based test controller. You may define others if you wish.
 
HUnit includes two reporting schemes for the text-based test controller. You may define others if you wish.
Line 352: Line 352:
 
</haskell>
 
</haskell>
   
<hask>putTextToHandle</hask> writes error and failure reports, plus a report of the final counts, to the given handle. Each of these reports is terminated by a newline. In addition, if the given flag is <hask>True</hask>, it writes start reports to the handle as well. A start report, however, is not terminated by a newline. Before the next report is written, the start report is "erased" with an appropriate sequence of carriage return and space characters. Such overwriting realizes its intended effect on terminal devices.
+
<code>putTextToHandle</code> writes error and failure reports, plus a report of the final counts, to the given handle. Each of these reports is terminated by a newline. In addition, if the given flag is <code>True</code>, it writes start reports to the handle as well. A start report, however, is not terminated by a newline. Before the next report is written, the start report is "erased" with an appropriate sequence of carriage return and space characters. Such overwriting realizes its intended effect on terminal devices.
   
 
<haskell>
 
<haskell>
Line 358: Line 358:
 
</haskell>
 
</haskell>
   
<hask>putTextToShowS</hask> ignores start reports and simply accumulates error and failure reports, terminating them with newlines. The accumulated reports are returned (as the second element of the pair returned by <hask>runTestText</hask>) as a <hask>ShowS</hask> function (that is, one with type <hask>(String&nbsp;->&nbsp;String)</hask>) whose first argument is a string to be appended to the accumulated report lines.
+
<code>putTextToShowS</code> ignores start reports and simply accumulates error and failure reports, terminating them with newlines. The accumulated reports are returned (as the second element of the pair returned by <code>runTestText</code>) as a <code>ShowS</code> function (that is, one with type <code>(String&nbsp;->&nbsp;String)</code>) whose first argument is a string to be appended to the accumulated report lines.
   
 
HUnit provides a shorthand for the most common use of the text-based test controller.
 
HUnit provides a shorthand for the most common use of the text-based test controller.
Line 366: Line 366:
 
</haskell>
 
</haskell>
   
<hask>runTestTT</hask> invokes <hask>runTestText</hask>, specifying <hask>(putTextToHandle stderr True)</hask> for the reporting scheme, and returns the final counts from the test execution.
+
<code>runTestTT</code> invokes <code>runTestText</code>, specifying <code>(putTextToHandle stderr True)</code> for the reporting scheme, and returns the final counts from the test execution.
   
 
== References ==
 
== References ==

Revision as of 21:13, 5 June 2012

The HUnit software and this guide were written by Dean Herington (heringto@cs.unc.edu).

HUnit is a unit testing framework for Haskell, inspired by the JUnit tool for Java. This guide describes how to use HUnit, assuming you are familiar with Haskell, though not necessarily with JUnit.

Introduction

A test-centered methodology for software development is most effective when tests are easy to create, change, and execute. The Sunit tool pioneered support for test-first development in Smalltalk. HUnit is an adaptation of the unit testing framework to Haskell, a general-purpose, purely functional programming language. (To learn more about Haskell, see http://www.haskell.org.). Unit testing frameworks for various languages are referred to as xUnit.

With HUnit, as with xUnit, you can easily create tests, name them, group them into suites, and execute them, with the framework checking the results automatically. HUnit currently includes only a text-based test controller, but the framework is designed for easy extension. (Would anyone care to write a graphical test controller for HUnit?)

The next section helps you get started using HUnit in simple ways. Subsequent sections give details on writing tests and running tests. The document concludes with a section describing HUnit's constituent files and a section giving references to further information.

Getting Started

In the Haskell module where your tests will reside, import module Test.HUnit:

import Test.HUnit

Define test cases as appropriate:

test1 = TestCase (assertEqual "for (foo 3)," (1,2) (foo 3))
test2 = TestCase (do (x,y) <- partA 3
                     assertEqual "for the first result of partA," 5 x
                     b <- partB y
                     assertBool ("(partB " ++ show y ++ ") failed") b)

Name the test cases and group them together:

tests = TestList [TestLabel "test1" test1, TestLabel "test2" test2]

Run the tests as a group. At a Haskell interpreter prompt, apply the function runTestTT to the collected tests. (The "TT" suggests Text orientation with output to the Terminal.)

> runTestTT tests
Cases: 2  Tried: 2  Errors: 0  Failures: 0
>

If the tests are proving their worth, you might see:

> runTestTT tests
### Failure in: 0:test1
for (foo 3),
expected: (1,2)
 but got: (1,3)
Cases: 2  Tried: 2  Errors: 0  Failures: 1
>

Isn't that easy?

You can specify tests even more succinctly using operators and overloaded functions that HUnit provides:

tests = test [ "test1" ~: "(foo 3)" ~: (1,2) ~=? (foo 3),
               "test2" ~: do (x, y) <- partA 3
                             assertEqual "for the first result of partA," 5 x
                             partB y @? "(partB " ++ show y ++ ") failed" ]

Assuming the same test failures as before, you would see:

> runTestTT tests
### Failure in: 0:test1:(foo 3)
expected: (1,2)
 but got: (1,3)
Cases: 2  Tried: 2  Errors: 0  Failures: 1
>

Writing Tests

Tests are specified compositionally. Assertions are combined to make a test case, and test cases are combined into tests. HUnit also provides advanced features for more convenient test specification.

Assertions

The basic building block of a test is an assertion.

type Assertion = IO ()

An assertion is an IO computation that always produces a void result. Why is an assertion an IO computation? So that programs with real-world side effects can be tested. How does an assertion assert anything if it produces no useful result? The answer is that an assertion can signal failure by calling assertFailure.

assertFailure :: String -> Assertion
assertFailure msg = ioError (userError ("HUnit:" ++ msg))

(assertFailure msg) raises an exception. The string argument identifies the failure. The failure message is prefixed by "HUnit:" to mark it as an HUnit assertion failure message. The HUnit test framework interprets such an exception as indicating failure of the test whose execution raised the exception. (Note: The details concerning the implementation of assertFailure are subject to change and should not be relied upon.)

assertFailure can be used directly, but it is much more common to use it indirectly through other assertion functions that conditionally assert failure.

assertBool :: String -> Bool -> Assertion
assertBool msg b = unless b (assertFailure msg)

assertString :: String -> Assertion
assertString s = unless (null s) (assertFailure s)

assertEqual :: (Eq a, Show a) => String -> a -> a -> Assertion
assertEqual preface expected actual =
  unless (actual == expected) (assertFailure msg)
 where msg = (if null preface then "" else preface ++ "\n") ++
             "expected: " ++ show expected ++ "\n but got: " ++ show actual

With assertBool you give the assertion condition and failure message separately. With assertString the two are combined. With assertEqual you provide a "preface", an expected value, and an actual value; the failure message shows the two unequal values and is prefixed by the preface. Additional ways to create assertions are described later under Advanced Features.

Since assertions are IO computations, they may be combined--along with other IO computations--using (>>=), (>>), and the do notation. As long as its result is of type (IO ()), such a combination constitutes a single, collective assertion, incorporating any number of constituent assertions. The important features of such a collective assertion are that it fails if any of its constituent assertions is executed and fails, and that the first constituent assertion to fail terminates execution of the collective assertion. Such behavior is essential to specifying a test case.

Test Case

A test case is the unit of test execution. That is, distinct test cases are executed independently. The failure of one is independent of the failure of any other.

A test case consists of a single, possibly collective, assertion. The possibly multiple constituent assertions in a test case's collective assertion are not independent. Their interdependence may be crucial to specifying correct operation for a test. A test case may involve a series of steps, each concluding in an assertion, where each step must succeed in order for the test case to continue. As another example, a test may require some "set up" to be performed that must be undone ("torn down" in JUnit parlance) once the test is complete. In this case, you could use Haskell's IO.bracket function to achieve the desired effect.

You can make a test case from an assertion by applying the TestCase constructor. For example, (TestCase (return ())) is a test case that never fails, and (TestCase assertEqual "for x," 3 x)) is a test case that checks that the value of x is 3. Additional ways to create test cases are described later under Advanced Features.

Tests

As soon as you have more than one test, you'll want to name them to tell them apart. As soon as you have more than several tests, you'll want to group them to process them more easily. So, naming and grouping are the two keys to managing collections of tests.

In tune with the "composite" design pattern 1], a test is defined as a package of test cases. Concretely, a test is either a single test case, a group of tests, or either of the first two identified by a label.

data Test = TestCase Assertion
          | TestList [Test]
          | TestLabel String Test

There are three important features of this definition to note:

  • A TestList consists of a list of tests rather than a list of test cases. This means that the structure of a Test is actually a tree. Using a hierarchy helps organize tests just as it helps organize files in a file system.
  • A TestLabel is attached to a test rather than to a test case. This means that all nodes in the test tree, not just test case (leaf) nodes, can be labeled. Hierarchical naming helps organize tests just as it helps organize files in a file system.
  • A TestLabel is separate from both TestCase and TestList. This means that labeling is optional everywhere in the tree. Why is this a good thing? Because of the hierarchical structure of a test, each constituent test case is uniquely identified by its path in the tree, ignoring all labels. Sometimes a test case's path (or perhaps its subpath below a certain node) is a perfectly adequate "name" for the test case (perhaps relative to a certain node). In this case, creating a label for the test case is both unnecessary and inconvenient.

The number of test cases that a test comprises can be computed with testCaseCount.

testCaseCount :: Test -> Int

As mentioned above, a test is identified by its path in the test hierarchy.

data Node  = ListItem Int | Label String
  deriving (Eq, Show, Read)

type Path = [Node]    -- Node order is from test case to root.

Each occurrence of TestList gives rise to a ListItem and each occurrence of TestLabel gives rise to a Label. The ListItems by themselves ensure uniqueness among test case paths, while the Labels allow you to add mnemonic names for individual test cases and collections of them.

Note that the order of nodes in a path is reversed from what you might expect: The first node in the list is the one deepest in the tree. This order is a concession to efficiency: It allows common path prefixes to be shared.

The paths of the test cases that a test comprises can be computed with testCasePaths. The paths are listed in the order in which the corresponding test cases would be executed.

testCasePaths :: Test -> [Path]

The three variants of Test can be constructed simply by applying TestCase, TestList, and TestLabel to appropriate arguments. Additional ways to create tests are described later under Advanced Features.

The design of the type Test provides great conciseness, flexibility, and convenience in specifying tests. Moreover, the nature of Haskell significantly augments these qualities:

  • Combining assertions and other code to construct test cases is easy with the IO monad.
  • Using overloaded functions and special operators (see below), specification of assertions and tests is extremely compact.
  • Structuring a test tree by value, rather than by name as in JUnit, provides for more convenient, flexible, and robust test suite specification. In particular, a test suite can more easily be computed "on the fly" than in other test frameworks.
  • Haskell's powerful abstraction facilities provide unmatched support for test refactoring.

Advanced Features

HUnit provides additional features for specifying assertions and tests more conveniently and concisely. These facilities make use of Haskell type classes.

The following operators can be used to construct assertions.

infix 1 @?, @=?, @?=

(@?) :: (AssertionPredicable t) => t -> String -> Assertion
pred @? msg = assertionPredicate pred >>= assertBool msg

(@=?) :: (Eq a, Show a) => a -> a -> Assertion
expected @=? actual = assertEqual "" expected actual

(@?=) :: (Eq a, Show a) => a -> a -> Assertion
actual @?= expected = assertEqual "" expected actual

You provide a boolean condition and failure message separately to (@?), as for assertBool, but in a different order. The (@=?) and (@?=) operators provide shorthands for assertEqual when no preface is required. They differ only in the order in which the expected and actual values are provided. (The actual value - the uncertain one - goes on the "?" side of the operator.)

The (@?) operator's first argument is something from which an assertion predicate can be made, that is, its type must be AssertionPredicable.

type AssertionPredicate = IO Bool

class AssertionPredicable t
 where assertionPredicate :: t -> AssertionPredicate

instance AssertionPredicable Bool
 where assertionPredicate = return

instance (AssertionPredicable t) => AssertionPredicable (IO t)
 where assertionPredicate = (>>= assertionPredicate)

The overloaded assert function in the Assertable type class constructs an assertion.

class Assertable t
 where assert :: t -> Assertion

instance Assertable ()
 where assert = return

instance Assertable Bool
 where assert = assertBool ""

instance (ListAssertable t) => Assertable [t]
 where assert = listAssert

instance (Assertable t) => Assertable (IO t)
 where assert = (>>= assert)

The ListAssertable class allows assert to be applied to [Char] (that is, String).

class ListAssertable t
 where listAssert :: [t] -> Assertion

instance ListAssertable Char
 where listAssert = assertString

With the above declarations, (assert ()), (assert True), and (assert "") (as well as IO forms of these values, such as (return ())) are all assertions that never fail, while (assert False) and (assert "some failure message") (and their IO forms) are assertions that always fail. You may define additional instances for the type classes Assertable, ListAssertable, and AssertionPredicable if that should be useful in your application.

The overloaded test function in the Testable type class constructs a test.

class Testable t
 where test :: t -> Test

instance Testable Test
 where test = id

instance (Assertable t) => Testable (IO t)
 where test = TestCase . assert

instance (Testable t) => Testable [t]
 where test = TestList . map test

The test function makes a test from either an Assertion (using TestCase), a list of Testable items (using TestList), or a Test (making no change).

The following operators can be used to construct tests.

infix  1 ~?, ~=?, ~?=
infixr 0 ~:

(~?) :: (AssertionPredicable t) => t -> String -> Test
pred ~? msg = TestCase (pred @? msg)

(~=?) :: (Eq a, Show a) => a -> a -> Test
expected ~=? actual = TestCase (expected @=? actual)

(~?=) :: (Eq a, Show a) => a -> a -> Test
actual ~?= expected = TestCase (actual @?= expected)

(~:) :: (Testable t) => String -> t -> Test
label ~: t = TestLabel label (test t)

(~?), (~=?), and (~?=) each make an assertion, as for (@?), (@=?), and (@?=), respectively, and then a test case from that assertion. (~:) attaches a label to something that is Testable. You may define additional instances for the type class Testable should that be useful.

Running Tests

HUnit is structured to support multiple test controllers. The first subsection below describes the test execution characteristics common to all test controllers. The second subsection describes the text-based controller that is included with HUnit.

Test Execution

All test controllers share a common test execution model. They differ only in how the results of test execution are shown.

The execution of a test (a value of type Test) involves the serial execution (in the IO monad) of its constituent test cases. The test cases are executed in a depth-first, left-to-right order. During test execution, four counts of test cases are maintained:

data Counts = Counts { cases, tried, errors, failures :: Int }
  deriving (Eq, Show, Read)
  • cases is the number of test cases included in the test. This number is a static property of a test and remains unchanged during test execution.
  • tried is the number of test cases that have been executed so far during the test execution.
  • errors is the number of test cases whose execution ended with an unexpected exception being raised. Errors indicate problems with test cases, as opposed to the code under test.
  • failures is the number of test cases whose execution asserted failure. Failures indicate problems with the code under test.

Why is there no count for test case successes? The technical reason is that the counts are maintained such that the number of test case successes is always equal to (tried - (errors + failures)). The psychosocial reason is that, with test-centered development and the expectation that test failures will be few and short-lived, attention should be focused on the failures rather than the successes.

As test execution proceeds, three kinds of reporting event are communicated to the test controller. (What the controller does in response to the reporting events depends on the controller.)

start
Just prior to initiation of a test case, the path of the test case and the current counts (excluding the current test case) are reported.
error
When a test case terminates with an error, the error message is reported, along with the test case path and current counts (including the current test case).
failure
When a test case terminates with a failure, the failure message is reported, along with the test case path and current counts (including the test case).

Typically, a test controller shows error and failure reports immediately but uses the start report merely to update an indication of overall test execution progress.

Text-Based Controller

A text-based test controller is included with HUnit.

runTestText :: PutText st -> Test -> IO (Counts, st)

runTestText is generalized on a reporting scheme given as its first argument. During execution of the test given as its second argument, the controller creates a string for each reporting event and processes it according to the reporting scheme. When test execution is complete, the controller returns the final counts along with the final state for the reporting scheme.

The strings for the three kinds of reporting event are as follows.

  • A start report is the result of the function showCounts applied to the counts current immediately prior to initiation of the test case being started.
  • An error report is of the form "Error in:   path\nmessage", where path is the path of the test case in error, as shown by showPath, and message is a message describing the error. If the path is empty, the report has the form "Error:\nmessage".
  • A failure report is of the form "Failure in: path\nmessage", where path is the path of the test case in error, as shown by showPath, and message is the failure message. If the path is empty, the report has the form "Failure:\nmessage".

The function showCounts shows a set of counts.

showCounts :: Counts -> String

The form of its result is "Cases: cases  Tried: tried  Errors: errors  Failures: failures" where cases, tried, errors, and failures are the count values.

The function showPath shows a test case path.

showPath :: Path -> String

The nodes in the path are reversed (so that the path reads from the root down to the test case), and the representations for the nodes are joined by ':' separators. The representation for (ListItem n) is (show n). The representation for (Label label) is normally label. However, if label contains a colon or if (show label) is different from label surrounded by quotation marks--that is, if any ambiguity could exist--then (Label label) is represented as (show label).

HUnit includes two reporting schemes for the text-based test controller. You may define others if you wish.

putTextToHandle :: Handle -> Bool -> PutText Int

putTextToHandle writes error and failure reports, plus a report of the final counts, to the given handle. Each of these reports is terminated by a newline. In addition, if the given flag is True, it writes start reports to the handle as well. A start report, however, is not terminated by a newline. Before the next report is written, the start report is "erased" with an appropriate sequence of carriage return and space characters. Such overwriting realizes its intended effect on terminal devices.

putTextToShowS :: PutText ShowS

putTextToShowS ignores start reports and simply accumulates error and failure reports, terminating them with newlines. The accumulated reports are returned (as the second element of the pair returned by runTestText) as a ShowS function (that is, one with type (String -> String)) whose first argument is a string to be appended to the accumulated report lines.

HUnit provides a shorthand for the most common use of the text-based test controller.

runTestTT :: Test -> IO Counts

runTestTT invokes runTestText, specifying (putTextToHandle stderr True) for the reporting scheme, and returns the final counts from the test execution.

References

[1] Gamma, E., et al. Design Patterns
Elements of Reusable Object-Oriented Software, Addison-Wesley, Reading, MA, 1995.
The classic book describing design patterns in an object-oriented context.
http://www.junit.org
Web page for JUnit, the tool after which HUnit is modeled.
http://junit.sourceforge.net/doc/testinfected/testing.htm
A good introduction to test-first development and the use of JUnit.
http://junit.sourceforge.net/doc/cookstour/cookstour.htm A description of the internal structure of JUnit. Makes for an interesting comparison between JUnit and HUnit.