Unit test your server-side JavaScript with Spock
Java 8 was recently released with Nashorn – a JavaScript runtime for the JVM. There are many reasons you may want to use JavaScript in your JVM application; for example, validation logic or template code that can be used on both the client and the server.
I am going to show you how to unit test your JavaScript code using Spock. This Groovy-powered specification framework is powerful and expressive, and integrates nicely with existing Groovy (and Java) codebases with its JUnit test runner.
So why should you test your JavaScript code with Spock? I can think of a few reasons:
1. Tests integrate with your existing Spock / JUnit-powered test suite, reporting, and IDE.
2. If your JavaScript uses Java APIs, you have them available for use.
3. You get all of the things you love about Spock: power assertions, data-driven testing, mocks, and most importantly: readable tests.
Red, red, red, red, green, refactor
Let’s write our test first:
And let’s stub out our function:
As you would expect, we get a failed test. Let’s implement that:
And here you get the power of the Groovy power assertion. Rather than a generic “Expected James, got undefined”, you get this:
Let’s change “first” to “firstName” and “last” to “lastName”:
And we have a green, passing test!
Data-driven testing
As with any other Spock test, you can use the data table to easily repeat tests with various values:
Interactions
What about interaction? Suppose we have a JS function that needs to call a callback function. We can pass a closure to stub out the behavior:
But we’re really not validating the interaction. We trust that it called the stub, but it’s not ideal. Instead, let’s try a Spock Mock:
We can also mock out functions that would normally be defined elsewhere, such as alert():
You can pass any implementation of an interface that is annotated with @FunctionalInterface: Consumer, Predicate, Supplier, etc. I chose Function here because it is the most flexible.
Resources
There you have it. I love Spock, and I’m learning to appreciate JavaScript (it’s what you might call an “arranged marriage”). I put the source from this blog post on Github so you can play around with it yourself. Please comment here if you have any questions!
• Nashorn blog
• Nashorn – The Combined Power of Java and JavaScript in JDK 8
• How Java 8 handles JavaScript