Skip to content

Commit 2eecb63

Browse files
Trying out curl
1 parent 53bce43 commit 2eecb63

File tree

4 files changed

+3477
-12
lines changed

4 files changed

+3477
-12
lines changed

src/e2eTest/java/io/micrometer/release/single/SingleProjectGithubActionsE2eTests.java

+2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@
1818
import com.fasterxml.jackson.core.JsonProcessingException;
1919
import io.micrometer.release.common.GithubActions;
2020
import org.junit.jupiter.api.BeforeAll;
21+
import org.junit.jupiter.api.Disabled;
2122
import org.junit.jupiter.api.Test;
2223

2324
import java.time.LocalDate;
2425
import java.util.List;
2526

2627
import static org.assertj.core.api.Assertions.assertThat;
2728

29+
@Disabled("TODO: Remove me")
2830
class SingleProjectGithubActionsE2eTests implements GithubActions {
2931

3032
@BeforeAll

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

+9-2
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,10 @@ private void waitForDependabotJobsToFinish(String orgRepository, String githubSe
208208
long startTime = System.currentTimeMillis();
209209
long timeoutMillis = timeUnit.toMillis(timeout / 2);
210210
while (System.currentTimeMillis() - startTime < timeoutMillis) {
211-
List<String> statuses = processRunner.run("gh", "run", "list", "--workflow=" + id, "-R", orgRepository,
212-
"--created='>" + githubServerTime + "'", "--json=status", "--jq=.[].status");
211+
List<String> statuses = curlRuns(orgRepository, githubServerTime, id).stream()
212+
.filter(s -> s.contains("\"status\": \""))
213+
.map(s -> s.substring(s.lastIndexOf(":") + 1).replace("\"", "").replace(",", "").trim())
214+
.toList();
213215
if (statuses.isEmpty()) {
214216
log.info("No dependabot jobs found");
215217
}
@@ -228,6 +230,11 @@ private void waitForDependabotJobsToFinish(String orgRepository, String githubSe
228230
throw new IllegalStateException("Timeout waiting for Dependabot jobs to complete");
229231
}
230232

233+
List<String> curlRuns(String orgRepository, String githubServerTime, String id) {
234+
return processRunner.run("curl", "-H", "Authorization: token " + ghToken(), "https://api.github.com/repos/"
235+
+ orgRepository + "/actions/runs?created=>" + githubServerTime + "&workflow_id=" + id);
236+
}
237+
231238
private String getDependabotupdatesWorkflowId(String orgRepository) {
232239
List<String> ids = processRunner.run("gh", "workflow", "list", "-R", orgRepository, "--json", "id,name", "--jq",
233240
".[] | select(.name==\"Dependabot Updates\") | .id");

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

+23-10
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
import io.micrometer.release.common.GradleParser;
1919
import io.micrometer.release.common.ProcessRunner;
2020
import io.micrometer.release.common.TestGradleParser;
21+
22+
import java.io.IOException;
23+
import java.nio.file.Files;
24+
2125
import org.junit.jupiter.api.BeforeEach;
2226
import org.junit.jupiter.api.Test;
2327
import org.mockito.InOrder;
@@ -51,8 +55,8 @@ class DependencyVerifierTests {
5155
private static final String[] dependabotUpdateJobTime = { "gh", "run", "list", "--workflow=1234", "-R",
5256
"micrometer-metrics/micrometer", "--json=createdAt", "--jq=.[].createdAt", "--limit=1" };
5357

54-
private static final String[] dependabotUpdateJobStates = { "gh", "run", "list", "--workflow=1234", "-R",
55-
"micrometer-metrics/micrometer", "--created='>2025-02-24T10:51:29Z'", "--json=status", "--jq=.[].status" };
58+
private static final String[] dependabotUpdateJobStates = { "curl", "-H", "Authorization: token 1234567890",
59+
"https://api.github.com/repos/micrometer-metrics/micrometer/actions/runs?created=>2025-02-24T10:51:29Z&workflow_id=1234" };
5660

5761
ProcessRunner processRunner = mock();
5862

@@ -87,15 +91,16 @@ ProcessRunner processRunnerForBranch(File clonedRepo) {
8791
}
8892

8993
@BeforeEach
90-
void setup() {
94+
void setup() throws URISyntaxException, IOException {
9195
given(processRunner.run(dependabotUpdateJobsIds)).willReturn(List.of("1234"));
92-
given(processRunner.run(dependabotUpdateJobStates)).willReturn(List.of("completed"));
96+
given(processRunner.run(dependabotUpdateJobStates)).willReturn(Files
97+
.readAllLines(new File(DependencyVerifierTests.class.getResource("/github/runs.json").toURI()).toPath()));
98+
given(processRunner.run(dependabotUpdateJobTime)).willReturn(List.of("2025-02-24T10:51:29Z"));
9399
}
94100

95101
@Test
96102
@SuppressWarnings("unchecked")
97103
void should_receive_updated_dependabot_status() {
98-
given(processRunner.run(dependabotUpdateJobTime)).willReturn(List.of("2025-02-24T10:51:29Z"));
99104
given(processRunner.run(dependabotCreatedPrNumbers)).willReturn(Collections.singletonList("1234"),
100105
Collections.singletonList("1234"), Collections.emptyList());
101106
given(processRunner.run(dependabotPrState)).willReturn(Collections.singletonList("BLOCKED,OPEN"),
@@ -121,7 +126,6 @@ void should_receive_updated_dependabot_status() {
121126
@Test
122127
@SuppressWarnings("unchecked")
123128
void should_fail_when_no_dependabot_jobs_present() {
124-
given(processRunner.run(dependabotUpdateJobTime)).willReturn(List.of("2025-02-24T10:51:29Z"));
125129
given(processRunner.run(dependabotUpdateJobsIds)).willReturn(Collections.emptyList());
126130

127131
thenThrownBy(() -> verifier.verifyDependencies("main", "micrometer-metrics/micrometer"))
@@ -132,8 +136,19 @@ void should_fail_when_no_dependabot_jobs_present() {
132136
@Test
133137
@SuppressWarnings("unchecked")
134138
void should_fail_when_dependabot_jobs_are_not_successful() {
135-
given(processRunner.run(dependabotUpdateJobTime)).willReturn(List.of("2025-02-24T10:51:29Z"));
136-
given(processRunner.run(dependabotUpdateJobStates)).willReturn(List.of(), List.of("BLOCKED", "OPEN"));
139+
given(processRunner.run(dependabotUpdateJobStates)).willReturn(List.of("", """
140+
{
141+
"total_count": 15,
142+
"workflow_runs": [
143+
{
144+
"status": "blocked",
145+
"event": "pull_request"
146+
},
147+
{
148+
"status": "open",
149+
"event": "pull_request"
150+
}
151+
]"""));
137152

138153
thenThrownBy(() -> verifier.verifyDependencies("main", "micrometer-metrics/micrometer"))
139154
.isInstanceOf(IllegalStateException.class)
@@ -151,7 +166,6 @@ void should_throw_exception_when_gh_server_time_cannot_be_retrieved() {
151166

152167
@Test
153168
void should_throw_exception_when_dependabot_pr_is_conflicting() {
154-
given(processRunner.run(dependabotUpdateJobTime)).willReturn(List.of("2025-02-24T10:51:29Z"));
155169
given(processRunner.run(dependabotCreatedPrNumbers)).willReturn(Collections.singletonList("1234"));
156170
given(processRunner.run(dependabotPrState)).willReturn(Collections.singletonList("CONFLICTING"));
157171

@@ -162,7 +176,6 @@ void should_throw_exception_when_dependabot_pr_is_conflicting() {
162176

163177
@Test
164178
void should_throw_exception_when_timeout() {
165-
given(processRunner.run(dependabotUpdateJobTime)).willReturn(List.of("2025-02-24T10:51:29Z"));
166179
given(processRunner.run(dependabotCreatedPrNumbers)).willReturn(Collections.singletonList("1234"));
167180
given(processRunner.run(dependabotPrState)).willReturn(Collections.singletonList("BLOCKED,OPEN"));
168181

0 commit comments

Comments
 (0)