blob: 74d6f19478bf14c7d5f27aa686bae4d27a4e6ae8 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.maven.model.profile.activation;
import java.util.Properties;
import org.apache.maven.api.model.Activation;
import org.apache.maven.api.model.Profile;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
/**
* Tests {@link JdkVersionProfileActivator}.
*
*/
class JdkVersionProfileActivatorTest extends AbstractProfileActivatorTest<JdkVersionProfileActivator> {
@Override
@BeforeEach
void setUp() throws Exception {
activator = new JdkVersionProfileActivator();
}
private Profile newProfile(String jdkVersion) {
Activation a = Activation.newBuilder().jdk(jdkVersion).build();
Profile p = Profile.newBuilder().activation(a).build();
return p;
}
private Properties newProperties(String javaVersion) {
Properties props = new Properties();
props.setProperty("java.version", javaVersion);
return props;
}
@Test
void testNullSafe() throws Exception {
Profile p = Profile.newInstance();
assertActivation(false, p, newContext(null, null));
p = p.withActivation(Activation.newInstance());
assertActivation(false, p, newContext(null, null));
}
@Test
void testPrefix() throws Exception {
Profile profile = newProfile("1.4");
assertActivation(true, profile, newContext(null, newProperties("1.4")));
assertActivation(true, profile, newContext(null, newProperties("1.4.2")));
assertActivation(true, profile, newContext(null, newProperties("1.4.2_09")));
assertActivation(true, profile, newContext(null, newProperties("1.4.2_09-b03")));
assertActivation(false, profile, newContext(null, newProperties("1.3")));
assertActivation(false, profile, newContext(null, newProperties("1.5")));
}
@Test
void testPrefixNegated() throws Exception {
Profile profile = newProfile("!1.4");
assertActivation(false, profile, newContext(null, newProperties("1.4")));
assertActivation(false, profile, newContext(null, newProperties("1.4.2")));
assertActivation(false, profile, newContext(null, newProperties("1.4.2_09")));
assertActivation(false, profile, newContext(null, newProperties("1.4.2_09-b03")));
assertActivation(true, profile, newContext(null, newProperties("1.3")));
assertActivation(true, profile, newContext(null, newProperties("1.5")));
}
@Test
void testVersionRangeInclusiveBounds() throws Exception {
Profile profile = newProfile("[1.5,1.6]");
assertActivation(false, profile, newContext(null, newProperties("1.4")));
assertActivation(false, profile, newContext(null, newProperties("1.4.2")));
assertActivation(false, profile, newContext(null, newProperties("1.4.2_09")));
assertActivation(false, profile, newContext(null, newProperties("1.4.2_09-b03")));
assertActivation(true, profile, newContext(null, newProperties("1.5")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0_09")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0_09-b03")));
assertActivation(true, profile, newContext(null, newProperties("1.5.1")));
assertActivation(true, profile, newContext(null, newProperties("1.6")));
assertActivation(true, profile, newContext(null, newProperties("1.6.0")));
assertActivation(true, profile, newContext(null, newProperties("1.6.0_09")));
assertActivation(true, profile, newContext(null, newProperties("1.6.0_09-b03")));
}
@Test
void testVersionRangeExclusiveBounds() throws Exception {
Profile profile = newProfile("(1.3,1.6)");
assertActivation(false, profile, newContext(null, newProperties("1.3")));
assertActivation(false, profile, newContext(null, newProperties("1.3.0")));
assertActivation(false, profile, newContext(null, newProperties("1.3.0_09")));
assertActivation(false, profile, newContext(null, newProperties("1.3.0_09-b03")));
assertActivation(true, profile, newContext(null, newProperties("1.3.1")));
assertActivation(true, profile, newContext(null, newProperties("1.3.1_09")));
assertActivation(true, profile, newContext(null, newProperties("1.3.1_09-b03")));
assertActivation(true, profile, newContext(null, newProperties("1.5")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0_09")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0_09-b03")));
assertActivation(true, profile, newContext(null, newProperties("1.5.1")));
assertActivation(false, profile, newContext(null, newProperties("1.6")));
}
@Test
void testVersionRangeInclusiveLowerBound() throws Exception {
Profile profile = newProfile("[1.5,)");
assertActivation(false, profile, newContext(null, newProperties("1.4")));
assertActivation(false, profile, newContext(null, newProperties("1.4.2")));
assertActivation(false, profile, newContext(null, newProperties("1.4.2_09")));
assertActivation(false, profile, newContext(null, newProperties("1.4.2_09-b03")));
assertActivation(true, profile, newContext(null, newProperties("1.5")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0_09")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0_09-b03")));
assertActivation(true, profile, newContext(null, newProperties("1.5.1")));
assertActivation(true, profile, newContext(null, newProperties("1.6")));
assertActivation(true, profile, newContext(null, newProperties("1.6.0")));
assertActivation(true, profile, newContext(null, newProperties("1.6.0_09")));
assertActivation(true, profile, newContext(null, newProperties("1.6.0_09-b03")));
}
@Test
void testVersionRangeExclusiveUpperBound() throws Exception {
Profile profile = newProfile("(,1.6)");
assertActivation(true, profile, newContext(null, newProperties("1.5")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0_09")));
assertActivation(true, profile, newContext(null, newProperties("1.5.0_09-b03")));
assertActivation(true, profile, newContext(null, newProperties("1.5.1")));
assertActivation(false, profile, newContext(null, newProperties("1.6")));
assertActivation(false, profile, newContext(null, newProperties("1.6.0")));
assertActivation(false, profile, newContext(null, newProperties("1.6.0_09")));
assertActivation(false, profile, newContext(null, newProperties("1.6.0_09-b03")));
}
}