15
15
*/
16
16
package io .micrometer .release .common ;
17
17
18
- import static org .assertj .core .api .Assertions .assertThat ;
19
-
20
18
import com .fasterxml .jackson .core .JsonProcessingException ;
21
19
import com .fasterxml .jackson .databind .DeserializationFeature ;
22
20
import com .fasterxml .jackson .databind .JsonNode ;
23
21
import com .fasterxml .jackson .databind .ObjectMapper ;
24
22
import com .fasterxml .jackson .datatype .jsr310 .JavaTimeModule ;
25
23
import io .micrometer .release .JavaHomeFinder ;
24
+ import org .junit .jupiter .api .BeforeAll ;
25
+ import org .junit .jupiter .api .Tag ;
26
+ import org .slf4j .Logger ;
27
+ import org .slf4j .LoggerFactory ;
26
28
27
29
import java .time .LocalDate ;
28
30
import java .util .ArrayList ;
29
31
import java .util .List ;
30
32
import java .util .Map ;
31
33
32
- import org .junit .jupiter .api .BeforeAll ;
33
- import org .junit .jupiter .api .Tag ;
34
- import org .slf4j .Logger ;
35
- import org .slf4j .LoggerFactory ;
34
+ import static org .assertj .core .api .Assertions .assertThat ;
36
35
37
36
@ Tag ("e2e" )
38
37
public interface GithubActions {
@@ -49,8 +48,8 @@ public interface GithubActions {
49
48
static void resetsMilestones () throws InterruptedException {
50
49
assertThat (System .getenv ("GH_TOKEN" )).as ("GH_TOKEN env var must be set!" ).isNotBlank ();
51
50
log .info (
52
- "This test requires GH connection and will operate on [{}] repository. It's quite slow because it runs GH actions so please be patient..." ,
53
- REPO );
51
+ "This test requires GH connection and will operate on [{}] repository. It's quite slow because it runs GH actions so please be patient..." ,
52
+ REPO );
54
53
resetMilestones ();
55
54
}
56
55
@@ -65,8 +64,7 @@ static void runWorkflow(String workflowName, List<String> commands) {
65
64
processRunner .run (commands );
66
65
try {
67
66
waitForWorkflowCompletion (workflowName );
68
- }
69
- catch (InterruptedException e ) {
67
+ } catch (InterruptedException e ) {
70
68
throw new IllegalStateException (e );
71
69
}
72
70
}
@@ -79,16 +77,19 @@ private static void waitForWorkflowCompletion(String workflowFile) throws Interr
79
77
int maxAttempts = 30 ;
80
78
int attempts = 0 ;
81
79
while (!completed && attempts < maxAttempts ) { // 5 minute timeout
82
- List <String > status = processRunner .run ("gh" , "run" , "list" , "--workflow" , workflowFile , "--limit" , "1" );
83
- log .info ("Workflow [{}] not completed yet - attempt [{}]/[{}]" , workflowFile , attempts + 1 , maxAttempts );
80
+ List <String > status = processRunner .run ("gh" , "run" , "list" , "--workflow" , workflowFile ,
81
+ "--limit" , "1" );
82
+ log .info ("Workflow [{}] not completed yet - attempt [{}]/[{}]" , workflowFile ,
83
+ attempts + 1 , maxAttempts );
84
84
completed = status .stream ().anyMatch (line -> line .contains ("completed" ));
85
85
if (!completed ) {
86
86
Thread .sleep (10_000 );
87
87
attempts ++;
88
88
}
89
89
}
90
90
if (!completed ) {
91
- throw new RuntimeException ("Workflow " + workflowFile + " did not complete within timeout" );
91
+ throw new RuntimeException (
92
+ "Workflow " + workflowFile + " did not complete within timeout" );
92
93
}
93
94
log .info ("Workflow [{}] completed successfully!" , workflowFile );
94
95
}
@@ -116,46 +117,54 @@ class GithubClient {
116
117
GithubClient (String token , String repo ) {
117
118
this .repo = repo ;
118
119
this .processRunner = new ProcessRunner (repo ).withEnvVars (
119
- Map .of ("JAVA_HOME" , JavaHomeFinder .findJavaHomePath (), "GH_TOKEN" , token != null ? token : "" ));
120
+ Map .of ("JAVA_HOME" , JavaHomeFinder .findJavaHomePath (), "GH_TOKEN" ,
121
+ token != null ? token : "" ));
120
122
this .objectMapper = new ObjectMapper ().registerModule (new JavaTimeModule ())
121
123
.configure (DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES , false );
122
124
}
123
125
124
126
public Release getRelease (String tag ) throws JsonProcessingException {
125
- List <String > output = processRunner .run ("gh" , "api" , "/repos/" + repo + "/releases/tags/" + tag );
126
- return parseReleaseFromJson (output .get (0 ));
127
+ String output = String .join ("\n " ,
128
+ processRunner .run ("gh" , "api" , "/repos/" + repo + "/releases/tags/" + tag ));
129
+ return parseReleaseFromJson (output );
127
130
}
128
131
129
132
public Milestone getMilestoneByTitle (String title ) throws JsonProcessingException {
130
- List <String > output = processRunner .run ("gh" , "api" , "/repos/" + repo + "/milestones" );
131
- return parseMilestoneFromJson (output .get (0 ), title );
133
+ String output = String .join ("\n " ,
134
+ processRunner .run ("gh" , "api" , "/repos/" + repo + "/milestones" ));
135
+ return parseMilestoneFromJson (output , title );
132
136
}
133
137
134
- public List <Issue > getIssuesForMilestone (int milestoneNumber ) throws JsonProcessingException {
135
- List <String > output = processRunner .run ("gh" , "api" ,
136
- "/repos/" + repo + "/issues?milestone=" + milestoneNumber );
137
- return parseIssuesFromJson (output .get (0 ));
138
+ public List <Issue > getIssuesForMilestone (int milestoneNumber )
139
+ throws JsonProcessingException {
140
+ String output = String .join ("\n " , processRunner .run ("gh" , "api" ,
141
+ "/repos/" + repo + "/issues?milestone=" + milestoneNumber ));
142
+ return parseIssuesFromJson (output );
138
143
}
139
144
140
- public List <Issue > getClosedIssuesForMilestone (int milestoneNumber ) throws JsonProcessingException {
141
- List <String > output = processRunner .run ("gh" , "api" ,
142
- "/repos/" + repo + "/issues?milestone=" + milestoneNumber + "&state=closed" );
143
- return parseIssuesFromJson (output .get (0 ));
145
+ public List <Issue > getClosedIssuesForMilestone (int milestoneNumber )
146
+ throws JsonProcessingException {
147
+ String output = String .join ("\n " , processRunner .run ("gh" , "api" ,
148
+ "/repos/" + repo + "/issues?milestone=" + milestoneNumber + "&state=closed" ));
149
+ return parseIssuesFromJson (output );
144
150
}
145
151
146
152
private Release parseReleaseFromJson (String json ) throws JsonProcessingException {
147
153
JsonNode root = objectMapper .readTree (json );
148
154
return new Release (root .get ("body" ).asText ());
149
155
}
150
156
151
- private Milestone parseMilestoneFromJson (String json , String title ) throws JsonProcessingException {
157
+ private Milestone parseMilestoneFromJson (String json , String title )
158
+ throws JsonProcessingException {
152
159
JsonNode root = objectMapper .readTree (json );
153
160
for (JsonNode milestone : root ) {
154
161
if (milestone .get ("title" ).asText ().equals (title )) {
155
- return new Milestone (milestone .get ("number" ).asInt (), milestone .get ("state" ).asText (),
156
- milestone .get ("title" ).asText (),
157
- milestone .get ("due_on" ) != null && !milestone .get ("due_on" ).isNull ()
158
- ? LocalDate .parse (milestone .get ("due_on" ).asText ().substring (0 , 10 )) : null );
162
+ return new Milestone (milestone .get ("number" ).asInt (),
163
+ milestone .get ("state" ).asText (),
164
+ milestone .get ("title" ).asText (),
165
+ milestone .get ("due_on" ) != null && !milestone .get ("due_on" ).isNull ()
166
+ ? LocalDate .parse (milestone .get ("due_on" ).asText ().substring (0 , 10 ))
167
+ : null );
159
168
}
160
169
}
161
170
throw new RuntimeException ("Milestone with title " + title + " not found" );
@@ -166,7 +175,7 @@ private List<Issue> parseIssuesFromJson(String json) throws JsonProcessingExcept
166
175
List <Issue > issues = new ArrayList <>();
167
176
for (JsonNode issue : root ) {
168
177
issues .add (new Issue (issue .get ("number" ).asInt (), issue .get ("state" ).asText (),
169
- issue .get ("title" ).asText ()));
178
+ issue .get ("title" ).asText ()));
170
179
}
171
180
return issues ;
172
181
}
0 commit comments