7 changed files with 247 additions and 6 deletions
@ -0,0 +1,63 @@
@@ -0,0 +1,63 @@
|
||||
/* |
||||
* Copyright 2012-2020 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 |
||||
* |
||||
* https://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.springframework.boot.build.bom.bomr.version; |
||||
|
||||
import java.util.regex.Pattern; |
||||
|
||||
import org.apache.maven.artifact.versioning.ArtifactVersion; |
||||
import org.apache.maven.artifact.versioning.ComparableVersion; |
||||
import org.apache.maven.artifact.versioning.DefaultArtifactVersion; |
||||
|
||||
/** |
||||
* A specialization of {@link ArtifactVersionDependencyVersion} for calendar versions. |
||||
* Calendar versions are always considered to be newer than |
||||
* {@link ReleaseTrainDependencyVersion release train versions}. |
||||
* |
||||
* @author Andy Wilkinson |
||||
*/ |
||||
class CalendarVersionDependencyVersion extends ArtifactVersionDependencyVersion { |
||||
|
||||
private static final Pattern CALENDAR_VERSION_PATTERN = Pattern.compile("\\d{4}\\.\\d+\\.\\d+(-.+)?"); |
||||
|
||||
protected CalendarVersionDependencyVersion(ArtifactVersion artifactVersion) { |
||||
super(artifactVersion); |
||||
} |
||||
|
||||
protected CalendarVersionDependencyVersion(ArtifactVersion artifactVersion, ComparableVersion comparableVersion) { |
||||
super(artifactVersion, comparableVersion); |
||||
} |
||||
|
||||
@Override |
||||
public boolean isNewerThan(DependencyVersion other) { |
||||
if (other instanceof ReleaseTrainDependencyVersion) { |
||||
return true; |
||||
} |
||||
return super.isNewerThan(other); |
||||
} |
||||
|
||||
static CalendarVersionDependencyVersion parse(String version) { |
||||
if (!CALENDAR_VERSION_PATTERN.matcher(version).matches()) { |
||||
return null; |
||||
} |
||||
ArtifactVersion artifactVersion = new DefaultArtifactVersion(version); |
||||
if (artifactVersion.getQualifier() != null && artifactVersion.getQualifier().equals(version)) { |
||||
return null; |
||||
} |
||||
return new CalendarVersionDependencyVersion(artifactVersion); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,138 @@
@@ -0,0 +1,138 @@
|
||||
/* |
||||
* Copyright 2012-2020 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 |
||||
* |
||||
* https://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.springframework.boot.build.bom.bomr.version; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link CalendarVersionDependencyVersion}. |
||||
* |
||||
* @author Andy Wilkinson |
||||
*/ |
||||
public class CalendarVersionDependencyVersionTests { |
||||
|
||||
@Test |
||||
void parseWhenVersionIsNotACalendarVersionShouldReturnNull() { |
||||
assertThat(version("1.2.3")).isNull(); |
||||
} |
||||
|
||||
@Test |
||||
void parseWhenVersionIsACalendarVersionShouldReturnAVersion() { |
||||
assertThat(version("2020.0.0")).isNotNull(); |
||||
} |
||||
|
||||
@Test |
||||
void isNewerThanWhenInputIsEarlierYearShouldReturnTrue() { |
||||
assertThat(version("2020.1.2").isNewerThan(version("2019.9.0"))).isTrue(); |
||||
} |
||||
|
||||
@Test |
||||
void isNewerThanWhenInputIsOlderMinorShouldReturnTrue() { |
||||
assertThat(version("2020.1.2").isNewerThan(version("2020.0.2"))).isTrue(); |
||||
} |
||||
|
||||
@Test |
||||
void isNewerThanWhenInputIsOlderMicroShouldReturnTrue() { |
||||
assertThat(version("2020.1.2").isNewerThan(version("2020.1.1"))).isTrue(); |
||||
} |
||||
|
||||
@Test |
||||
void isNewerThanWhenInputIsLaterYearShouldReturnFalse() { |
||||
assertThat(version("2020.1.2").isNewerThan(version("2021.2.1"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMajorAndNewerThanWhenMinorIsOlderShouldReturnTrue() { |
||||
assertThat(version("2020.10.2").isSameMajorAndNewerThan(version("2020.9.0"))).isTrue(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMajorAndNewerThanWhenMajorIsOlderShouldReturnFalse() { |
||||
assertThat(version("2020.0.2").isSameMajorAndNewerThan(version("2019.9.0"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMajorAndNewerThanWhenMicroIsNewerShouldReturnTrue() { |
||||
assertThat(version("2020.1.2").isSameMajorAndNewerThan(version("2020.1.1"))).isTrue(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMajorAndNewerThanWhenMinorIsNewerShouldReturnFalse() { |
||||
assertThat(version("2020.1.2").isSameMajorAndNewerThan(version("2020.2.1"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMajorAndNewerThanWhenMajorIsNewerShouldReturnFalse() { |
||||
assertThat(version("2019.1.2").isSameMajorAndNewerThan(version("2020.0.1"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMinorAndNewerThanWhenMicroIsOlderShouldReturnTrue() { |
||||
assertThat(version("2020.10.2").isSameMinorAndNewerThan(version("2020.10.1"))).isTrue(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMinorAndNewerThanWhenMinorIsOlderShouldReturnFalse() { |
||||
assertThat(version("2020.1.2").isSameMinorAndNewerThan(version("2020.0.1"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMinorAndNewerThanWhenVersionsAreTheSameShouldReturnFalse() { |
||||
assertThat(version("2020.1.2").isSameMinorAndNewerThan(version("2020.1.2"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMinorAndNewerThanWhenMicroIsNewerShouldReturnFalse() { |
||||
assertThat(version("2020.1.2").isSameMinorAndNewerThan(version("2020.1.3"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMinorAndNewerThanWhenMinorIsNewerShouldReturnFalse() { |
||||
assertThat(version("2020.1.2").isSameMinorAndNewerThan(version("2020.0.1"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void isSameMinorAndNewerThanWhenMajorIsNewerShouldReturnFalse() { |
||||
assertThat(version("2020.1.2").isSameMinorAndNewerThan(version("2019.0.1"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void calendarVersionIsNewerThanReleaseTrainVersion() { |
||||
assertThat(version("2020.0.0").isNewerThan(releaseTrainVersion("Aluminium-RELEASE"))).isTrue(); |
||||
} |
||||
|
||||
@Test |
||||
void calendarVersionIsNotSameMajorAsReleaseTrainVersion() { |
||||
assertThat(version("2020.0.0").isSameMajorAndNewerThan(releaseTrainVersion("Aluminium-RELEASE"))).isFalse(); |
||||
} |
||||
|
||||
@Test |
||||
void calendarVersionIsNotSameMinorAsReleaseTrainVersion() { |
||||
assertThat(version("2020.0.0").isSameMinorAndNewerThan(releaseTrainVersion("Aluminium-RELEASE"))).isFalse(); |
||||
} |
||||
|
||||
private ReleaseTrainDependencyVersion releaseTrainVersion(String version) { |
||||
return ReleaseTrainDependencyVersion.parse(version); |
||||
} |
||||
|
||||
private CalendarVersionDependencyVersion version(String version) { |
||||
return CalendarVersionDependencyVersion.parse(version); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue