0
votes
2answers
37 views

grails domain class not mocked

I'm trying to mock the Role class generated by shiro plugin in a Grails 2.2.1 app. When i'm runnint the unit test I'm getting this error that looks like the dynamics method are not added. This is the ...
0
votes
1answer
28 views

Creating domain objects when testing a grails service

I am trying to create unit tests for testing my grails services. I have the following test @TestFor(ActivityProcessorService) @Mock([ActivityProcessorService, Activity]) class ...
0
votes
1answer
61 views

Mock criteria count api grails/groovy

I have a problem while trying to unit test a service class api MyService.groovy public int myMethod() { def cr = MyDomain.createCriteria() def myDomainCount = cr.count { isNull("column1") ...
0
votes
2answers
127 views

Grails 2.1 Unit Testing Command Object mockForConstraintsTests not working?

I have used manually written as well as Grails generated Unit tests for this command object: package myapp @grails.validation.Validateable class SearchCommand { String basisBuild ...
1
vote
1answer
226 views

Using Spock to stub both Gorm and other methods in a Grails domain class

Sorry if this is a newbie question but I would really appreciate any insights the community could offer with regard to a problem I am having with stubbing the following method which I have in a Grails ...
1
vote
1answer
72 views

Mocking the log object

I have such code: @TestFor(MyService) class MyServiceTests { void testIt() { def logTo = [] def loggerMock = mockFor(service.log.class) loggerMock.demand.error(1..1) { ...
0
votes
2answers
81 views

How to mock a service in an integration test for a dynamically scaffolded Grails controller?

I'm trying to mock a service in an integration test for a dynamically scaffolded controller. I get an error indicating that the controller property for the service is not accessible from the test. It ...
1
vote
0answers
178 views

@Mock domain objects in unit testing in grails listOrderBy dynamic finder throws an exception

I am writing a unit test for a grails controller. Here is a snippet of the code: @TestFor(MyController) @Mock([MyDomain]) class MyControllerTests { void testController() { ... ...
1
vote
1answer
211 views

Grails: Returning a mocked object from a mocked service

I have a problem trying to unit test a service in Grails (1.3.6). The service has an instance of another service which it uses to create an object. I am trying to mock the creator service and also ...
0
votes
3answers
216 views

Groovy/Grails: Use JSON to mock model data

I'm working on the front end of an application, and model data isn't yet available. I'd like to be able to mock the models that I will eventually be getting using JSON. Ideally, I'd be able to define ...
2
votes
1answer
741 views

Mock testing in Grails 2.0 errors

I've recently upgraded a Grails 1.3.7 project up to Grails 2.0.4 and noticed that many of my unit tests with mocking have started to fail. The Controller tests seem to pass just fine, the issue comes ...
0
votes
1answer
165 views

Mocking HttpClient in Groovy [duplicate]

Possible Duplicate: Unit Testing a static method in a Java Class from Groovy Test case I am trying to unit test a java class using groovy The Helper has a static method in it where an ...
1
vote
2answers
388 views

Unit Testing a static method in a Java Class from Groovy Test case

I am trying to write a test case in groovy for a class that is written in java. The Java class(name:Helper) has a static method in it where a HttpClient object is obtained and executeMethod is called ...
0
votes
2answers
307 views

Mocking Java Class from Groovy Test case

I am trying to write a test case in groovy for a class that is written in java. The Java class(name:Helper) has a method in it where a HttpClient object is obtained and executeMethod is called on it. ...
2
votes
1answer
161 views

Groovy-grails Mocking issue. Unable to Mock

I have a service class method in my grails porject which uses a helper class to fetch the response as xml. The xml is then send out as the response of the service class method. ServiceClass:- class ...
0
votes
1answer
583 views

How to mock a java class inside a Grails unit test?

I have a java class, which I've added to my resources.groovy like this: import persistentrep.ReasoningXMLLoader; // Place your Spring DSL code here beans = { reasoningXMLLoader(ReasoningXMLLoader) } ...
0
votes
1answer
65 views

how to mock a closure method

I have a service class defined as follows class MyService { def otherService; def performService( ) { Navigator.navigate( retrieveData, { otherService.doSomething(it) } ); } def ...
1
vote
1answer
205 views

grails 2.0.1 unit test NullPointerException on save

I'm having a strange problem with unit test in grails, when I try to save a mocked object it throw a NullPointerException java.lang.NullPointerException at ...
4
votes
3answers
1k views

mock configuration in Grails tests

Prior to Grails 2.0.X it was possible to mock configuration using a mockConfig method provided by the base class that tests extend. However, in Grails 2.0.X it is recommended that test classes use the ...
1
vote
2answers
335 views

How to mock the 'new' operator

I'm testing some groovy code that uses a java library and I want to mock out the library calls because they use the network. So the code under test looks something like: def ...
1
vote
1answer
705 views

Grails @Mock annotation

I've read about this annotation in the Grails documentation (Chapter 9: Testing). But I can't understand what is it... The problem is that I need to mock the dynamic methods of the GORM, there's a ...
5
votes
2answers
1k views

How to mock a service injected in a domain class from a Controller Test Class?

I have a domain class which extends an abstract class which injects the spring security core plugin service. class Extra extends WithOwner { String name } abstract class WithOwner { ...
3
votes
2answers
1k views

Grails : How I do mock other methods of a class under test which might be called internally during testing

I am writing a test for methodA() in a service class similar to the one given below. Class SampleService { def methodA(){ methodB() } def methodB(){ } } When I test methodA(), I need ...
2
votes
2answers
241 views

Is it necessary to remove the metaClass after use mockDomain in Grails unit tests?

mockDomain provide a dynamic methods like save(), validate(), ... for a domain class. Is it necessary to remove the meta classes for each class I mock using mockDomain? class UserTests extends ...
1
vote
1answer
593 views

MockDomain call providing fixture domain data not working, what am I missing? Grails 2.0.1

I'm attempting to do some simple mocking of a Domain class within a unit test for a Grails service as per following the documentation, but it does not seem to be working at all, in that queries for ...
3
votes
1answer
1k views

Throw an exception from a grails mock method

On a Grails' controller unit test (more specifically a Spock ControllerSpec), I'd like to check the behavior of the tested method when a collaborator throws and exception. I'm using the mockFor ...
0
votes
1answer
166 views

How to fetch instances of an abstract domain class in Grails unit tests?

I have a domain object hierarchy with a top level abstract class. In GORM, they could be defined like this: abstract class Dog { ... } class Collie extends Dog { ... } Now I would like to unit ...
0
votes
1answer
365 views

how to integration test email body in a Grails Service that uses the Mail plugin

I am attempting to write integration tests for a Grails service that does, among other things, send email via the excellent Mail Plugin. I can disable the actual sending of email via configuration, ...
8
votes
3answers
1k views

How to unit test controllers that use springSecurityService?

I have a user class like such: class User { transient springSecurityService String displayName String password <snip> protected void encodePassword() { password = ...
0
votes
1answer
127 views

Building Grails test data for non GORM objects

We're building a Grails front-end to a REST based backend. We have many value (DTOs) that we marshal to/from JSON. I'm looking for a convenient way to build mocks of these DTOs for testing purposes. ...
0
votes
1answer
318 views

grails mockDomain() different behavior when running on test and all test-suite

I'm using two mockDomain in a Unit Test. When I launch only one UT (using grails test-app -unit MyTest), the test passes ok but if I launch the whole test suite (grails test-app -unit), the tests ...
1
vote
2answers
599 views

Grails - Mocking servletContext in Unit tests

I am having hard time mocking servletContext in a unit test. This is how I try to do it: import org.springframework.mock.web.MockServletContext void testSomehing() { def servletContext = ...
0
votes
1answer
135 views

Why does this mock 'return' a Closure as opposed to the actual return value?

I am mocking SearchableService in a Spock specification: // In SearchControllerSpec: def sControl = mockFor(SearchableService) sControl.demand.suggestQuery { Map m -> 'suggested query string' } ...
2
votes
3answers
834 views

Grails mockDomain save not saving

I'm writing a unit test for some simple methods. The issue I am having is that 'save' is not working for my domain object even though the domain should be mocked. When calling validate on the domain ...
0
votes
1answer
184 views

Mocking an action with metaClass in Grails

I'm trying to mock the action overview of a Controller, but it isn't working. I tried this ways: MyController.metaClass.overview = { -> println "MOCKED OVERVIEW" ...
0
votes
1answer
1k views

Mock a method for Grails Unit Test

In one of my unit tests, I am having some difficulty getting a mocked method to executed. I have the following test code: void testExample() { def mockICFService = new MockFor(ICFService) ... ...
0
votes
1answer
249 views

Simulate throwing an exception for mocked domain class

I am in the process of writing unit tests for a Grails service class. The service class uses multiple domain classes. Creating mocks for the domain classes works like a charm using the mockDomain ...
0
votes
1answer
654 views

Second Use of GrailsApplication Mock in Service Test Fails

I'm unit testing a Grails service and using Mocks to mock out calls to the GrailsApplication class. I have one test that succeeds but when I try subsequent tests they fail. I am using demand to mock ...
7
votes
3answers
446 views

In Grails, is there a good way to mock the current time using Joda time?

I'm writing some code that does date and time calculations against the current time. In Joda time, this is accessed through a (Java) constructor, as it is an immutable object. I need to be able to ...
0
votes
2answers
256 views

How can I get rid of “no such property” when testing a class that accesses Item.constraints.xyz?

The following constellation in a unit test returns: No such property: title for class: myproject.Item Possible solutions: title ItemController.groovy def add = { [itemInstance: new Item(), ...
1
vote
3answers
274 views

How can I have a domain object's .save() method fail in an integration test?

For an integration test, I want to have a .save() intentionally in order to test the according else-condition. My class under test does this: From UserService.groovy: User user = ...
0
votes
2answers
112 views

Stubbing all methods of a groovy class?

Is there an easy way to stub ALL methods of a groovy class? In one of my tests, I need to make sure a certain code path doesn't touch a service at all. That is, I want to mock every method like this: ...
2
votes
2answers
818 views

How can I overwrite a method's logic when using mockDomain in grails?

I would like to mock a domain with everything as usual (mockDomain(Class)), but I would like to overwrite one of the domain's methods (beforeDelete to be specific) with custom logic just for that one ...
1
vote
1answer
569 views

Why do I receive “No such property” in before* and after* logic of domain classes in unit tests?

I notice that any reference to a property is missing when requiring domain classes in grails unit tests. Somewhere in the Unit Test mockDomain(Event) 10.times { e = new ...
2
votes
2answers
645 views

How to mock classes in 'src' folder in Grails (unit testing)

I'm trying to write some unit tests for a service in my Grails app. The service, 'MyService', uses a class located in $APP-ROOT/src/groovy/ called 'MyHelperClass'. In the unit test for MyService, I ...
2
votes
1answer
328 views

Stubbing Custom TagLib method in Controller Unit Test

I have a method in a custom taglib like so: def deleteAction = {attrs -> def id = attrs['id'] def type = attrs['type'] def clazz = attrs['class'] def html = new MarkupBuilder(out) ...
4
votes
1answer
2k views

Grails mockFor and How Best To Test The Method Is Called with Correct Arguments

I want to test that the controller calls the service method with the correct arguments. What is the best way to do that? My current plan is to use mockFor and then through the closure check the ...
0
votes
2answers
652 views

mocking a method while calling a method in same service class groovy grails

im looking for something similar to what i would do with rhino mocks but in groovy. i sometimes use partial mocks as well. in ASP -- Rhino mocks const string criteria = "somecriteriahere"; ...
2
votes
2answers
745 views

How To Mock Out A Closure In Order To Test The Grails Service Result?

I want to unit test the return value of some code which looks similar to this: Groovy Service code to test: def findByThisAndThat(something) { : def items = [] ...
0
votes
2answers
147 views

mocking the return value of domainInstance.validate()

I am writing a spock unit test that tests a controller method. The controller action under test instantiates a new domain instance object and calls validate on it before it saves. Is there anyway of ...

1 2