15
15
*/
16
16
package io .micrometer .release .train ;
17
17
18
+ import com .fasterxml .jackson .core .JsonProcessingException ;
19
+ import com .fasterxml .jackson .databind .ObjectMapper ;
18
20
import io .micrometer .release .common .Dependency ;
19
21
import io .micrometer .release .common .GradleParser ;
20
22
import io .micrometer .release .common .Input ;
@@ -38,6 +40,8 @@ class DependencyVerifier {
38
40
39
41
private final ProcessRunner processRunner ;
40
42
43
+ private final ObjectMapper objectMapper ;
44
+
41
45
private final int initialWait ;
42
46
43
47
private final int timeout ;
@@ -46,18 +50,20 @@ class DependencyVerifier {
46
50
47
51
private final TimeUnit timeUnit ;
48
52
49
- DependencyVerifier (ProcessRunner processRunner ) {
53
+ DependencyVerifier (ProcessRunner processRunner , ObjectMapper objectMapper ) {
50
54
this .processRunner = processRunner ;
55
+ this .objectMapper = objectMapper ;
51
56
this .timeUnit = TimeUnit .SECONDS ;
52
57
this .initialWait = 15 ;
53
58
this .timeout = 60 * 10 ;
54
59
this .waitBetweenRuns = 30 ;
55
60
}
56
61
57
62
// for tests
58
- DependencyVerifier (ProcessRunner processRunner , int initialWait , int timeout , int waitBetweenRuns ,
59
- TimeUnit timeUnit ) {
63
+ DependencyVerifier (ProcessRunner processRunner , ObjectMapper objectMapper , int initialWait , int timeout ,
64
+ int waitBetweenRuns , TimeUnit timeUnit ) {
60
65
this .processRunner = processRunner ;
66
+ this .objectMapper = objectMapper ;
61
67
this .initialWait = initialWait ;
62
68
this .timeout = timeout ;
63
69
this .waitBetweenRuns = waitBetweenRuns ;
@@ -213,23 +219,27 @@ private void waitForDependabotJobsToFinish(String orgRepository, String githubSe
213
219
long startTime = System .currentTimeMillis ();
214
220
long timeoutMillis = timeUnit .toMillis (timeout / 2 );
215
221
while (System .currentTimeMillis () - startTime < timeoutMillis ) {
216
- List <String > statuses = curlRuns (orgRepository , githubServerTime , id ).stream ()
217
- .filter (s -> s .contains ("\" status\" : \" " ))
218
- .map (s -> s .substring (s .lastIndexOf (":" ) + 1 ).replace ("\" " , "" ).replace ("," , "" ).trim ())
219
- .toList ();
220
- if (statuses .isEmpty ()) {
221
- log .info ("No dependabot jobs found" );
222
- }
223
- else {
224
- log .info ("Found {} Dependabot jobs with statuses {}" , statuses .size (), statuses );
225
- boolean allCompleted = statuses .stream ().allMatch (s -> s .equalsIgnoreCase ("completed" ));
226
- if (allCompleted ) {
227
- log .info ("All dependabot jobs completed" );
228
- return ;
222
+ List <String > curl = curlRuns (orgRepository , githubServerTime , id );
223
+ try {
224
+ Workflows workflows = objectMapper .readValue (String .join ("\n " , curl ), Workflows .class );
225
+ List <Pr > prs = workflows .workflow_runs ();
226
+ if (prs .isEmpty ()) {
227
+ log .info ("No dependabot jobs found" );
229
228
}
229
+ else {
230
+ log .info ("Found {} Dependabot jobs with statuses {}" , prs .size (), prs );
231
+ boolean allCompleted = prs .stream ().allMatch (pr -> pr .status ().equalsIgnoreCase ("completed" ));
232
+ if (allCompleted ) {
233
+ log .info ("All dependabot jobs completed" );
234
+ return ;
235
+ }
236
+ }
237
+ log .info ("Not all Dependabot jobs processed, will try again..." );
238
+ sleep (waitBetweenRuns );
239
+ }
240
+ catch (JsonProcessingException e ) {
241
+ throw new RuntimeException (e );
230
242
}
231
- log .info ("Not all Dependabot jobs processed, will try again..." );
232
- sleep (waitBetweenRuns );
233
243
}
234
244
log .error ("Failed! Dependabot jobs not processed within the provided timeout" );
235
245
throw new IllegalStateException ("Timeout waiting for Dependabot jobs to complete" );
@@ -241,6 +251,14 @@ List<String> curlRuns(String orgRepository, String githubServerTime, String id)
241
251
+ "&workflow_id=" + id );
242
252
}
243
253
254
+ record Pr (String id , String name , String url , String status ) {
255
+
256
+ }
257
+
258
+ record Workflows (List <Pr > workflow_runs ) {
259
+
260
+ }
261
+
244
262
private String getDependabotupdatesWorkflowId (String orgRepository ) {
245
263
List <String > ids = processRunner .run ("gh" , "workflow" , "list" , "-R" , orgRepository , "--json" , "id,name" , "--jq" ,
246
264
".[] | select(.name==\" Dependabot Updates\" ) | .id" );
0 commit comments