
org.gradle.api.internal.changedetection.state.TaskFilePropertySnapshotNormalizationStrategyTest.groovy Maven / Gradle / Ivy
/*
* 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.api.internal.changedetection.state
import static org.gradle.api.internal.changedetection.state.TaskFilePropertySnapshotNormalizationStrategy.*
class TaskFilePropertySnapshotNormalizationStrategyTest extends AbstractSnapshotNormalizationStrategyTest {
def "sensitivity NONE"() {
def snapshots = normalizeWith NONE
expect:
snapshots[file("dir/libs/library-a.jar")] == "IGNORED"
snapshots[file("dir/libs/library-b.jar")] == "IGNORED"
snapshots[file("dir/resources/input.txt")] == "IGNORED"
snapshots[file("dir/resources/a")] == "NO SNAPSHOT"
snapshots[file("dir/resources/a/input-1.txt")] == "IGNORED"
snapshots[file("dir/resources/b")] == "NO SNAPSHOT"
snapshots[file("dir/resources/b/input-2.txt")] == "IGNORED"
}
def "sensitivity NAME_ONLY"() {
def snapshots = normalizeWith NAME_ONLY
expect:
snapshots[file("dir/libs/library-a.jar")] == "library-a.jar"
snapshots[file("dir/libs/library-b.jar")] == "library-b.jar"
snapshots[file("dir/resources/input.txt")] == "input.txt"
snapshots[file("dir/resources/a")] == "a"
snapshots[file("dir/resources/a/input-1.txt")] == "input-1.txt"
snapshots[file("dir/resources/b")] == "b"
snapshots[file("dir/resources/b/input-2.txt")] == "input-2.txt"
}
def "sensitivity RELATIVE"() {
def snapshots = normalizeWith RELATIVE
expect:
snapshots[file("dir/libs/library-a.jar")] == "library-a.jar"
snapshots[file("dir/libs/library-b.jar")] == "library-b.jar"
snapshots[file("dir/resources/input.txt")] == "input.txt"
snapshots[file("dir/resources/a")] == "a"
snapshots[file("dir/resources/a/input-1.txt")] == "a/input-1.txt"
snapshots[file("dir/resources/b")] == "b"
snapshots[file("dir/resources/b/input-2.txt")] == "b/input-2.txt"
}
def "sensitivity ABSOLUTE"() {
def snapshots = normalizeWith ABSOLUTE
expect:
snapshots[file("dir/libs/library-a.jar")] == file("dir/libs/library-a.jar").absolutePath
snapshots[file("dir/libs/library-b.jar")] == file("dir/libs/library-b.jar").absolutePath
snapshots[file("dir/resources/input.txt")] == file("dir/resources/input.txt").absolutePath
snapshots[file("dir/resources/a")] == file("dir/resources/a").absolutePath
snapshots[file("dir/resources/a/input-1.txt")] == file("dir/resources/a/input-1.txt").absolutePath
snapshots[file("dir/resources/b")] == file("dir/resources/b").absolutePath
snapshots[file("dir/resources/b/input-2.txt")] == file("dir/resources/b/input-2.txt").absolutePath
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy