aspose file tools
The moose likes Groovy and the fly likes Mocking grailsApplication in Integration testCases Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Languages » Groovy
Reply Bookmark "Mocking grailsApplication in Integration testCases" Watch "Mocking grailsApplication in Integration testCases" New topic
Author

Mocking grailsApplication in Integration testCases

Amit Sharma
Ranch Hand

Joined: Nov 22, 2005
Posts: 87
Hi
I have one service class which is using grailsApplication to get some value from properties file.But while writing testcase for it , it is giving null pointer exception for grailsApplication . I have googled and found some ways but they are not working in my code. Please suggest some way to implement this.


Amit Sharma SCJP 1.4, SCWCD 5, OCUP-100(UML)
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

grailsApplication only gets wired up for Integration tests. The simplest solution is to switch your test from a unit test to an integration test. Which makes sense, when testing a service, in my opinion.
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

I also found this which looks to solve your problem...

http://old.nabble.com/Testing-taglibs:-mocking-grailsApplication.config-td21309687.html

In your case, something like...

MyServiceClass.metaClass.getGrailsApplication = {-> return [config: [:]] }
Amit Sharma
Ranch Hand

Joined: Nov 22, 2005
Posts: 87
Hi Gregg

I am writing integration testcases and its still giving null pointer exception.

Thanks and Regards
Amit
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Mocking grailsApplication in Integration testCases
 
Similar Threads
THreads Problem Complex
Creating multiple tabs :one after another
Sequencing Records
Validate ID through RegEx
Trouble mocking grailsApplication properties in integration test