Spock is a testing and specification framework for Java and Groovy applications.
4
votes
1answer
29 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
34 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
25 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 ...
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
63 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
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
40 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
28 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
24 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
75 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
35 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
1answer
43 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
37 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
81 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
4answers
69 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
78 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
99 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
55 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
93 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
49 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
133 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
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
64 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
159 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
69 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
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
2answers
101 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
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 ...
0
votes
2answers
92 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
247 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
0answers
321 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
106 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
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 ...
0
votes
1answer
400 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
630 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
70 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
81 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
337 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
vote
1answer
68 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
137 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
156 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
102 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
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 ...
0
votes
1answer
128 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
159 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
64 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
0answers
171 views
Selenium Webdriver/Geb/Spock - how to stop following HTTP 302 redirects
I am checking clicking through from a link. I know the URL to go to (from an href destination). Clicking on the desired element takes to that URL and the user is immediately redirected a few times ...
0
votes
1answer
155 views
Geb how to auto populate username/password prompts
I'm using geb with spock as my acceptance test framework. Everything is going great except that there is an issue with a couple of tests where when it redirects to another website we are prompted to ...







