|
| 1 | +/* |
| 2 | + * Copyright 2025 Broadcom. |
| 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 | + * |
| 8 | + * 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. |
| 15 | + */ |
| 16 | +package io.micrometer.release.train; |
| 17 | + |
| 18 | +import com.fasterxml.jackson.core.JsonProcessingException; |
| 19 | +import io.micrometer.release.common.GithubActions; |
| 20 | +import io.micrometer.release.common.ReleaseDateCalculator; |
| 21 | +import org.junit.jupiter.api.BeforeAll; |
| 22 | +import org.junit.jupiter.api.Test; |
| 23 | +import org.junit.jupiter.params.ParameterizedTest; |
| 24 | +import org.junit.jupiter.params.provider.CsvSource; |
| 25 | +import org.junit.jupiter.params.provider.ValueSource; |
| 26 | + |
| 27 | +import java.time.LocalDate; |
| 28 | +import java.util.List; |
| 29 | + |
| 30 | +import static org.assertj.core.api.Assertions.assertThat; |
| 31 | + |
| 32 | +class GithubActionsAcceptanceTests implements GithubActions { |
| 33 | + |
| 34 | + @BeforeAll |
| 35 | + static void should_go_through_whole_flow() { |
| 36 | + runTrainPostReleaseWorkflow(); |
| 37 | + } |
| 38 | + |
| 39 | + @Test |
| 40 | + void should_verify_release_notes_content() throws JsonProcessingException { |
| 41 | + Release release = githubClient.getRelease("v0.1.1"); |
| 42 | + |
| 43 | + assertThat(release.body()).isEqualToIgnoringWhitespace(""" |
| 44 | + TODO |
| 45 | + """); |
| 46 | + } |
| 47 | + |
| 48 | + @ParameterizedTest |
| 49 | + @ValueSource(strings = { "0.1.1", "0.2.0-M2", "1.0.0-RC1" }) |
| 50 | + void should_verify_current_milestone(String version) throws JsonProcessingException { |
| 51 | + String generic = version.substring(0, version.lastIndexOf(".")) + ".x"; |
| 52 | + Milestone milestone = githubClient.getMilestoneByTitle(version); |
| 53 | + |
| 54 | + assertThat(milestone.state()).isEqualTo("closed"); |
| 55 | + List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number()); |
| 56 | + assertThat(issues).extracting(Issue::state).containsOnly("closed"); |
| 57 | + assertThat(issues).extracting(Issue::title) |
| 58 | + .containsOnly("Closed issue in generic " + generic, "Closed bug in concrete " + version, |
| 59 | + "Closed bug in generic " + generic, "Closed enhancement in generic " + generic); |
| 60 | + } |
| 61 | + |
| 62 | + @ParameterizedTest |
| 63 | + @CsvSource(textBlock = """ |
| 64 | + 0.1.2,0.1.1 |
| 65 | + 0.2.0-RC1,0.2.0-M2 |
| 66 | + 1.0.0,1.0.0-RC1 |
| 67 | + """) |
| 68 | + void should_verify_next_milestone(String next, String previous) throws JsonProcessingException { |
| 69 | + Milestone milestone = githubClient.getMilestoneByTitle(next); |
| 70 | + |
| 71 | + assertThat(milestone.state()).isEqualTo("open"); |
| 72 | + assertThat(milestone.dueOn()).isEqualTo(ReleaseDateCalculator.calculateDueDate(LocalDate.now())); |
| 73 | + List<Issue> issues = githubClient.getIssuesForMilestone(milestone.number()); |
| 74 | + assertThat(issues).extracting(Issue::state).containsOnly("open"); |
| 75 | + assertThat(issues).extracting(Issue::title).containsOnly("Open issue in concrete " + previous); |
| 76 | + } |
| 77 | + |
| 78 | + @ParameterizedTest |
| 79 | + @ValueSource(strings = { "0.1.x", "0.2.x", "1.0.x" }) |
| 80 | + void should_verify_generic_milestone(String branch) throws JsonProcessingException { |
| 81 | + Milestone milestone = githubClient.getMilestoneByTitle(branch); |
| 82 | + |
| 83 | + List<Issue> closedIssues = githubClient.getClosedIssuesForMilestone(milestone.number()); |
| 84 | + assertThat(closedIssues).isEmpty(); |
| 85 | + } |
| 86 | + |
| 87 | + private static void runTrainPostReleaseWorkflow() { |
| 88 | + log.info("Running train release from main"); |
| 89 | + GithubActions.runWorkflow("release-train-workflow.yml", |
| 90 | + List.of("gh", "workflow", "run", "release-train-workflow.yml", "--ref", "main", "-f", |
| 91 | + "train_versions=0.1.1,0.2.0-M2,1.0.0-RC1", "-f", "artifact_to_check=micrometer-bom")); |
| 92 | + } |
| 93 | + |
| 94 | +} |
0 commit comments