org.gradle.api.internal.tasks.testing.logging.TestEventLoggerTest.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 2012 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.api.internal.tasks.testing.logging
import org.gradle.api.internal.tasks.testing.SimpleTestResult
import org.gradle.api.logging.LogLevel
import org.gradle.api.tasks.testing.TestResult
import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.gradle.internal.logging.text.TestStyledTextOutputFactory
import spock.lang.Specification
class TestEventLoggerTest extends Specification {
def textOutputFactory = new TestStyledTextOutputFactory()
def testLogging = new DefaultTestLogging()
def exceptionFormatter = Mock(TestExceptionFormatter)
def eventLogger = new TestEventLogger(textOutputFactory, LogLevel.INFO, testLogging, exceptionFormatter)
def rootDescriptor = new SimpleTestDescriptor(name: "", composite: true)
def workerDescriptor = new SimpleTestDescriptor(name: "worker", composite: true, parent: rootDescriptor)
def outerSuiteDescriptor = new SimpleTestDescriptor(name: "com.OuterSuiteClass", composite: true, parent: workerDescriptor)
def innerSuiteDescriptor = new SimpleTestDescriptor(name: "com.InnerSuiteClass", composite: true, parent: outerSuiteDescriptor)
def classDescriptor = new SimpleTestDescriptor(name: "foo.bar.TestClass", composite: true, parent: innerSuiteDescriptor)
def methodDescriptor = new SimpleTestDescriptor(name: "testMethod", className: "foo.bar.TestClass", parent: classDescriptor)
def result = new SimpleTestResult()
def "logs event if event type matches"() {
testLogging.events(TestLogEvent.PASSED, TestLogEvent.SKIPPED)
when:
eventLogger.afterTest(methodDescriptor, result)
then:
textOutputFactory.toString().count("PASSED") == 1
when:
textOutputFactory.clear()
result.resultType = TestResult.ResultType.FAILURE
eventLogger.afterTest(methodDescriptor, result)
then:
textOutputFactory.toString().count("PASSED") == 0
}
def "logs event if granularity matches"() {
testLogging.events(TestLogEvent.PASSED)
testLogging.minGranularity = 2
testLogging.maxGranularity = 4
when:
eventLogger.afterSuite(outerSuiteDescriptor, result)
eventLogger.afterSuite(innerSuiteDescriptor, result)
eventLogger.afterSuite(classDescriptor, result)
then:
textOutputFactory.toString().count("PASSED") == 3
when:
textOutputFactory.clear()
eventLogger.afterSuite(rootDescriptor, result)
eventLogger.afterSuite(workerDescriptor, result)
eventLogger.afterTest(methodDescriptor, result)
then:
textOutputFactory.toString().count("PASSED") == 0
}
def "shows exceptions if configured"() {
testLogging.events(TestLogEvent.FAILED)
result.resultType = TestResult.ResultType.FAILURE
result.exceptions = [new RuntimeException()]
exceptionFormatter.format(*_) >> "formatted exception"
when:
testLogging.showExceptions = true
eventLogger.afterTest(methodDescriptor, result)
then:
textOutputFactory.toString().contains("formatted exception")
when:
textOutputFactory.clear()
testLogging.showExceptions = false
eventLogger.afterTest(methodDescriptor, result)
then:
!textOutputFactory.toString().contains("formatted exception")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy