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

learn more… | top users | synonyms

0
votes
1answer
19 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
43 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
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
29 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
37 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 ...
1
vote
1answer
85 views

Pass a parameter to Geb's static at() while in a Spock Specification

Is it possible for me to pass a parameter to “at()” so I can use a parameter in a module? Here is my scenario: Module for a page that has some common detail about a product (ProductModule, this has ...
0
votes
1answer
76 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
36 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
23 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 ...
0
votes
1answer
45 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
29 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
27 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
2answers
98 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= ...
0
votes
1answer
78 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
37 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"() { ...
0
votes
0answers
83 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: ...
3
votes
1answer
85 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 ...
1
vote
1answer
44 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
4answers
71 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 ...
0
votes
1answer
39 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
3answers
58 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
1answer
105 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
1answer
417 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 ...
1
vote
1answer
144 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
546 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
1answer
51 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 ...
0
votes
1answer
42 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
70 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
168 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
1answer
23 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
0answers
72 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
2answers
107 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 ...
1
vote
2answers
751 views

How to Run a Spock Test inside Eclipse

I try to run my first Spock Test inside Eclipse, and it does not work. I added all the Maven dependencies and plugins in my pom.xml, but when I run my test with jUnit, there is a popup windows with ...
0
votes
0answers
34 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 ...
3
votes
0answers
333 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] ...
2
votes
3answers
579 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
93 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', ...
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
1answer
259 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 ...
2
votes
1answer
80 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 ...
1
vote
1answer
108 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
57 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
3answers
658 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
72 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
82 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
350 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
1answer
66 views

How to write a spock testcase for a method which calls other methods inside

Say i have a method which populate some data to a list and it internally calls one more method(which i'm testing independently) and that populate some data to the list. Here what is the best way of ...
1
vote
1answer
72 views

spock unit test loops in then clause

I have a test with loops in the then clause: result.each { it.name.contains("foo") it.entity.subEntity == "bar" } for (String obj : result2) { obj.name.contains("foo") obj.entity.subEntity ...
0
votes
0answers
165 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 ...
0
votes
0answers
142 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 ...

1 2 3 4