Tagged Questions
0
votes
1answer
78 views
grails, unit test mock domain with assigned id
I am using assigned id in my domain
class Book {
Integer id
String name
static mapping = {
id generator: 'assigned'
}
}
so to add a new book:
def book = new Book([name: "The ...
0
votes
1answer
35 views
Grails get latest in a child collection - sort not working?
Head scratcher here, not sure if its the code or the test.
We have a requirement to keep track of status changes for an object and the history of those changes. There are times when only the latest ...
3
votes
1answer
94 views
Is unit testing of mongodb dynamic attributes possible in Grails 2.2?
It seems docs for mongodb-1.1.0GA are outdated when it comes to unit testing section: http://springsource.github.com/grails-data-mapping/mongo/manual/ref/Testing/DatastoreUnitTestMixin.html
Following ...
2
votes
1answer
144 views
Overriding event closure on Grails GORM domain class for unit testing
I'm working on a fresh Grails project and recently noticed the default convention in the Spring Security Core generated User class now auto-encodes the password via a beforeInsert/Update event. That's ...
3
votes
1answer
217 views
Grails Unit Test “CreateAlias” doesn´t work
I am trying to make a unit test over a namedquery method and it´s not working as I am using the method grails.orm.HibernateCriteriaBuilder.createAlias which doesn´t seem to be found by Grails: " No ...
0
votes
1answer
123 views
Mock dynamic finder
In tests i need to override function of some domain class, like this
SomeDomain.countBySomeField(Paramater)
To solve this i tried
@Mock([SomeDomain])
class SomeDomainTests ...
...
void test() ...
1
vote
1answer
217 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 ...
0
votes
2answers
231 views
Grails: getting IndexOutOfBoundsException from Datamodel Objects in Service during unit test
I have A simple Customer + PaswordReset datamodel.
In my PasswordService I call PasswordReset.findByUsername() and save() and it works fine.
I then made PasswordServiceTests which has ...
0
votes
1answer
255 views
How write tests for Grails delete() methods
I'd like to write some tests for delete() in Grails. These need to be integration tests because they require the database with hibernate.
It would be nice to be able to write tests to figure out ...
0
votes
1answer
188 views
Invalid objects in memory after failed constraints validation
Using Grails 2.0.0 I am created service, that creates instances of Player class and saves it at database. Then I'm wrote JUnit integration test that check that service method createNewPlayer(String ...
0
votes
1answer
180 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 ...
1
vote
2answers
1k views
call to .save() on domain class fails with no signature of method .save() in unit test
I'm using Grails 1.3.2 in NetBeans. I have a very simple unit test that fails with this error:
No signature of method: com.maxrecall.maxrequire.domain.Release.save()
is applicable for argument ...
0
votes
4answers
2k views
Grails unit test of domain class (gorm)
Started playing with grails and I want to evaluate GORM, so I created a domain class using Spring Tool Suite: Client with name, vatNumber, and regNumber and the test class was created automatically.
...
0
votes
1answer
743 views
Grails testing user role custom validation constraints using Spring Security Core Plugin
I'm sure this is a fairly common situation. I'm using the Spring Security Core plugin and want to create a domain model that has a Person limited to certain roles:
class Workgroup {
Person manager
...
1
vote
1answer
1k views
Mocking grails method that uses a findAll, Generating a MissingMethodException
def retrieveEatenFood(String token, String addedDate) {
def consumer = Consumer.findByMobileToken(token)
if(consumer != null) {
def efList = []
def list = ...
1
vote
1answer
472 views
Grails GORM unique constraint on a List of BigDecimal
I've got a class:
class Test {
List<BigDecimal> values
static constraints = {
values(unique: true)
}
}
However,
void testUniqueness() {
List valList = [
new ...
2
votes
2answers
3k views
What are the restrictions of Grails' mockDomain() method?
I'm writing a Spock Spec (unit test) for a Service in Grails 1.3.5, and I've run across the following error:
No signature of method: myapp.Thing.findAll() is applicable for argument types: ...
1
vote
1answer
660 views
Grails Integration testing: problems with get
I'm trying to write a simple integration test, but having some trouble with Domain Objects. I've read on unit testing but can't figure it out.
This is my simple test:
User user = User.get(1)
...
