Monday, March 15, 2010

Dotmesh: get free rich assertions from your existing methods

It's been over two years since JUnit 4.4 was released with support for the assertThat method initially conceived by Joe Walnes. A classic statement using assertThat is:



assertThat was based on the Matcher interface from hamcrest, and led to more readable code, more readable error messages, and custom, combinable assertions. However, after two years of use, I’ve seen several situations in which the Matcher-based assertThat API can fail developers:


  1. Custom matchers can be too much code for simple ideas. Ideally, custom assertions should just flow off the fingers, but I find it very telling that the JUnit self tests only have four custom matchers, all in the ResultMatchers class. Most of them are about 7 lines of mostly-boilerplate code, such as this:



  2. Matchers can be difficult to discover. They are generally returned by static factory methods--if your IDE isn’t set up to auto-complete these methods, it can be difficult to track down whether a matcher method exists for the assertion you want, or which of several available has the right meaning. Ideally, we could restrict the types of Matchers that could type-check for a given value, to give your IDE hints. Unfortunately...

  3. I have discovered a long, painful proof that it is impossible to provide strong types for matcher-based assertThat using:
    • Java generics...
    • as implemented in all of the compilers we currently support...
    • without breaking the use of Matchers in jMock

    This blog post is too narrow to contain it.
  4. Similar to the above, introducing a dependency from JUnit on hamcrest, the matcher library, causes problems for any users using a different version of hamcrest for another use (for example, jMock)


Based on these difficulties, I propose a new API for assertions, which I call dotmesh*. The idea is to use imposterization to generate assertions based on every boolean method available on every class. The new form of the assertion above would be:



If this fails, the error message is:

Failed: <ERROR: blah blah blah>.contains(<OK>)


Here’s some more examples of dotmesh in action:



Advantages of the dotmesh approach over the Matcher approach:

  1. No additional code: assertions and error messages are automatically generated from any method that returns boolean.

  2. Super-easy discovery: know a boolean method? You know a dotmesh assertion.

  3. Strong typing for free: since we’re using the same methods and types, assertions only compile if they make sense.

  4. As a bonus, dotmesh provides a reward for interfaces that follow the “Suggestion of Demeter”, and provide accessors returning booleans or collections for essential information.


An ambivalent point:

  • Both dotmesh and hamcrest must use specially-named methods to “talk about” operations that would otherwise be more clearly stated with operators. For example, you can easily:
    assertTrue(x > 5)
    but in order to find out why this assertion fails, you must use:
    assertThat(x, greaterThan(5)) in hamcrest, or
    assertThat(x).greaterThan(5) in dotmesh.


Disadvantages of dotmesh:


  1. The standard imposterization tricks break down when the target being imposterized is a primitive type or final class. This isn’t too big a problem for primitive types and Strings: we can introduce a wrapper interface for each, and then be done. The more disconcerting issue is third-party final classes. We can’t generate new synthetic classes that replicate their interface, so this is going to fail at some point:



    My approach for the moment is to be very apologetic in the error message. Once I see where this problem tends to come up for users, one of several possible mitigation tricks may prove possible.

  2. The hamcrest assertThat allowed (to a certain extent) for combinations of matchers:



    dotmesh can’t match that directly, but there’s often useful workarounds:



  3. In order to pull off imposterization, I’m using objenesis and cglib, which might conceivably lead to the same versioning issues currently imposed by hamcrest. However, this dependency is completely encapsulated from the user, so we could use a solution like jarjar to avoid any conflicts.


If I’ve piqued your interest enough to try some truly bleeding-edge, no-guarantees code, check out:

http://github.com/dsaff/dotmesh








* Why "dotmesh"? Well, it creates assertions by "meshing" a new meaning into the "dot" that indicates a method invocation. There's another reason, which is a cryptic homage to hamcrest,..

7 comments:

  1. How does this compare with Fest Assertions (see http://fest.easytesting.org/assert/wiki/pmwiki.php) ?

    It seems pretty similar at first glance but I'll admit that I haven't had a dig into the code in detail.

    ReplyDelete
  2. Nice: hamcrest --> matchers, dotmesh --> methods.

    Interested to try out the new syntax.

    ReplyDelete
  3. I think I like it. Primarily because it aligns itself nicely with how stubbing is done in Mockito (which also uses Objenesis and also has similar restrictions).

    ReplyDelete
  4. This comment has been removed by the author.

    ReplyDelete
  5. Great! dotmesh has a more fluent interface (aka readable) than hamcrest, which is based on static methods.

    @Ian I have used FEST-Assert for about two years, it's a mix between hamcrest and dotmesh. It enables you to use asserts in a more fluent style allowing combinations. But, in order to use it to create custom assertions is so painful as to create hamcrest matchers. IMHO, dotmesh has a more elegant solution.

    ReplyDelete
  6. I noticed you were testing:

    http://support.github.com/discussions/feature-requests/27-gist-js-embeds-dont-show-in-rss-use-noscript

    ReplyDelete
  7. I like this because I think the dotmesh assert statements reads more easily than the hamcrest equivalent.

    ReplyDelete