How can I test the initBefore method of Groovy Domain-Classes with a unit test in Grails?

I created the dummy object but the beforeInsert-method is not called until myObject.save() is invoked and save is unavailable in the testing environments.

Edit: its a unit-test. there is no error, but the method beforeInsert is not called

link|improve this question

57% accept rate
feedback

2 Answers

Do you want test if the beforeInsert method is being called or the logic of beforeInsert is correct?

If you want to test if beforeInsert is being called the test class should extend the GrailsUnitTestCase. Do so should give you mocking capabilities and add all the methods like save() and validate(). You can verify if the mocked object called the beforeInsert method or not when you do a save().

If you are testing the logic of beforeInsert then you don't need to mock it. You can create the object and test the logic just like other unit test.

Hope this helps.

link|improve this answer
feedback

Just creat a domain object and save() it. Then check whether or not the "beforeInsert" manipulated your Object.

save() is available in the testing enviroments. Please show your Stacktrace when calling myDomainobject.save()

link|improve this answer
The author is explicit: he created an object, tried to save it, and it did not call beforeInsert. – Antoine Dec 5 '11 at 8:24
no, as far as I understand the author: calling myObject.save() in test enviroment is causing errors. – Rene Dec 5 '11 at 10:41
true. The question in not precise enough anyway. Is it unit or integration tests? Save is only available in integration tests, unless mockDomain was called. – Antoine Dec 5 '11 at 11:26
the method was not called (there was no error). it is a unit test (see the question title and I added it to the body too). thanks. – LukeSolar Dec 5 '11 at 11:37
I suggest creating an integrationTest and call save() on your object. Or write a a method: myBeforeInsert() and put the code from beforeIsert into it. Then just call myBeforeInsert in beforeInsert. you can then test the code in myBeforeInsert() in a unit test. – Rene Dec 5 '11 at 12:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.