org.gradle.launcher.daemon.ProcessCrashHandlingIntegrationTest.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 2014 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.launcher.daemon
import org.gradle.integtests.fixtures.daemon.DaemonIntegrationSpec
import org.gradle.launcher.daemon.client.DaemonDisappearedException
import org.gradle.launcher.daemon.logging.DaemonMessages
import org.gradle.test.fixtures.server.http.CyclicBarrierHttpServer
import org.gradle.util.Requires
import org.gradle.util.TestPrecondition
import org.junit.Rule
class ProcessCrashHandlingIntegrationTest extends DaemonIntegrationSpec {
@Rule CyclicBarrierHttpServer server = new CyclicBarrierHttpServer()
@Requires(TestPrecondition.NOT_WINDOWS)
def "tears down the daemon process when the client disconnects and build does not cancel in a timely manner"() {
buildFile << """
task block << {
new URL("$server.uri").text
}
"""
when:
def build = executer.withTasks("block").start()
server.waitFor()
daemons.daemon.assertBusy()
build.abort().waitForFailure()
then:
daemons.daemon.becomesCanceled()
and:
daemons.daemon.stops()
}
@Requires(TestPrecondition.NOT_WINDOWS)
def "daemon is idle after the client disconnects and build cancels in a timely manner"() {
buildFile << """
task block << {
new URL("$server.uri").text
}
"""
when:
def build = executer.withTasks("block").start()
server.waitFor()
daemons.daemon.assertBusy()
build.abort().waitForFailure()
then:
daemons.daemon.becomesCanceled()
when:
server.release()
then:
daemons.daemon.becomesIdle()
}
def "client logs useful information when daemon crashes"() {
buildFile << """
task block << {
new URL("$server.uri").text
}
"""
when:
executer.withStackTraceChecksDisabled() // daemon log may contain stack traces
def build = executer.withTasks("block").start()
server.waitFor()
daemons.daemon.kill()
def failure = build.waitForFailure()
then:
failure.error.contains("----- Last 20 lines from daemon log file")
failure.assertHasDescription(DaemonDisappearedException.MESSAGE)
}
def "client logs useful information when daemon exits"() {
given:
file("build.gradle") << "System.exit(0)"
when:
executer.withStackTraceChecksDisabled() // daemon log may contain stack traces
def failure = executer.runWithFailure()
then:
failure.error.contains("----- Last 20 lines from daemon log file")
failure.error.contains(DaemonMessages.DAEMON_VM_SHUTTING_DOWN)
failure.assertHasDescription(DaemonDisappearedException.MESSAGE)
and:
daemons.daemon.stops()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy