org.gradle.internal.operations.logging.LoggingBuildOperationProgressBroadcasterTest.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 2018 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.internal.operations.logging
import org.gradle.api.logging.LogLevel
import org.gradle.internal.logging.events.LogEvent
import org.gradle.internal.logging.events.ProgressStartEvent
import org.gradle.internal.logging.events.StyledTextOutputEvent
import org.gradle.internal.logging.sink.OutputEventListenerManager
import org.gradle.internal.operations.BuildOperationCategory
import org.gradle.internal.operations.BuildOperationListener
import org.gradle.internal.operations.OperationIdentifier
import spock.lang.Shared
import spock.lang.Specification
import spock.lang.Unroll
class LoggingBuildOperationProgressBroadcasterTest extends Specification {
def outputEventListenerManager = Mock(OutputEventListenerManager)
def buildOperationListener = Mock(BuildOperationListener)
@Shared
def operationId = Mock(OperationIdentifier)
@Shared
def fallbackOperationId = Mock(OperationIdentifier)
LoggingBuildOperationProgressBroadcaster bridge = new LoggingBuildOperationProgressBroadcaster(outputEventListenerManager, buildOperationListener)
def setup() {
bridge.rootBuildOperation = fallbackOperationId
}
@Unroll
def "forwards #eventType with operationId"() {
when:
bridge.onOutput(eventWithBuildOperationId)
then:
1 * buildOperationListener.progress(_, _) >> {
assert it[0] == operationId
assert it[1].details == eventWithBuildOperationId
}
when:
bridge.onOutput(eventWithFallbackBuildOperationId)
then:
1 * buildOperationListener.progress(_, _) >> {
assert it[0] == fallbackOperationId
assert it[1].details == eventWithFallbackBuildOperationId
}
where:
eventType | eventWithBuildOperationId | eventWithFallbackBuildOperationId
LogEvent | new LogEvent(0, 'c', LogLevel.INFO, 'm', null, operationId) | new LogEvent(0, 'c', LogLevel.INFO, 'm', null, null)
StyledTextOutputEvent | new StyledTextOutputEvent(0, 'c', LogLevel.INFO, operationId, 'm') | new StyledTextOutputEvent(0, 'c', LogLevel.INFO, null, 'm')
ProgressStartEvent | progressStartEvent(operationId) | progressStartEvent(null)
}
def "does not forward progress start events with no logging header"() {
when:
bridge.onOutput(progressStartEvent(operationId, null))
then:
0 * buildOperationListener.progress(_, _)
}
def "registers / unregisters itself as output listener"() {
when:
def loggingBuildOperationNotificationBridge = new LoggingBuildOperationProgressBroadcaster(outputEventListenerManager, buildOperationListener)
then:
outputEventListenerManager.setListener(loggingBuildOperationNotificationBridge)
when:
loggingBuildOperationNotificationBridge.stop()
then:
outputEventListenerManager.removeListener(loggingBuildOperationNotificationBridge)
}
private ProgressStartEvent progressStartEvent(OperationIdentifier operationId, String header = 'header') {
new ProgressStartEvent(null, null, 0, 'c', 'd', header, 's', 0, false, operationId, BuildOperationCategory.UNCATEGORIZED)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy