org.gradle.workers.internal.WorkerExecutorLoggingIntegrationTest.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 2017 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.workers.internal
import com.google.common.collect.Lists
import org.gradle.integtests.fixtures.executer.GradleHandle
import org.gradle.test.fixtures.ConcurrentTestUtil
import org.gradle.test.fixtures.server.http.CyclicBarrierHttpServer
import org.junit.Rule
class WorkerExecutorLoggingIntegrationTest extends AbstractWorkerExecutorIntegrationTest {
@Rule CyclicBarrierHttpServer server = new CyclicBarrierHttpServer()
// We check the output in this test asynchronously because sometimes the logging output arrives
// after the build finishes and we get a false negative
def "worker daemon lifecycle is logged" () {
def runnableJarName = "runnable.jar"
withRunnableClassInExternalJar(file(runnableJarName))
buildFile << """
buildscript {
dependencies {
classpath files("$runnableJarName")
}
}
task runInDaemon(type: DaemonTask)
task block {
dependsOn runInDaemon
doLast {
$blockUntilReleased
}
}
"""
when:
args("--info")
def gradle = executer.withTasks("block").start()
then:
server.waitFor()
and:
waitForAllOutput(gradle) {
outputShouldContain("Starting process 'Gradle Worker Daemon 1'.")
outputShouldContain("Successfully started process 'Gradle Worker Daemon 1'")
outputShouldContain("Executing org.gradle.test.TestRunnable in worker daemon")
outputShouldContain("Successfully executed org.gradle.test.TestRunnable in worker daemon")
}
when:
server.release()
then:
gradle.waitForFinish()
}
def "stdout, stderr and logging output is redirected"() {
buildFile << """
${runnableWithLogging}
task runInDaemon(type: DaemonTask)
"""
when:
succeeds("runInDaemon")
then:
output.contains("stdout message")
output.contains("warn message")
errorOutput.contains("error message")
!output.contains("debug message")
}
String getBlockUntilReleased() {
return "new URL('${server.uri}').text"
}
String getRunnableWithLogging() {
return """
import java.io.File;
import java.util.List;
import org.gradle.other.Foo;
import java.util.UUID;
import org.gradle.api.logging.Logging;
public class TestRunnable implements Runnable {
public TestRunnable(List files, File outputDir, Foo foo) {
}
public void run() {
Logging.getLogger(getClass()).warn("warn message");
Logging.getLogger(getClass()).debug("debug message");
Logging.getLogger(getClass()).error("error message");
System.out.println("stdout message");
System.err.println("stderr message");
}
}
"""
}
boolean waitForAllOutput(GradleHandle gradle, Closure closure) {
def watcher = new OutputWatcher(gradle)
watcher.with(closure)
return watcher.waitForAllOutputToBeSeen()
}
private static class OutputWatcher {
final GradleHandle gradle
final List assertions = Lists.newArrayList()
OutputWatcher(GradleHandle gradle) {
this.gradle = gradle
}
void outputShouldContain(String output) {
assertions.add(output)
}
void assertAllOutputIsSeen() {
Iterator itr = assertions.iterator()
while (itr.hasNext()) {
String assertion = itr.next()
if (gradle.standardOutput.contains(assertion)) {
itr.remove()
} else {
throw new AssertionError("String '$assertion' not present in the build output")
}
}
}
boolean waitForAllOutputToBeSeen() {
ConcurrentTestUtil.poll {
assertAllOutputIsSeen()
}
return true
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy