0
votes
1answer
29 views

Testing action with spock in Grails

I have an action that I would like to test for when content-type is application/json My action looks like this: def save () { request.withFormat { json { def colorInstance = new ...
0
votes
1answer
34 views

How can I determine if Grails application under testing?

I need to determine if my Grails application is currently under testing. I cannot use if (Environment.getCurrent() == Environment.TEST), because my current environment is Environment.CUSTOM with name ...
0
votes
1answer
71 views

Why can't Spock mock Groovy and/or Grails methods with named arguments without explicit maps?

I'm in the process of unit testing some code which uses the Grails link generator to generate, well, links ;-). In the code I'm testing the following statement appears. ...
0
votes
0answers
80 views

Grails session object property is not being set during integration test

I'm trying to test a filter in Grails 2.2.1 that stores a value in the global session object anytime somebody hits any URL in my application. Here's what I came up with, thanks to this fine post: ...
0
votes
3answers
52 views

Creating a Geb Module for UL LI's

I'm attempting to create a geb module that represents an unordered list of elements. I've seen examples for how to do this with tables but I'm having a hard time translating that to UL->LI ...
1
vote
1answer
128 views

running grails 2.1.3 tests in Intellij Idea: Bizarre error in Spock test: Cannot add Domain class [class x.y.Z]. It is not a Domain

I am in the process of upgrading to grails 2.1.x, and need to redo some of my old-style tests. I just added a new test to my spock Spec, and for this test I need to mock an additional Domain class. ...
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 ...
0
votes
1answer
378 views

Cannot get property 'config' on null object - Grails Service Spock Testing

Getting grailsApplication as null when running spock test cases using UnitSpec for service class in Grails application. Error - Cannot get property 'config' on null object Can anybody tell me how ...
2
votes
3answers
617 views

Upgrading from Grails 2.0.3 to 2.2.1: Server access Error: Connection refused

I'm trying to upgrade from Grails 2.0.3 to 2.2.1 as part of my Happy Trails application. https://github.com/jamesward/happytrails/tree/grails2 The first thing I struggled with was getting Geb/Spock ...
1
vote
1answer
322 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 ...
0
votes
0answers
134 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
0answers
154 views

Grails (JUnit) test suite

Do JUnit test suites work in Grails? I am writing a Groovy/Grails(2.1.2) project using IntelliJ. Is it possible to run Spock tests as a JUnit test suite? I have tried: package com.foo import ...
1
vote
1answer
101 views

Spock/Geb test pollution

I'm getting some sort of test pollution. When I run failing tests individually, they pass. When I run them all together, I get errors. The errors are not related to database. I can't understand the ...
0
votes
1answer
126 views

How to avoid null field errors in spock for Grails domain mock

Using grails 2.2.0 given this simple Domain class Order { static mapping = {table "ticket_order"} String foo } And associated spock test @TestFor(Order) class OrderSpec extends ...
0
votes
1answer
154 views

What Spock, Geb and Selenium versions should be used with Grails 2.2?

Has anyone managed to get the Geb and Spock plugins working with Grails 2.2? If so, what exact versions of Geb, Selenium and Spock are you using?
0
votes
1answer
62 views

How to select label text in GEB?

I have a select drop down which will display an error if a value is not selected. <div class="field contain" > <select name="myselect" id="myselect" class="error" > <option ...
0
votes
1answer
113 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
1answer
165 views

How can I automatically inject Grails components declared in resources.groovy into my IntegrationSpecs?

Using the Spock (0.7) Grails (2.1.2) plugin you can write integration specifications that automatically inject Grails archetypes (like services). However, I would like to do the same thing for Spring ...
1
vote
1answer
65 views

Extract specifications from Spock specs

Is there a way to obtain specifications (filtering the code) from my Spock tests printed in a file? For example, for the following spec: class CarSpec extends IntegrationSpec { def 'it should ...
0
votes
1answer
63 views

Make Grails Geb tests transactional

I need my Geb tests to be transactional (to rollback at the end of each test), how can I achieve that? I tried 'static transactional = true' and the @Transactional annotation in both class and ...
0
votes
1answer
272 views

Too few interactions in a Spock test for a Grails service

I thought I've understood Spock interactions but I have to admin that I'm still missing some pieces of the picture. Alright, here my problem: I have a method in a Grails service which performs some ...
3
votes
1answer
173 views

Determine order of execution of Spock tests

Is there a way to set the order in which tests are executed within an Spock Specification? For example: class MySpec extends IntegrationSpec { def 'test A'... def 'test B'... } I want ...
1
vote
1answer
144 views

Transactions don't roll back on IntregrationSpecs with autoFlush

I'm using Grails. All my Spock Integration tests are working. But when I turned autoFlush property true, several tests started failing, because data weren't being rolled back. Any ideas? *Im using ...
0
votes
1answer
86 views

Use of GORM methods in Integration test

I'm trying to use gorm find method on my domain class, inside of an Spock Integration Spec. My code: class myDomainClassSpec extends IntegrationSpec{ ... def 'my test'() { when: ... ...
0
votes
1answer
162 views

difference between geb.env and geb.driver

I am trying to find out the difference between geb.driver option against geb.env. I could not find any concrete documentation on them. I could understand that geb.env is similar to grails.env ...
0
votes
0answers
74 views

Recommended Unit Testing Systems for Grails? [closed]

I've recently started working with Grails and I've gone through the basics on getting started. However, I'm a bit unsure how to make an informed decision on a testing environment / system. There are ...
1
vote
1answer
301 views

Grails Spock tests execution order

In my grails application I use Spock and Geb to perform functional tests. Since all test run on the same database, I would like to provide order in which CRUDSpec classes being executed. How this can ...
0
votes
1answer
105 views

Using Spock, how do you run a particular feature via the grails command line?

I am running Spock tests for unit and functional tests. Awesome library. I am wondering how to run a specific feature of a Spock Spec from the grails command line. I know how to run all spock tests ...
0
votes
1answer
77 views

Logging a right click with spock-geb?

I need to test a right click on a map to drop a marker with Geb. I haven't found any documentation saying how to do this. Does anyone know?
0
votes
0answers
115 views

Testing grails controller NamespacedTagDispatcher (g.formatDate )

For unit testing controllers using Spock I am getting the below exception. This is coming when I am trying to call - g.createLink from inside my controller code. I tried setting controller.g = new ...
1
vote
2answers
138 views

How to make Spock Helper method available across all Specs or global

I have Spock Helper method in a particular Spec. This method generates strings to test sized constraints: def genString(size) { def nameTooLong = 'x' size.times { nameTooLong <<= "x" } ...
2
votes
1answer
133 views

How do I run a subset of spock functional tests in grails?

In some other testing frameworks I'm used to tagging tests, eg @really_slow, @front_end And then running different batches of tests, like I might want to set up a build slave to run all the ...
0
votes
2answers
386 views

In Geb, what is the difference between displayed and present?

I am writing functional tests and dealing with a modal window that fades in and out. What is the difference between displayed and present? For example I have: settingsModule.container.displayed and ...
1
vote
1answer
71 views

How can I specify environment for Spock test?

How can I specify test environment for specific Spock test other than default one?
4
votes
1answer
2k views

Inject dependencies in Grails Spock Specification test

I need to get the dependencies injected in my domain objects in my tests. This tests are placed in the test/integration directory and extends from spock.lang.Specification. How can I achieve this? ...
1
vote
1answer
161 views

Problems casting a null object with Spock

I have a Spock test that fails over two Mac OS X Lion machines, but works over other Linux machines and the Spock Web Console. I found another related question: Why I get a cannot cast object 'null' ...
3
votes
2answers
415 views

Can't install spock to grails 1.3.7 project

I created a simple hello world grails app using Grails 1.3.7: grails create-app hello grails create-controller hello Then I try to install the spock plugin using: grails install-plugin spock And ...
1
vote
1answer
109 views

Changing autoGenerating Grails Test Scaffold to Spock Test

Hi i m trying to change the auto-generated testCases in grails @TestMixin(GrailsUnitTestMixin) class KLAKSpec { void setUp() { // Setup logic here } void tearDown() { ...
1
vote
1answer
121 views

Spock Grails 2.0 Forward Not returning Model data

I am trying to test a Grails 2.0.4 controller Using Spock plugin --------------------Controller------------------- def addComment= { def pageCounter=0 def ...
2
votes
1answer
146 views

How can Spock be made to retry failed Geb tests?

I have functional tests for a Grails app which use Geb and Spock. Occasionally, a functional test will fail for timeouts or other sporadic behavior. In previous projects using TestNG, I'd have a ...
-1
votes
1answer
92 views

Spock Save Test [closed]

I m trying to test this method def save() { def activityArtifactInstance = new ActivityArtifact(params) def activityInstance = Activity.get(params.activity.id) def ...
1
vote
1answer
197 views

How would you encapsulate the login action of a user so that you can reuse it for your tests when writing Geb/Spock tests for your Grails app?

I am beginning to write functional tests with Geb and Spock. I wrote a few simple ones for the login of my application but now, I would like to encapsulate the login process so I can test pages that ...
3
votes
3answers
138 views

How can I repeat Spock test?

As described here @Repeat annotation is not supported right now. How can I mark spock test as repeated n times? Suppose I have spock test: def "testing somthing"() { expect: assert ...
1
vote
1answer
532 views

Spock framework has conflict with other plugins in Grails 1.3.8

I have installed Spock on Grails 1.3.8 application. It fails after running the test-app. It seems it has some conflicts with my other plugins but I cannot figure it out. I have over 20 plugins ...
1
vote
0answers
171 views

How to unit test artifacts that use a domain object with a sequence in it?

I am writing tests (using Grails 2.0.4/Spock/Build-Test-Data plugin) for my services that work with a domain object that has a sequence in it. The challenge is that the sequence is not working inside ...
1
vote
2answers
216 views

“Test a little, code a little” in Grails project, using Easyb or Spock, in IntelliJ

My original issue is described perfectly by this post: I want to follow TDD: write a small test watch it fail write just enough code to make it succeed watch it succeed repeat I am working on a ...
0
votes
0answers
190 views

How to unit test a method that contains a 'where' or uses a 'namedquery' using Spock/Build-Test-Data?

i tried several combination but i am not able to test a method that relies in Grails 'where' query or 'named-query'. Using Grails 2.0.3 by the way! code in service def findPersonInCity(name, ...
2
votes
3answers
573 views

How to mock domain specific closures in Spock

I'd like to test a Grails controller that is sending out emails using the grails Email plugin. I'm at a loss exactly how to mock the sendMail closure in order for interactions to work. Here's my ...
0
votes
2answers
414 views

Debug Spock tests in Intellij IDEA

I'm running Spock tests by "Right click -> Run -> Test Name". How can I run tests in debug mode? Debug icon run tests but doesn't stop on breakpoints
0
votes
1answer
56 views

Does “where” loads data before setup method executes?

I want to construct where conditions based on setup data. But seems like where executes before setup method so I'm getting null object. I'm I right and how can I construct where data based on my setup ...

1 2