Testkit / GradleRunner:如何使用代理?
Testkit / GradleRunner: How to use a proxy?
对于常规 gradle 操作,我的项目或主页中有一个 gradle.properties
文件,用于配置代理详细信息(host/port 等)
当使用 GradleRunner
时,gradle.properties
文件被故意忽略:
"默认 Gradle 用户主目录中的任何配置(例如 ~/.gradle/gradle.properties)不用于测试执行。TestKit 不公开细粒度控制机制环境的所有方面(例如,JDK)。未来版本的 TestKit 将提供改进的配置选项。“
(来自https://docs.gradle.org/current/userguide/test_kit.html#sec:controlling_the_build_environment)
问题:
使用 GradleRunner
时如何配置代理?
您只需将带有代理设置的 gradle.properties
文件添加到您的测试项目(运行 和 GradleRunner
)。这是一个完整的示例项目(Gradle 7.1 包装文件未显示):
├── build.gradle
└── src
└── test
└── groovy
└── com
└── example
└── MyTest.groovy
build.gradle
plugins {
id 'groovy'
id 'java-gradle-plugin'
}
repositories {
mavenCentral()
}
dependencies {
testImplementation('org.spockframework:spock-core:2.0-groovy-3.0')
}
test {
useJUnitPlatform()
}
src/test/groovy/com/example/MyTest.groovy
package com.example
import org.gradle.testkit.runner.GradleRunner
import static org.gradle.testkit.runner.TaskOutcome.*
import spock.lang.TempDir
import spock.lang.Timeout
import spock.lang.Specification
class MyTest extends Specification {
@TempDir File projDir
@Timeout(10)
def "network connection through proxy works"() {
given:
def myTestTask = 'foo'
new File(projDir, 'settings.gradle') << "rootProject.name = 'my-test'"
new File(projDir, 'gradle.properties') << '''\
systemProp.http.proxyHost = 192.168.123.123
'''
new File(projDir, 'build.gradle') << """\
task $myTestTask {
doLast {
println(new java.net.URL('http://www.example.com').text)
}
}
"""
when:
def result = GradleRunner.create()
.withProjectDir(projDir)
.withArguments(myTestTask)
.build()
then:
result.task(":$myTestTask").outcome == SUCCESS
}
}
我使用了一个不存在的虚拟代理,由于 test/connection 超时 (→ SpockTimeoutError
) 而导致测试失败。改用真正的代理,测试应该会成功。
对于常规 gradle 操作,我的项目或主页中有一个 gradle.properties
文件,用于配置代理详细信息(host/port 等)
当使用 GradleRunner
时,gradle.properties
文件被故意忽略:
"默认 Gradle 用户主目录中的任何配置(例如 ~/.gradle/gradle.properties)不用于测试执行。TestKit 不公开细粒度控制机制环境的所有方面(例如,JDK)。未来版本的 TestKit 将提供改进的配置选项。“
(来自https://docs.gradle.org/current/userguide/test_kit.html#sec:controlling_the_build_environment)
问题:
使用 GradleRunner
时如何配置代理?
您只需将带有代理设置的 gradle.properties
文件添加到您的测试项目(运行 和 GradleRunner
)。这是一个完整的示例项目(Gradle 7.1 包装文件未显示):
├── build.gradle
└── src
└── test
└── groovy
└── com
└── example
└── MyTest.groovy
build.gradle
plugins {
id 'groovy'
id 'java-gradle-plugin'
}
repositories {
mavenCentral()
}
dependencies {
testImplementation('org.spockframework:spock-core:2.0-groovy-3.0')
}
test {
useJUnitPlatform()
}
src/test/groovy/com/example/MyTest.groovy
package com.example
import org.gradle.testkit.runner.GradleRunner
import static org.gradle.testkit.runner.TaskOutcome.*
import spock.lang.TempDir
import spock.lang.Timeout
import spock.lang.Specification
class MyTest extends Specification {
@TempDir File projDir
@Timeout(10)
def "network connection through proxy works"() {
given:
def myTestTask = 'foo'
new File(projDir, 'settings.gradle') << "rootProject.name = 'my-test'"
new File(projDir, 'gradle.properties') << '''\
systemProp.http.proxyHost = 192.168.123.123
'''
new File(projDir, 'build.gradle') << """\
task $myTestTask {
doLast {
println(new java.net.URL('http://www.example.com').text)
}
}
"""
when:
def result = GradleRunner.create()
.withProjectDir(projDir)
.withArguments(myTestTask)
.build()
then:
result.task(":$myTestTask").outcome == SUCCESS
}
}
我使用了一个不存在的虚拟代理,由于 test/connection 超时 (→ SpockTimeoutError
) 而导致测试失败。改用真正的代理,测试应该会成功。