Spock is a testing and specification framework for Java and Groovy applications.

learn more… | top users | synonyms

1
vote
3answers
737 views

How to Get a Spock project running in Eclipse?

I have tried twice to download the examples.zip file on the Spock website. Each time I try to run gradelw test I get this exception: D:\tools\SPOCK-~1>gradlew test Exception in thread "main" ...
4
votes
2answers
877 views

Installing Grails Spock Plugin in 2.0.0M1

I'm kicking the tires on Grails 2.0.0M1 and Springsource Tool Suite 2.7.1, but I'm having problems installing the spock plugin. When I run "grails install-plugin spock 0.6-groovy-1.8-SNAPSHOT" I get: ...
1
vote
1answer
308 views

Is human readable documentation possible with Spock?

So I recently got turned onto specifications and testing using tools such as FitNesse & Spock. I took a first stab at FitNesse and that was one undocumented challenge after another. So luckily I ...
0
votes
2answers
195 views

Weak failure trace when using page object pattern with spock and geb

When using spock+geb you can assert that you are on expected page by assertion e.g.: assert title == 'Sign In' and you get a nice failure trace if assertion fails: Condition not satisfied: title ...
0
votes
1answer
465 views

How to run unit tests in multi-module maven setup if i put the tests in a separate module?

i have created a multi-module maven project and i am trying to write and execute some tests on specific modules. I am trying to put all test-code into a separate module, but i am wondering if this is ...
0
votes
2answers
1k views

How to pass Grails test with Geb and Spock? (using grails-functional-test-development)

Please help. I have page login/auth.gsp with the following code inside the body <div id="page-wrap"> <div class="login-block"> <g:if test="${flash.message}"> <h3 ...
7
votes
1answer
547 views

Spock vs FitNesse

I've been looking into Spock and I've had experience with FitNesse. I'm wondering how would people choose one over the other - if they appear to be addressing the same or similar problem space. Also ...
2
votes
1answer
5k views

How to use the @Value annotation with a Spring PropertyPlaceholderConfigurer in a Spock test?

It is possible to use the @Value annotation with a Spring PropertyPlaceholderConfigurer? <bean id="propertyConfigurer" ...
0
votes
2answers
321 views

How to inject property values into a Spock test?

When using a Spock test, i have hardcoded some properties hardcoded into the spock test. The example is a JDBC url. I tried the @Value annotation together with a propertie file, but this seems not to ...
0
votes
3answers
643 views

How to rollback a specific record after a test?

i have a spock / spring test wich modifies some database content, and i wonder how to rollback that record. Currently i execute a raw sql statement, save the field data and after succesful test i ...
2
votes
1answer
725 views

Disabling a validation constraint in grails command object for unit testing (with Spock)

I'm trying to write some unit tests for Command object validations. When my command object has many fields with many validation rules, setting up the command object for each test case gets too verbose ...
2
votes
2answers
1k views

How to use Geb to check element attribute value after page event

After a bit of help here, I am writing a functional web test using Geb and want to test the disabled attribute value of an form submit button both before and after an event has occurred, the flow ...
3
votes
2answers
1k views

How do you get the sessionFactory in a Grails Geb/Spock test case?

I think I need to flush the hibernate session in a GebSpec test, and so I want to get the sessionFactory. It looks like it should be injected but when I do something like this:- class MySpec extends ...
1
vote
2answers
3k views

Easiest way to read Excel files in groovy?

Are there any warappers/utils available to read Excel files in Groovy. I am looking for something similar to Groovy SQL's rows function as shown in below spock test example. My intention is to use ...
0
votes
2answers
258 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(), ...
2
votes
1answer
474 views

peculiar behaviour of mockDomain

Hi I have the below unit test, class BookUnitSpec extends UnitSpec { def "Person_roleOf() is able to retrive the person role based on the ROLETYPE enum"(){ setup: "Mock the person object" ...
2
votes
2answers
415 views

Print grails test-app failures to console

There have been several questions about this on SO already, but none of the answers was satisfactory. I am doing test-driven grails development. However, because STS keeps crashing, I can't use it to ...
0
votes
1answer
163 views

is there possible to have maven version check in POM, to make a maven project download a plugin only if maven 2?

The problem is that Maven 3 seems to support the spock-maven plugin native, but maven 2 requires the spock-maven plugin. With Maven 3 however, building the project fails when maven-spock plugin is ...
5
votes
1answer
5k views

Selecting specific tests to run in gradle

I'm trying to fix our messy failing test runs, and, unfortunately, I'm very new to gradle. We currently have testng, junit, and I'd like to add some spock tests to the mix as well. I'm not quite ...
7
votes
1answer
1k views

spock versus easyb

I just had brief looks at easyb and spock , both seem to be similar, however spock seems to be more technically oriented, is there any best practice regarding when to use which ? For example which ...
4
votes
2answers
2k views

How to test a Grails Service that utilizes a criteria query (with spock)?

I am trying to test a simple service method. That method mainly just returns the results of a criteria query for which I want to test if it returns the one result or not (depending on what is queried ...
1
vote
3answers
1k views

Groovy mocking File factory with Spock

I decided to use the File Factory to mock the File object construction. class FileClass { def basePath def listObjects = [] def createFilePerObject() { listObjects.each {currentObject ...
0
votes
1answer
809 views

Why is this Spock Specification in Grails resulting in 'identifier of an instance of projectname.Event was altered from 1 to 2;'?

Running test-app integration:spock causes the following error: identifier of an instance of projectname.Event was altered from 1 to 2; nested exception is org.hibernate.HibernateException: ...
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
vote
1answer
303 views

Does the coverage plugin (Cobertura under the hood) report on Spock specifications?

With grails test-app unit:spock -coverage I ran the test explained at "Why is this method returning null even though the underlying controller is mocked using Spocks' Mock()?" Now the coverage ...
0
votes
1answer
354 views

Why is this method returning null even though the underlying controller is mocked using Spocks' Mock()?

import grails.plugin.spock.* class EventControllerSpec extends ControllerSpec { def "Creating a breadcrumb from an event"() { given: "I have a named event" def eventController = ...
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 2 3 4