Thursday, February 16, 2017
Auto generate Spock specs for Grails artifacts
Auto generate Spock specs for Grails artifacts
When creating artifacts such as domain classes, controllers and tag libs Grails generates a JUnit test case. If, like me, youre digging writing specifications with Spock youd probably rather have Grails generate one of those. The last thing I want is to manually transform every generated test case into a specification for every artifact I create.
Its very simple to create a CreateUnitSpec or CreateIntegrationSpec script with a template specification. Hooking in to the other types of artifact creation turned out to be fiddlier. Each create-* command calls a Closure called createUnitTest. Reassigning that Closure should be the solution. The trick is in figuring out where that can be done.
Any time one of its Gant targets is invoked the Grails build system fires an event. You can respond to those events by declaring a closure called
event<target name>Start
in scripts/_Events.groovy
. The only Gant target directly invoked when an artifact is created is called default. It is possible to intercept that although that means the event handler will be invoked any time any Gant target called default runs. For this purpose thats no problem since were just overriding a closure in the build binding.The other factor is that the superclass for the unit test is specified by the individual create-* scripts (or defaulted to GrailsUnitTestCase). Rather than having to override those scripts as well, Ive just mapped the non-standard unit test superclasses to the Spock equivalents.
Heres the code for your
_Events.groovy
script:The template specification should be placed in
src/templates/artifacts/Spec.groovy
and is simply:It goes without saying that this is a slightly hairy and it would be great if Grails provided a proper hook for overriding the test generation. I can live with some fun-size evil in _Events.groovy for the sake of the convenience of getting template specs for all my artifacts, though.
Available link for download