org.gradle.launcher.daemon.StoppingDaemonIntegrationSpec.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 2009 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.AvailableJavaHomes
import org.gradle.integtests.fixtures.daemon.DaemonIntegrationSpec
import org.gradle.launcher.daemon.logging.DaemonMessages
import org.gradle.launcher.daemon.server.api.DaemonStoppedException
import org.gradle.test.fixtures.server.http.CyclicBarrierHttpServer
import org.junit.Rule
import spock.lang.IgnoreIf
class StoppingDaemonIntegrationSpec extends DaemonIntegrationSpec {
@Rule CyclicBarrierHttpServer server = new CyclicBarrierHttpServer()
def "daemon process exits and client logs nice error message when daemon stopped"() {
buildFile << """
task block << {
new URL("$server.uri").text
}
"""
when:
def build = executer.withTasks("block").start()
server.waitFor()
daemons.daemon.assertBusy()
executer.withArguments("--stop").run()
def failure = build.waitForFailure()
then:
daemons.daemon.stops()
failure.assertHasDescription(DaemonStoppedException.MESSAGE)
}
def "can handle multiple concurrent stop requests"() {
buildFile << """
task block << {
new URL("$server.uri").text
}
"""
when:
def build = executer.withTasks("block").start()
server.waitFor()
def stopExecutions = []
5.times { idx ->
stopExecutions << executer.withArguments("--stop").start()
}
stopExecutions.each { it.waitForFinish() }
build.waitForFailure()
def out = executer.withArguments("--stop").run().output
then:
daemons.daemon.stops()
out.contains(DaemonMessages.NO_DAEMONS_RUNNING)
}
@IgnoreIf({ AvailableJavaHomes.differentJdk == null})
def "can stop a daemon that is using a different java home"() {
given:
succeeds()
daemons.daemon.assertIdle()
when:
executer.withJavaHome(AvailableJavaHomes.differentJdk.javaHome)
executer.withArguments("--stop").run()
then:
daemons.daemon.stops()
}
def "reports exact number of daemons stopped and keeps console output clean"() {
given:
executer.noExtraLogging()
executer.run()
when:
def out = executer.withArguments("--stop").run().output
then:
out == '''Stopping Daemon(s)
1 Daemon stopped
'''
when:
out = executer.withArguments("--stop").run().output
then:
out == """$DaemonMessages.NO_DAEMONS_RUNNING
"""
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy