Use consistent logic to determine Artifactory repo from version
Fixes gh-21034pull/21040/head
parent
415dcd899d
commit
564aec93fc
@ -0,0 +1,59 @@
|
||||
/*
|
||||
* 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.artifactory;
|
||||
|
||||
import org.gradle.api.Project;
|
||||
|
||||
/**
|
||||
* An Artifactory repository to which a build of Spring Boot can be published.
|
||||
*
|
||||
* @author Andy Wilkinson
|
||||
*/
|
||||
public final class ArtifactoryRepository {
|
||||
|
||||
private final String name;
|
||||
|
||||
private ArtifactoryRepository(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public static ArtifactoryRepository forProject(Project project) {
|
||||
return new ArtifactoryRepository(determineArtifactoryRepo(project));
|
||||
}
|
||||
|
||||
private static String determineArtifactoryRepo(Project project) {
|
||||
String version = project.getVersion().toString();
|
||||
String type = version.substring(version.lastIndexOf('.') + 1);
|
||||
if (type.equals("RELEASE")) {
|
||||
return "release";
|
||||
}
|
||||
if (type.startsWith("M") || type.startsWith("RC")) {
|
||||
return "milestone";
|
||||
}
|
||||
return "snapshot";
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,60 @@
|
||||
/*
|
||||
* 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.artifactory;
|
||||
|
||||
import org.gradle.api.Project;
|
||||
import org.gradle.testfixtures.ProjectBuilder;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link ArtifactoryRepository}.
|
||||
*
|
||||
* @author Andy Wilkinson
|
||||
*/
|
||||
public class ArtifactoryRepositoryTests {
|
||||
|
||||
@Test
|
||||
void whenProjectVersionIsMilestoneThenRepositoryIsMilestone() {
|
||||
Project project = ProjectBuilder.builder().build();
|
||||
project.setVersion("1.2.3.M1");
|
||||
assertThat(ArtifactoryRepository.forProject(project).getName()).isEqualTo("milestone");
|
||||
}
|
||||
|
||||
@Test
|
||||
void whenProjectVersionIsReleaseCandidateThenRepositoryIsMilestone() {
|
||||
Project project = ProjectBuilder.builder().build();
|
||||
project.setVersion("1.2.3.RC1");
|
||||
assertThat(ArtifactoryRepository.forProject(project).getName()).isEqualTo("milestone");
|
||||
}
|
||||
|
||||
@Test
|
||||
void whenProjectVersionIsReleaseThenRepositoryIsRelease() {
|
||||
Project project = ProjectBuilder.builder().build();
|
||||
project.setVersion("1.2.3.RELEASE");
|
||||
assertThat(ArtifactoryRepository.forProject(project).getName()).isEqualTo("release");
|
||||
}
|
||||
|
||||
@Test
|
||||
void whenProjectVersionIsBuildSnapshotThenRepositoryIsSnapshot() {
|
||||
Project project = ProjectBuilder.builder().build();
|
||||
project.setVersion("1.2.3.BUILD-SNAPSHOT");
|
||||
assertThat(ArtifactoryRepository.forProject(project).getName()).isEqualTo("snapshot");
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue