org.gradle.integtests.fixtures.CompilationOutputsFixture.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 2013 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.integtests.fixtures
import groovy.io.FileType
import static org.apache.commons.io.FilenameUtils.removeExtension
import static org.spockframework.util.CollectionUtil.asSet
class CompilationOutputsFixture {
private final File targetDir
//Tracks outputs in given target dir
CompilationOutputsFixture(File targetDir) {
assert targetDir != null
this.targetDir = targetDir
}
private List snapshot = []
// Executes optional operation and makes a snapshot of outputs (sets the last modified timestamp to zero for all files)
public T snapshot(Closure operation = null) {
T result = operation?.call()
snapshot.clear()
targetDir.eachFileRecurse(FileType.FILES) {
it.lastModified = 0
snapshot << it
}
result
}
//asserts none of the files changed/added since last snapshot
void noneRecompiled() {
recompiledFiles([])
}
//asserts file changed/added since last snapshot
void recompiledFile(File file) {
recompiledFiles([file])
}
//asserts files changed/added since last snapshot
void recompiledFiles(Collection files) {
def expectedNames = files.collect({ removeExtension(it.name) }) as Set
assert changedFileNames == expectedNames
}
//asserts classes changed/added since last snapshot. Class means file name without extension.
void recompiledClasses(String ... classNames) {
assert changedFileNames == asSet(classNames)
}
//asserts classes deleted since last snapshot. Class means file name without extension.
void deletedClasses(String ... classNames) {
def deleted = snapshot.findAll { !it.exists() }.collect { removeExtension(it.name) } as Set
assert deleted == asSet(classNames)
}
private Set getChangedFileNames() {
// Get all of the files that do not have a zero last modified timestamp
def changed = new HashSet()
targetDir.eachFileRecurse(FileType.FILES) {
if (it.lastModified() > 0) {
changed << removeExtension(it.name)
}
}
changed
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy