Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danhyun/972c21395f11cde0759565991b08d513 to your computer and use it in GitHub Desktop.
Save danhyun/972c21395f11cde0759565991b08d513 to your computer and use it in GitHub Desktop.
Programmatically run spock tests
package foo
@Grab('org.spockframework:spock-core:1.0-groovy-2.3')
import org.junit.runner.*
import spock.lang.Specification
import spock.util.EmbeddedSpecRunner
/*
* output:
* class: class org.junit.runner.Result
* failures: [fail(apackage.MySpec): Condition not satisfied:
*
* thing.b == thing.a
* | | | | |
* | be| | ay
* | | [a:ay, b:be]
* | false
* | 2 differences (0% similarity)
* | (be)
* | (ay)
* [a:ay, b:be]
* ]
* failureCount: 1
* runTime: 11
* runCount: 3
* ignoreCount: 1
*
* ** done **
*/
EmbeddedSpecRunner runner = new EmbeddedSpecRunner(throwFailure: false)
String bodySrc = """
def 'a is good'() {
expect: thing.a == 'ay'
}
def 'b is good'() {
expect: thing.b == 'be'
}
def 'fail'() {
expect: thing.b == thing.a
}
@Ignore
def 'ignored'() {
expect: false
}
"""
String src = "class MySpec extends foo.BaseSpec { ${bodySrc.trim() + '\n'} }"
Result result = runner.runWithImports(src)
result.properties.each { k, v -> println "$k: $v" }
class BaseSpec extends Specification {
Map getThing() {
return [a: 'ay', b: 'be']
}
}
println '\n** done **'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment