Tagged Questions
0
votes
2answers
36 views
Testing grails controller that has a bean from src/groovy
I have a class in src/groovy
class Something {
def foo
}
this is in resources.groovy
beans = {
mySomething(Something)
}
In my Controller I use this :
class MyController {
def ...
0
votes
1answer
31 views
Grails assert - verify that assertion failed in unit test
Grails newbie question:
when you have assert [condition] in a Grails controller, how do you verify that the assertion fails from a unit test?
I'm thinking something like shouldFail(Exception) { .. } ...
0
votes
1answer
39 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
62 views
How to test file upload in Grails
I have a controller that takes in a file as part of the parameter. I'm wondering how can I test this?
my controller action:
def save () {
def colorInstance = new Color(params.color)
...
0
votes
2answers
42 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
33 views
Grails Domain Validator: Two fields, either can be null, but not both
I have a domain where there are two fields that can either be null, but not both at the same time. So something like this
class Character {
Association association
String otherAssociation
...
0
votes
0answers
27 views
Unable to run unit test in GGTS 3.2 with grails 2.2.1
I've had an auto-generated unit test file as follows:
package com.yuanjianlvye.szws
import grails.test.mixin.*
import org.junit.*
/**
* See the API for {@link ...
0
votes
1answer
32 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 ...
1
vote
3answers
141 views
Unit testing Controllers with 'withFormat' and html content type gives empty response unless 'render' explicitly called
In a Grails 2.1.1 application, I'm trying to unit test a controller that uses
'withFormat' to render the response either as HTML or JSON. However responding to the HTML content type always results in
...
0
votes
3answers
146 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
...
2
votes
1answer
58 views
using build-test-data plugin with Grails 2
I'm trying to use the build-test-data plugin (v. 2.0.4) to build test data in a unit test of a Grails 2.1.4 application.
The app has the following domain classes
class Brochure {
static ...
0
votes
1answer
101 views
UnitTest (groovy + grails) - Cannot teardown metaclass
I'm having a problem when I try to clean the class.
void testFileExists() {
FileObject file = EasyMock.createMock(FileObject.class)
VfsFileSystemManager.metaClass.getFile = {String s, String a ...
2
votes
1answer
67 views
Unit Testing nested command objects in grails
Docs say we can test controllers with command objects just by mocking params
http://grails.org/doc/latest/guide/testing.html#unitTestingControllers
I wonder if this works for Nested Command Objects? ...
1
vote
0answers
50 views
Grails Unit Test Comparing String Encoding Error
I have this unit test below that fails due to probably an encoding problem which I couldn't figure how to solve. Both the class and messages.properties files are UTF-8 encoded. I checked in file ...
1
vote
1answer
47 views
How to mock g.message while writing unit test for grails controller
I am using grails version 1.3.7. In my application in controller, I am making use of messages.properties and fetching the value of the property as
g.message(code:messageKey, args:msgParamsArr)
But ...
-1
votes
2answers
62 views
Mocking dynamic finder in grails unit tests
I am using grails 1.3.7.
While writing the unit tests for my controller, I am getting errors as my action in the controller uses dynamic finder for example "findByName('ABC')".
I understand that I ...
0
votes
1answer
71 views
Cant use grailsApplication.getMetadata.get(“ ”) while performing unit test for controller in grails
I need a quick help for my problem as follows :
In my grails application, in the controller, I use following kind of a thing :
class SampleController {
def action1 = {
def abc = ...
0
votes
0answers
52 views
Grails unit tests and cobertura xml file conflict (bug?)
To generate xml report from all unit tests in grails (2.1) u will only need tu run grails test-app. This command creates \target\test-reports\TESTS-TestSuites.xml file. I installed Cobertura plugin ...
1
vote
0answers
101 views
Using grails configuration values in domain object constraints
Grails 2.2.0
How do I access the custom configuration variables in a Grails domain object constraints.
I would like to have something like this:
class User {
def grailsApplication
...
1
vote
1answer
29 views
Unit testing a controller method fails because view is null
I'm using Grails 2.2.0.
This is my method to be tested:
def extendedSearchIndex () {
log.debug("ExtendedSearchIndex ... ");
def deviceClass = deviceService.getDeviceClass(request)
if ...
1
vote
1answer
351 views
How to mock a request when unit testing a service in grails
I am trying to unit test a service that has a method requiring a request object.
import org.springframework.web.context.request.RequestContextHolder as RCH
class AddressService {
def update ...
4
votes
1answer
149 views
Grails 2.0 Unit-Testing Filters: service injection and dependsOn
Currently upgrading a grails 1.3.7 app to 2.1.0 and have a set of filters I'd like to test. Seeing as the grails documentation for testing filters suggests that Unit Testing for filters is now ...
0
votes
0answers
143 views
Grails Spock unit tests pass locally but fail in CI environment
I have a set of Spock based unit tests that are passing locally but failing with the two following exceptions being logged on my CI (Jenkins) server. Some tests fail with both exceptions, but some ...
0
votes
1answer
91 views
Grails pollution between integration and unit tests
I know there's a lot out there about this particular topic, however I can't quite find anyone who has stumbled across my issue, and hopefully someone can explain this to me.
I have a Domain where I ...
0
votes
1answer
220 views
How to mock the GrailsApplication for unit test in a @component object
I have a Component
@Component
class SomeComponent {
@Autowired
GrailsApplication grailsApplication
String buildString(String someInfo) {
return ...
0
votes
1answer
154 views
Grails: Groovy:unable to resolve class grails.test.mixin.TestFor
I'm a newbie in Grails.
In the unit tests which are generated automatically by Grails, there is import for grails.test.mixin
import grails.test.mixin.TestFor
However, STS complains on Groovy:unable ...
3
votes
1answer
86 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 ...
0
votes
2answers
88 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 ...
0
votes
1answer
117 views
Error testing thrown exceptions in Spock unit tests
When I try to test for a thrown exception using the following code:
@TestFor(EncryptionService)
class EncryptionServiceSpec extends Specification {
def "test decryption of unecnrypted file"(){
...
0
votes
0answers
41 views
UrlMappings with null request during unit testing
I'm new to Grails and am experiencing a bit of a problem when trying to create a unit test for a controller to simulate controller mapping. According to the documentation I need simply to call ...
-1
votes
1answer
110 views
Unit Test and Integration on Grails 2.1.1 [closed]
I have a large application on groovy at grails framework.
Recently I have upgraded my application from 1.3.7 to 2.1.1
I am facing some problems in writing Unit Tests and Integration Tests.
I ...
1
vote
0answers
124 views
Grails: criteria unit testing fails
I'm trying to test the following action:
def search = {
//keep these values so we can rerender on the filters
def cal=Calendar.getInstance()
def startCal=Calendar.getInstance()
def ...
0
votes
1answer
248 views
Grails unit testing controller setting up params
I have controller with following code:
def profile = Profile.findByProfileURL(params.profileURL)
and unit test like this:
@TestMixin(GrailsUnitTestMixin)
@TestFor(ProfileController)
@Mock([User])
...
0
votes
1answer
93 views
Issue overriding method using mockFor and MockDomain
I'm trying to unit test a service and I would like to use a mock to override a method on domain object which retrieves a file from a DB.
def mockElem = mockFor(DataElement, false)
...
0
votes
1answer
196 views
How to get message from i18n message properties using grails 2.x unit testing?
I am getting problem in getting message from I18n properties file while writting test cases in grails 2.x.
in controller i am using like this:
g.message(code:'upload.coverpage.file.isempty.msg')
...
0
votes
0answers
243 views
How to get Request Object using MultipartHttpServletRequest for File Upload in Grails controller unit testing?
I am getting problem to get the file size while grails unit test cases for upload file.
File size showing zero.
I used the code as bellow:
in Unit test case i used Like:
File file = new ...
2
votes
1answer
135 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 ...
1
vote
0answers
188 views
NullPointerException in Grails unit tests because of null Params and Session
When migrating from Grails 2.0.0 to 2.1.2 some of our tests started failing with NullPointerException (the same behavior is observed with Grails 2.0.3)
Here are snippets of code enough to reproduce ...
0
votes
3answers
103 views
Grails Criteria not working in JUnit Test
I'm trying to test search method in my grails app but I'm having a null pointer exception. I mocked the domain in my test as follows:
@TestFor(AuditController)
@Mock(Audit)
class ...
0
votes
0answers
69 views
How do I mock the native MongoDB driver in a Grails unit test?
I'm having trouble with testing the following code:
class StatisticService {
def mongo // injected by grails
def deleteValues() {
def db = ...
1
vote
1answer
254 views
Testing a Grails controller using a mock service with GMock (0.8.0)
I have a grails 2.1 app which has a controller that calls a method on a service, passing in a request and a response:
class FooController {
def myService
def anAction() {
...
2
votes
1answer
511 views
grailsApplication access in Grails unit Test
I am trying to write unit tests for a service which use grailsApplication.config to do some settings. It seems that in my unit tests that service instance could not access the config file (null ...
0
votes
0answers
146 views
how to inject TagLib MockObjects in Grails Controller Unit test cases?
i have tagLib like this:
static namespace = 'j2'
def brandMessage = { attrs, body ->
def brand = ConfigurationHolder.config.j2.brand
def messageCode = (brand ? brand+".":"") + ...
0
votes
1answer
415 views
Grails unit test mock service return invalid object
I am creating unit test for this (working fine) Grails service :
class CommonCodeService {
def gridUtilService
def getList(def params){
def ret = null
try {
def ...
0
votes
1answer
148 views
Unit testing a Grails custom taglib based on built-in Grails taglib
I've an app based on Grails 1.3.7. And I need to write a unit test for a custom taglib that is based on the built-in taglib, <g:select /> to be specific.
I checked out the solution on this ...
0
votes
2answers
276 views
Testing Grails controller with multipart request
I have written a controller in Grails which accepts multipart request (xml+binary file1+binary file2+...). How can I unit test that controller? How could I set the content of the request in unit ...
1
vote
2answers
85 views
Where should I put test cases for Groovy classes in a Grails app?
I have a couple of Groovy classes in my app, under src/groovy. Where should the associated test classes go, and should they use the GroovyTestCase or the mixins(TestFor)?
0
votes
1answer
96 views
Grails: Mocking of hibernate domain actions - beforeInsert
given a domain constellation like this:
abstract class A {
def myService
def beforeInsert() {
myService.doIt()
}
}
class B extends A {
def beforeInsert() {
...
0
votes
2answers
65 views
Grails 2.0: how to use mocking correctly in unit test
Do I have to save a domain class to a mock table like this in 2.0:
def jdoe = new User(name:"John Doe", role:"user")
def suziq = new User(name:"Suzi Q", role:"admin")
def jsmith = new User(name:"Jane ...
0
votes
1answer
105 views
Grails controller test - member variable not recognized
Grails (2.1.1., JUnit 4.1, IntelliJ) Controller test. Why isn't uc visible for testHandleLogin in the top snippet?
This one fails the assertion in testHandleLogin, because uc is null
...



