Skip to content

Commit 94f4412

Browse files
Added additional guards
1 parent 2fe791b commit 94f4412

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed

.github/workflows/train-release-workflow.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,7 @@ jobs:
3535
spring_release_gchat_webhook_url: ${{ secrets.SPRING_RELEASE_GCHAT_WEBHOOK_URL }}
3636
bluesky_handle: ${{ secrets.BLUESKY_HANDLE }}
3737
bluesky_password: ${{ secrets.BLUESKY_PASSWORD }}
38-
train_versions: ${{ github.event.inputs.train_versions }}
39-
artifact_to_check: ${{ github.event.inputs.artifact_to_check }}
38+
context_propagation_versions: ${{ github.event.inputs.context_propagation_versions }}
39+
micrometer_versions: ${{ github.event.inputs.micrometer_versions }}
40+
tracing_versions: ${{ github.event.inputs.tracing_versions }}
41+
docs_gen_versions: ${{ github.event.inputs.docs_gen_versions }}

src/main/java/io/micrometer/release/train/TrainOptions.java

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ public class TrainOptions {
2323

2424
public ProjectSetup parse(String ghOrgRepo, String contextPropagationVersions, String micrometerVersions,
2525
String tracingVersions, String docsGenVersions) {
26+
if (!hasText(contextPropagationVersions) && !hasText(micrometerVersions) && !hasText(tracingVersions)
27+
&& !hasText(docsGenVersions)) {
28+
throw new IllegalStateException("At least one st of versions must be set...");
29+
}
2630
List<ProjectWithDependencies> projects = new ArrayList<>();
2731
String[] contextPropagationVersion = split(contextPropagationVersions);
2832
parseContextPropagation(contextPropagationVersion, projects);

src/test/java/io/micrometer/release/train/TrainOptionsTests.java

+17-11
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
/**
22
* Copyright 2025 the original author or authors.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5+
* in compliance with the License. You may obtain a copy of the License at
6+
* <p>
87
* https://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
8+
* <p>
9+
* Unless required by applicable law or agreed to in writing, software distributed under the License
10+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11+
* or implied. See the License for the specific language governing permissions and limitations under
12+
* the License.
1513
*/
1614
package io.micrometer.release.train;
1715

1816
import io.micrometer.release.train.TrainOptions.ProjectSetup;
17+
import org.junit.jupiter.api.Test;
1918
import org.junit.jupiter.params.ParameterizedTest;
2019
import org.junit.jupiter.params.provider.Arguments;
2120
import org.junit.jupiter.params.provider.MethodSource;
@@ -25,11 +24,18 @@
2524

2625
import static io.micrometer.release.train.TrainOptions.Project.*;
2726
import static org.assertj.core.api.BDDAssertions.then;
27+
import static org.assertj.core.api.BDDAssertions.thenThrownBy;
2828

2929
class TrainOptionsTests {
3030

3131
TrainOptions trainOptions = new TrainOptions();
3232

33+
@Test
34+
void should_throw_exception_for_no_versions() {
35+
thenThrownBy(() -> trainOptions.parse("foo", "", null, "", null)).isInstanceOf(IllegalStateException.class)
36+
.hasMessage("At least one st of versions must be set...");
37+
}
38+
3339
@ParameterizedTest(name = "ghOrg <{0}>, contextProp <{1}>, microm <{2}>, tracing <{3}>, docsGen <{4}>")
3440
@MethodSource("should_parse_entries_to_project_setup_args")
3541
void should_parse_entries_to_project_setup(String ghOrg, String contextPropagationVersions,

0 commit comments

Comments
 (0)