org.gradle.process.internal.SingleRequestWorkerProcessIntegrationTest.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.process.internal
import org.gradle.process.internal.worker.WorkerProcessException
import org.gradle.util.TextUtil
import spock.lang.Ignore
import spock.lang.Timeout
@Timeout(120)
class SingleRequestWorkerProcessIntegrationTest extends AbstractWorkerProcessIntegrationSpec {
def "runs method in worker process and returns the result"() {
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, TestWorker.class)
def worker = builder.build()
def result = worker.convert("abc", 12)
then:
result == "[abc 12]"
}
def "infers worker implementation classpath"() {
given:
def cl = compileToDirectoryAndLoad("CustomTestWorker", """
import ${TestProtocol.name}
class CustomTestWorker implements TestProtocol {
Object convert(String param1, long param2) { return new CustomResult() }
void doSomething() { }
}
class CustomResult implements Serializable {
String toString() { return "custom-result" }
}
""")
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, cl)
def worker = builder.build()
def result = worker.convert("abc", 12)
then:
result.toString() == "custom-result"
}
def "runs method in worker process and returns null"() {
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, TestWorker.class)
def worker = builder.build()
def result = worker.convert(null, 12)
then:
result == null
}
def "runs method in worker process and returns void result"() {
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, TestWorker.class)
def worker = builder.build()
worker.doSomething()
then:
outputEventListener.toString().contains(TextUtil.toPlatformLineSeparators("[[QUIET] [system.out] Ok, did it\n "))
}
def "propagates failure thrown by method in worker process"() {
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, BrokenTestWorker.class)
def worker = builder.build()
worker.convert("abc", 12)
then:
def e = thrown(IllegalArgumentException)
e.message == 'Could not convert [abc, 12]'
}
@Ignore
def "can reuse worker proxy to run multiple worker processes"() {
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, TestWorker.class)
def worker = builder.build()
def result1 = worker.convert("abc", 12)
def result2 = worker.convert(null, 12)
def result3 = worker.convert("d", 11)
then:
result1 == "[abc 12]"
result2 == null
result3 == "[d 11]"
}
def "propagates failure to load worker implementation class"() {
given:
def cl = compileWithoutClasspath("CustomTestWorker", """
import ${TestProtocol.name}
class CustomTestWorker implements TestProtocol {
Object convert(String param1, long param2) { return param1 + ":" + param2 }
void doSomething() { }
}
""")
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, cl)
builder.baseName = 'broken worker'
def worker = builder.build()
worker.convert("abc", 12)
then:
def e = thrown(WorkerProcessException)
e.message == 'Failed to run broken worker'
e.cause instanceof ClassNotFoundException
}
def "propagates failure to instantiate worker implementation instance"() {
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, TestProtocol.class)
builder.baseName = 'broken worker'
def worker = builder.build()
worker.convert("abc", 12)
then:
def e = thrown(WorkerProcessException)
e.message == 'Failed to run broken worker'
e.cause instanceof InstantiationException
}
def "propagates failure to start worker process"() {
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, TestWorker.class)
builder.baseName = 'broken worker'
builder.javaCommand.jvmArgs("-broken")
def worker = builder.build()
worker.convert("abc", 12)
then:
def e = thrown(WorkerProcessException)
e.message == 'Failed to run broken worker'
e.cause instanceof ExecException
e.cause.message.matches("Process 'broken worker 1' finished with non-zero exit value \\d+")
}
def "reports failure when worker halts handling request"() {
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, CrashingWorker.class)
builder.baseName = 'broken worker'
def worker = builder.build()
worker.convert("halt", 0)
then:
def e = thrown(WorkerProcessException)
e.message == 'Failed to run broken worker'
e.cause instanceof IllegalStateException
e.cause.message == "No response was received from broken worker but the worker process has finished."
}
def "reports failure when worker crashes handling request"() {
when:
def builder = workerFactory.singleRequestWorker(TestProtocol.class, CrashingWorker.class)
builder.baseName = 'broken worker'
def worker = builder.build()
worker.convert("halt", 12)
then:
def e = thrown(WorkerProcessException)
e.message == 'Failed to run broken worker'
e.cause instanceof ExecException
e.cause.message == "Process 'broken worker 1' finished with non-zero exit value 12"
}
@Ignore
def "reports failure when worker does not receive request within expected time"() {
expect: false
}
@Ignore
def "reports failure when worker does not connect within expected time"() {
expect: false
}
@Ignore
def "reports failure when worker does not stop within expected time"() {
expect: false
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy