Hi I have a controller called ApiController which uses a service called ApiService like so:
def createCategory(){
def jsonObj = request.JSON
jsonObj.each{ key, value ->
params.put(key,value)
}
render apiService.createCategory(params)
}
Which works fine. But I cannot seem to write a test for it.
This is how far I have got:
@TestFor(ApiController)
@Mock([Category,ApiService])
class CategorySpec extends Specification {
def setup() {
}
def cleanup() {
}
void "test"() {
setup:
def apiService = Mock(ApiService)
when:
request.method = 'POST'
request.requestMethod = 'POST'
params.categoryID = 'test'
controller.createCategory()
then:
println(response)
1==1
}
From this I get the following error:
java.lang.NullPointerException: Cannot invoke method createCategory() on null object
This is obviously because It cannot see my apiService bean. So My question is how do i do this in Spock?