org.gradle.internal.logging.OutputSpecification.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
import org.gradle.api.logging.LogLevel
import org.gradle.internal.logging.events.*
import org.gradle.util.TextUtil
import spock.lang.Specification
import java.text.SimpleDateFormat
abstract class OutputSpecification extends Specification {
private Long counter = 1
protected String toNative(String value) {
return TextUtil.toPlatformLineSeparators(value)
}
/**
* Returns timestamp representing 10AM today in local time.
*/
long getTenAm() {
return getTime('10:00:00.000')
}
long getTime(String time) {
String today = new SimpleDateFormat("yyyyMMdd").format(new Date())
return new SimpleDateFormat('yyyyMMdd HH:mm:ss.SSS').parse(today + ' ' + time).getTime()
}
LogEvent event(String text) {
return new LogEvent(tenAm, 'category', LogLevel.INFO, text, null)
}
LogEvent event(String text, LogLevel logLevel) {
return new LogEvent(tenAm, 'category', logLevel, text, null)
}
LogEvent event(long timestamp, String text, LogLevel logLevel) {
return new LogEvent(timestamp, 'category', logLevel, text, null)
}
LogEvent event(long timestamp, String text) {
return new LogEvent(timestamp, 'category', LogLevel.INFO, text, null)
}
LogEvent event(String text, Throwable throwable) {
return new LogEvent(tenAm, 'category', LogLevel.INFO, text, throwable)
}
ProgressStartEvent start(String description) {
start(description: description)
}
ProgressStartEvent start(Map args) {
Long parent = counter
long id = ++counter
return new ProgressStartEvent(new OperationIdentifier(id), new OperationIdentifier(parent), tenAm, 'category', args.description, args.shortDescription, args.loggingHeader, args.status)
}
ProgressEvent progress(String status) {
long id = counter
return new ProgressEvent(new OperationIdentifier(id), tenAm, 'category', status)
}
ProgressCompleteEvent complete(String status) {
long id = counter--
return new ProgressCompleteEvent(new OperationIdentifier(id), tenAm, 'category', 'description', status)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy