org.gradle.jvm.internal.resolve.DefaultJavaPlatformVariantAxisCompatibilityTest.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.jvm.internal.resolve
import org.gradle.api.JavaVersion
import org.gradle.jvm.platform.JavaPlatform
import org.gradle.jvm.platform.internal.DefaultJavaPlatform
import spock.lang.Specification
import spock.lang.Unroll
class DefaultJavaPlatformVariantAxisCompatibilityTest extends Specification {
@Unroll("Java #requirement is compatible with #value : #expected")
def "should check that Java platform is compatible"() {
given:
VariantAxisCompatibility selector = new DefaultJavaPlatformVariantAxisCompatibility()
when:
def compatible = selector.isCompatibleWithRequirement(requirement, value)
then:
compatible == expected
where:
required | found | expected
'1.5' | '1.5' | true
'1.5' | '1.6' | false
'1.6' | '1.5' | true
'1.7' | '1.5' | true
'1.7' | '1.6' | true
and:
requirement = new DefaultJavaPlatform(JavaVersion.toVersion(required))
value = new DefaultJavaPlatform(JavaVersion.toVersion(found))
}
@Unroll("Java #newValue is a better fit than #oldValue : #expected")
def "should check that Java platform is a better fit than one other"() {
given:
VariantAxisCompatibility selector = new DefaultJavaPlatformVariantAxisCompatibility()
when:
def compatible = selector.betterFit(new DefaultJavaPlatform(JavaVersion.VERSION_1_7), oldValue, newValue)
then:
compatible == expected
where:
required | found | expected
'1.5' | '1.5' | false
'1.5' | '1.6' | true
'1.6' | '1.5' | false
'1.7' | '1.5' | false
'1.7' | '1.6' | false
and:
oldValue = new DefaultJavaPlatform(JavaVersion.toVersion(required))
newValue = new DefaultJavaPlatform(JavaVersion.toVersion(found))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy