Tagged Questions
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
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
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
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
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= ...
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
72 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
171 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
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 ...
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', ...
3
votes
0answers
337 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
109 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
1answer
421 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 ...
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
83 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
351 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
42 views
spock doesn't return mocked respons if an empty string is passed
class Foo {
def getSomeFood(def param){
//do some stuff
}
When you mock this in a spec
def foo=Mock()
and make the method return something
foo.getSomeFood(_) >> "apple"
if this ...
0
votes
1answer
53 views
Extending spock specification gives error in code
Geb Groovy and spock gurus, could you please help me understand why the following code doesn't work for me ( the variable 'closr' gives a null value)
import geb.Browser
import ...
0
votes
1answer
172 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 ...
0
votes
1answer
92 views
In Geb, how to assign a list of inputs to a list of HTML input entities
I have a question, I’ve got a CSS selector that returns back a list of input objects (all text inputs) and I’d like to easily set the values to them.
I’d like to be able to do something like this: ...
0
votes
1answer
68 views
Spock-Spring - How to control when the transaction around a data-driven test is being rolled back?
I'm using the Spock testing framework together with the Spock-Spring extension which allows you to use Springs' @Transactional and @Rollback annotations. Given that I got a data driven test like this:
...
3
votes
1answer
68 views
How to create spock-style DSL for dataset description?
I'd like to have a dataset description in a spock data-driven specs format:
'Key' | 'Value' | 'Comments'
1 | 'foo' | 'something'
2 | 'bar' | 'something ...
2
votes
1answer
278 views
Geb + Spock + groovy setup
So I've been attempting to get these tools running together, but I can't seem to get things setup properly. Each time I am presented with the following error:
The project was not built since its ...
0
votes
2answers
218 views
How to Report Results to Sauce Labs using Geb/Spock?
I want to use the Sauce Labs Java REST API to send Pass/Fail status back to the Sauce Labs dashboard. I am using Geb+Spock, and my Gradle build creates a test results directory where results are ...
0
votes
2answers
160 views
Object comparison in spock test fails
Hello all and thank you for reading.
I'm trying to write a test using spock for a method I have.
The method looks like this -
InvoiceView getInvoiceDetailView(String invoiceNumber, Boolean isNew) ...
1
vote
1answer
60 views
Use of parametrized tests with void methods
I can't understand how I can setup a parametrized test with spock for void methods.
This is my simple test case for a linked list:
@Unroll
def "should delete the element #key and set the list size to ...
0
votes
1answer
106 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 ...
1
vote
2answers
141 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" }
...
1
vote
1answer
186 views
Classical unit test as Groovy Spock method
I have a Groovy Spock method that has the following pattern:
def "My test"() {
def a = createA();
assert a.fieldLevel1.isValid()
def b = a.fieldLevel1
assert b.fieldLevel2.isValid()
def c = ...
0
votes
1answer
189 views
IntelliJ: Specifying different groovyc version for source and test within same module
I am using IntelliJ 11.1.3, IvyIDEA Plugin for IntelliJ, Spock 0.5 (which depends on Groovy 1.8.4), and Groovy 1.5.6.
I have an IntelliJ module that follows Maven Standard Directory Layout. The ...
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
164 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' ...
2
votes
1answer
148 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
vote
1answer
205 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 ...
0
votes
1answer
380 views
Spock mocks for Akka's ActorRef
I've tried to make an Spock test for a class, where i need to check that it sends a message to actor (say statActor). I know that Akka have special library for integration test, but seems that it's ...
1
vote
2answers
798 views
How to mock HttpServletRequest in Spock
We have a ServletFilter we want to unit tests with Spock and check calls to HttpServletRequest.
The following code throws
java.lang.ClassFormatError: Absent Code attribute in method that is not ...
0
votes
2answers
133 views
Can I write unit test for following in spock?
public boolean accept(File directory, String fileName) {
boolean fileOK = true;
if (name != null) {
fileOK &= fileName.startsWith(name);
}
if (pattern != null) {
...
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
vote
4answers
322 views
Spock error: cannot find shared instance field
I just cloned the example project geb-grails-example and facing an error related to Spock.
When running the grails (2.0.3) command test-app, I get the following error:
| Server running. Browse to ...
1
vote
2answers
755 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
1answer
173 views
Adding mocks to sets works with .times, not with for loop
We've come across a very peculiar behaviour with mocks and sets in Spock.
In a Spock (0.5, Groovy 1.7) given: block (amount is an Integer):
Set<Operand> operands=new HashSet<Operand>()
...
1
vote
0answers
121 views
Page transition not happening when I click on hyperlink with Geb
When I use
searchResults(0).ApplicationId.click(ApplicationSummaryPage)
the transition happens to ApplicationSummaryPage but when I use this
searchResults(0).ApplicationId.click()
I doesn't ...
0
votes
1answer
196 views
Definition of page component template '$' of 'ApplicationSummaryPage' is invalid, params must be either a Closure, or Map and Closure
Below is my Geb Page, Spec and Error. I am not sure where and what the issue is. When I remove the below from the ApplicationSummaryPage then I doesn't get this error.
ds(wait: true)
{ module ...
0
votes
1answer
65 views
“to SearchPage” call from the “then” block
Why is the below Geb test failing with the below error. Can't I call to SearchPage in the then block?
Condition not satisfied:
to SearchPage
|
null
at test.LogoutSpec.Verify that the logout ...
4
votes
2answers
740 views
Intelli-J can't run spock tests? (Unable to attach test reporter…)
I'm trying to use the grails spock plugin with 1.3.7. I can run tests from the terminal via grails test-app :spock, but when I try to run ControllerSpec tests from within Intelli-J, I get unable to ...
3
votes
1answer
645 views
Testing my controller with Spock
I need to test a controller, of action index(generated by the grails generate-all command). I have a test like this (in Spock) :
package mnm.schedule
import grails.test.mixin.*
import org.junit.*
...
0
votes
1answer
223 views
Is this the right way to use “at” closure in Geb
Scenario: I have a login page which uses ajax to validate a user and if invalid login, it stays on the same page.
I am wondering if this is the correct way to use the at in Geb or I can improvise on ...


