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

learn more… | top users | synonyms

1
vote
1answer
19 views

How to set objects while functional testing grails with Spock

I've got a sample Domain such as this class User { String username String password def userHelper static contraints = { username(nullable: false, blank: false) ...
0
votes
1answer
24 views

How to setup and teardown functional test data in Geb grails

I have many working/passing functional geb/spock tests (each extending GebReportingSpec) that are testing a web application with test data all created from the BootStrap.groovy at the beginning of the ...
0
votes
2answers
44 views

How to test a controller that has a @Mixin of a Basecontroller

I've created a BaseController that I mixinto other Controllers. Example: class BaseController () { def somemethod () { return "some method" } } @Mixin(BaseController) class MyController { ...
0
votes
1answer
34 views

Grails with Geb/Spock : Grails doesn't take my baseUrl

I'm using Grails 2.2.1 with the recent Geb version. My Spec test files are under functional/com.geb.mytest/ My GebConfig is on the same package as my Specs.. import ...
0
votes
1answer
51 views

How to run specific list of specs using Jenkins, Grails and Geb/Spock

I have 2 questions: What is the right command to execute a specific list of tests in Jenkins? We have a Jenkins instance up and running and have set up a grails job to run our functional tests. ...
1
vote
1answer
25 views

How to create Spock mocks outside of a specification class?

We combine Spock tests with Spring's @ContextConfiguration so we can build beans in a spring context and then use Spock for the actual testing. We would like to inject spock mocks into our spring ...
0
votes
0answers
40 views

Work with Database using Spock and Geb.

I hope someone have already faced an issue to verify that application shows correct data from database. I reviewd how groovy used SQL, but I have no idea where and how I should do that. I'm just ...
0
votes
1answer
66 views

Grails 2.0.4/2.1.1 test-app throws ClassNotFoundException (GrailsSpecTestType)

I have a legacy grails appliction that I recentyl upgraded 1.3.7 -> 2.0.4 The same thing happens after I upgrade it to 2.1.1 When I try to run test-app from GGTS I get: | Error Error executing ...
3
votes
1answer
35 views

How can I efficiently mock a fluent interface with Spock mocks?

I'd like to mock some fluent interface with mock, which is basically a mail builder: this.builder() .from(from) .to(to) .cc(cc) .bcc(bcc) ...
0
votes
1answer
40 views

Can I use Spock and Gab without grails or gradle or anything else?

I'm a QA and I want to use Spock+Geb for my testing. As I understand I have to setup grails (or gradle, or something like that) to use Spock+Geb. Or grails is not required? In this case what is the ...
4
votes
1answer
81 views

Simple Mockito verify works in JUnit but not Spock

Using the most basic example from Mockito's examples page, I am able to run successfully in JUnit. However, when I run the same test in Spock, it fails. JUnit/Java version (this passes): import ...
0
votes
2answers
47 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
51 views

Leveraging Mocks in BDD and TDD (Spock + Mockito)

I am using Spock and Mockito and am having a difficult time figuring out how to get value from Mocks. I am attempting to build RESTful Services for a REST interface called UserResource that ...
0
votes
1answer
48 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
40 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
136 views

Spock + GEB vs. Robot Framework

Good day for everyone. Previously I used Robot Framework to automate testing of applications, but a new client asked pay attention to Spock + GEB. I've never used it, but I need to quickly compare ...
0
votes
1answer
28 views

User story definition in spock

I have recently started using the spock framework for BDD in my Java project. I noticed that in a spock specification it is possible to define a feature and a given-when-then clause in a ...
1
vote
1answer
80 views

Best practice integrating Spock with Jenkins, Sonar

We decided to give Spock a try as a testing framework for our java based EE application. Currently we have a CI infrastructure deployed based on jenkins + maven + jacoco. Q: the question is what's ...
2
votes
2answers
51 views

Execute some action when Spock test fails

I'd like to execute some action when Spock test fails. Specifically, take a screenshot. Is it possible? How to do it?
0
votes
1answer
46 views

Is there any way to do mock argument capturing in Spock

I have looked around and tried different things to no avail. The examples out there on the interwebs are few, and IMHO pretty simple. My use case: (the 'itocNetworkHandler' below is the mock) when: ...
0
votes
1answer
109 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
1answer
55 views

Save current url with geb

I work with tests on geb and i have problem. I need to save/print the address of the current page (function SaveUrl()). Spock Test: class TestSpec extends GebReportingSpec { def "Google"() { ...
1
vote
1answer
65 views

A comparison of ScalaTest and Spock

How do scalatest and spock differ? what is the added-value of each ? Which is more agile for Behavior Driven Development (BDD)? Please could you share some thoughts on the matter ? I want to start ...
0
votes
1answer
51 views

Demonstration using Spock

I'm going to be doing a presentation on Spock next week and as part of the presentation I need to give a demonstration. I have used Spock a bit before for a project but haven't used it in about a ...
0
votes
0answers
128 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
92 views

Is it possible to assert that the page has stopped scrolling in a waitFor

I have a page where I click a "change" link which displays another section. When this happens, the page scrolls vertically a bit so that the visible section is somewhat centered on the screen. My ...
3
votes
1answer
114 views

Behavior Driven Development for java what framework to use?

For the ongoing projects and for improving our development process we considered adopting TDD as development philosophy. While researching for best practices and how to "sell" the new approach to my ...
0
votes
1answer
158 views

Subsequent calls to Geb Spock Test from GroovyConsole fail with UnreachableBrowserException

I'm running the below script (a GebReportingSpec test case) from within GroovyConsole.exe. It runs properly the first time, when GroovyConsole is launched. It opens up FF, runs the scenario, and then ...
0
votes
3answers
72 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 ...
0
votes
2answers
156 views

Throw/Catch Exception in Groovy

I am new to Groovy and trying to implement Spock framework in my application. Here is my test code: def "Test class with mock object"() { setup: SomeObject sp = Mock() test= ...
1
vote
1answer
53 views

using memoize in groovy

I am currently practicing test driven development in groovy using spock. I have 1 set of tests where 3 different implementations doing the same thing: iterative, recursive, and memoized. so I have ...
1
vote
1answer
189 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. ...
0
votes
1answer
46 views

How i can get the method in the setup method in spock?

how i can get the method of the running feature? I want to prepare the database with different datasets. This datasets should be defined with annotations like this: @PrepareDB("dataset1") def ...
0
votes
1answer
92 views

running same tests for different classes in groovy and spock

I'm currently trying to run the same test cases for 2 different classes but having issues with the setup(), I see similar questions, but haven't seen the solution for groovy testing with Spock, and I ...
1
vote
1answer
280 views

Mock static method with GroovyMock in Spock

First-timer here, apologies if I've missed anything. I'm hoping to get around a call to a static method using Spock. Feedback would be great With groovy mocks, I thought I'd be able to get past the ...
0
votes
0answers
80 views

Jacoco plugin for Sonar doesn't support Spock test

I have a very weird problem with the Jacoco plugin for Sonar. I have a multi-maven project were I wrote an "Event" class and an "EventTest" class in Spock. The Jacoco plugin for Sonar doesn't give me ...
0
votes
1answer
24 views

Stubbing action listener with spock

I have this in my presenter: private void init() { view.subscribeOnButtonClick(new Clickable() { @Override public void clickPerformed() { sortArray(); } }); } And I want to ...
0
votes
2answers
177 views

Get Element By Xpath (Geb)

I have problem with getting Element by Xpath. I use Spock with Geb. I have HTML: <form class="form" style="display: block;"> <div class="crm-field"> <div class="req label"> <span ...
0
votes
0answers
38 views

Design patterns used in Spock

Question: What are a couple design pattern examples used in the Spock framework? I am going to be doing a presentation on the Spock framework and after looking at their main site I'm realizing that ...
0
votes
2answers
110 views

Groovy getting string errors

Trying to figure out this geb and spock testing framework and Having some problems. Right now I am just trying to work on getting spock to work. @Grab(group='org.codehaus.geb', module='geb-core', ...
1
vote
1answer
321 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 ...
4
votes
0answers
398 views

JUnit + Maven + Parallel Test Execution Error

I have a problem executing JUnit Tests in parallel when Using JUnit, Groovy, Spock and Maven. When executing them, I get the following after test are passed succesfully: [INFO] ...
1
vote
1answer
128 views

Check the url in a Geb/Spock test

In my Spock functional test, I want to test that the current location of the browser is not a certain url. I know I can do: try { at(PageWithUrlIDontWant) // do something } catch ...
0
votes
0answers
74 views

Maven configuration for Spring and Spock in STS

I have the following maven configuration for spock with spring. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
2
votes
1answer
93 views

Strange issue when clicking buttons in Geb with Spock

The issue is that I'm able to click a button, but the process that the button should execute then just hangs, and doesn't happen. When clicking the "post" button, for example, the button should turn ...
0
votes
1answer
534 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
768 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 ...
0
votes
1answer
81 views

Geb Configuration

This seems like it should be pretty straightforward, but I am not seeing how to get access to values in my GebConfig.groovy file. I've tried the following: userName = "myUserName" properties = { ...
2
votes
1answer
95 views

Geb Reporter / Extension to retrieve Test Status

I am attempting to replace some custom java selenium extensions by utilizing geb. I have hit a bit of a brick wall when I attempt to utilize a grid in the cloud (i.e. SauceLabs). When my tests ...
1
vote
1answer
449 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 ...

1 2 3 4