org.gradle.play.integtest.fixtures.DistributionTestExecHandleBuilder.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 2015 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.play.integtest.fixtures
import com.google.common.collect.Lists
import org.apache.commons.io.output.CloseShieldOutputStream
import org.apache.commons.io.output.TeeOutputStream
import org.gradle.internal.os.OperatingSystem
import org.gradle.process.internal.ExecHandle
import org.gradle.process.internal.DefaultExecHandleBuilder
import org.gradle.test.fixtures.ConcurrentTestUtil
class DistributionTestExecHandleBuilder extends DefaultExecHandleBuilder {
final String port
DistributionTestExecHandleBuilder(String port, String baseDirName) {
super()
this.port = port
def extension = ""
if (OperatingSystem.current().windows) {
extension = ".bat"
}
this.setExecutable("${baseDirName}/playBinary/bin/playBinary${extension}")
this.environment("PLAY_BINARY_OPTS": "-Dhttp.port=${port}")
this.setWorkingDir(baseDirName)
}
@Override
List getAllArguments() {
return Lists.newArrayList()
}
@Override
ExecHandle build() {
ByteArrayOutputStream stdout = new ByteArrayOutputStream()
ByteArrayOutputStream errorOutput = new ByteArrayOutputStream()
this.setStandardOutput(new CloseShieldOutputStream(new TeeOutputStream(System.out, stdout)));
this.setErrorOutput(new CloseShieldOutputStream(new TeeOutputStream(System.err, errorOutput)));
return new DistributionTestExecHandle(super.build(), stdout, errorOutput)
}
public static class DistributionTestExecHandle implements ExecHandle {
final private ByteArrayOutputStream standardOutput
final private ByteArrayOutputStream errorOutput
@Delegate
final ExecHandle delegate
public DistributionTestExecHandle(ExecHandle delegate, ByteArrayOutputStream standardOutput, ByteArrayOutputStream errorOutput) {
this.delegate = delegate
this.standardOutput = standardOutput
this.errorOutput = errorOutput
}
void shutdown(int port) {
try {
stop(port)
waitForFinish()
} finally {
try {
abort()
} catch (IllegalStateException e) {
// Ignore if process is already not running
println "Did not abort play process since current state is: ${state.toString()}"
}
}
}
private stop(int port) {
try {
new URL("http://localhost:${port}/shutdown").bytes
} catch (SocketException e) {
// Expected
}
ConcurrentTestUtil.poll(30) {
try {
def connection = new URL("http://localhost:${port}/").openConnection()
connection.connect()
// we can still connect to the application
assert false: "Waiting for application to finally die"
} catch (IOException e) {
// Application is dead
}
}
}
ByteArrayOutputStream getStandardOutput() {
return standardOutput
}
ByteArrayOutputStream getErrorOutput() {
return errorOutput
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy