org.gradle.internal.logging.source.PrintStreamLoggingSystemTest.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 2016 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.logging.source
import org.gradle.api.logging.LogLevel
import org.gradle.internal.TimeProvider
import org.gradle.internal.logging.events.LogLevelChangeEvent
import org.gradle.internal.logging.events.OutputEventListener
import org.gradle.internal.logging.events.StyledTextOutputEvent
import org.gradle.util.TextUtil
import spock.lang.Specification
class PrintStreamLoggingSystemTest extends Specification {
private final OutputStream original = new ByteArrayOutputStream()
private final PrintStream originalStream = new PrintStream(original)
private PrintStream stream = originalStream
private final OutputEventListener listener = Mock()
private final TimeProvider timeProvider = { 1200L } as TimeProvider
private final PrintStreamLoggingSystem loggingSystem = new PrintStreamLoggingSystem(listener, 'category', timeProvider) {
protected PrintStream get() {
stream
}
protected void set(PrintStream printStream) {
stream = printStream
}
}
def onReplacesOriginalStreamAndRemovesWhenRestored() {
when:
def snapshot = loggingSystem.on(LogLevel.DEBUG, LogLevel.DEBUG)
then:
stream != originalStream
when:
loggingSystem.restore(snapshot)
then:
stream == originalStream
}
def onStartsCapturingWhenNotAlreadyCapturing() {
when:
loggingSystem.on(LogLevel.INFO, LogLevel.INFO)
stream.println('info')
then:
1 * listener.onOutput({it instanceof LogLevelChangeEvent && it.newLogLevel == LogLevel.INFO})
1 * listener.onOutput({it instanceof StyledTextOutputEvent && it.spans[0].text == withEOL('info')})
original.toString() == ''
0 * listener._
}
def fillsInEventDetails() {
when:
loggingSystem.on(LogLevel.INFO, LogLevel.INFO)
stream.println('info')
then:
1 * listener.onOutput({it instanceof StyledTextOutputEvent && it.category == 'category' && it.timestamp == 1200 && it.spans[0].text == withEOL('info')})
}
def onChangesLogLevelsWhenAlreadyCapturing() {
loggingSystem.on(LogLevel.INFO, LogLevel.INFO)
when:
loggingSystem.on(LogLevel.DEBUG, LogLevel.DEBUG)
stream.println('info')
then:
1 * listener.onOutput({it instanceof LogLevelChangeEvent && it.newLogLevel == LogLevel.DEBUG})
1 * listener.onOutput({it instanceof StyledTextOutputEvent && it.spans[0].text == withEOL('info')})
original.toString() == ''
0 * listener._
}
def restoreDoesNothingWhenNotAlreadyCapturing() {
given:
def snapshot = loggingSystem.snapshot()
when:
loggingSystem.restore(snapshot)
stream.println('info')
then:
stream == originalStream
original.toString() == withEOL('info')
0 * listener._
}
def restoreFlushesPartialLine() {
def snapshot = loggingSystem.on(LogLevel.WARN, LogLevel.WARN)
when:
stream.print("info")
loggingSystem.restore(snapshot)
then:
1 * listener.onOutput({it instanceof StyledTextOutputEvent && it.spans[0].text == 'info'})
original.toString() == ''
0 * listener._
}
def restoreStopsCapturingWhenCapturingWasNotInstalledWhenSnapshotTaken() {
def snapshot = loggingSystem.snapshot()
loggingSystem.on(LogLevel.ERROR, LogLevel.ERROR)
def capturing = stream
when:
loggingSystem.restore(snapshot)
capturing.println("info-1")
stream.println('info-2')
then:
stream == originalStream
original.toString() == TextUtil.toPlatformLineSeparators('''info-1
info-2
''')
0 * listener._
}
def restoreStopsCapturingWhenCapturingWasOffWhenSnapshotTaken() {
def off = loggingSystem.on(LogLevel.INFO, LogLevel.INFO)
loggingSystem.restore(off)
def snapshot = loggingSystem.snapshot()
loggingSystem.on(LogLevel.ERROR, LogLevel.ERROR)
def capturing = stream
when:
loggingSystem.restore(snapshot)
capturing.println("info-1")
stream.println('info-2')
then:
stream == originalStream
original.toString() == TextUtil.toPlatformLineSeparators('''info-1
info-2
''')
0 * listener._
}
def restoreStartsCapturingWhenCapturingWasOnWhenSnapshotTaken() {
def off = loggingSystem.on(LogLevel.WARN, LogLevel.WARN)
def snapshot = loggingSystem.snapshot()
loggingSystem.restore(off)
when:
loggingSystem.restore(snapshot)
stream.println('info')
then:
1 * listener.onOutput({it instanceof LogLevelChangeEvent && it.newLogLevel == LogLevel.WARN})
1 * listener.onOutput({it.spans[0].text == withEOL('info')})
original.toString() == ''
0 * listener._
}
def restoreSetsLogLevelToTheLevelWhenSnapshotTaken() {
loggingSystem.on(LogLevel.WARN, LogLevel.WARN)
def snapshot = loggingSystem.snapshot()
loggingSystem.on(LogLevel.INFO, LogLevel.INFO)
when:
loggingSystem.restore(snapshot)
stream.println('info')
then:
1 * listener.onOutput({it instanceof LogLevelChangeEvent && it.newLogLevel == LogLevel.WARN})
1 * listener.onOutput({it.spans[0].text == withEOL('info')})
original.toString() == ''
0 * listener._
}
private String withEOL(String value) {
return String.format('%s%n', value)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy