15
15
16
16
import com .fasterxml .jackson .annotation .JsonProperty ;
17
17
import com .fasterxml .jackson .databind .ObjectMapper ;
18
+
19
+ import java .net .http .HttpResponse .BodyHandlers ;
20
+
18
21
import org .slf4j .Logger ;
19
22
import org .slf4j .LoggerFactory ;
20
23
@@ -42,48 +45,69 @@ class CircleCiChecker {
42
45
43
46
private final String externalUrl ;
44
47
48
+ private final int waitTimeMs ;
49
+
50
+ private final int numberOfRetries ;
51
+
45
52
CircleCiChecker (String circleCiToken , String githubOrgRepo , HttpClient httpClient , ObjectMapper objectMapper ) {
46
53
this .circleCiToken = circleCiToken ;
47
54
this .githubOrgRepo = githubOrgRepo ;
48
55
this .httpClient = httpClient ;
49
56
this .objectMapper = objectMapper ;
50
57
this .externalUrl = System .getenv ("CI_URL" ) != null ? System .getenv ("CI_URL" ) : CIRCLE_URL ;
58
+ this .waitTimeMs = 5 * 1000 ;
59
+ this .numberOfRetries = 3 ;
51
60
}
52
61
53
62
CircleCiChecker (String circleCiToken , String githubOrgRepo , HttpClient httpClient , ObjectMapper objectMapper ,
54
- String externalUrl ) {
63
+ String externalUrl , int waitTimeMs , int numberOfRetries ) {
55
64
this .circleCiToken = circleCiToken ;
56
65
this .githubOrgRepo = githubOrgRepo ;
57
66
this .httpClient = httpClient ;
58
67
this .objectMapper = objectMapper ;
59
68
this .externalUrl = externalUrl ;
69
+ this .waitTimeMs = waitTimeMs ;
70
+ this .numberOfRetries = numberOfRetries ;
60
71
}
61
72
62
73
boolean checkBuildStatus (String version ) throws IOException , InterruptedException {
63
74
log .info ("Checking CircleCI status for version: [{}]" , version );
64
75
String tag = "v" + version ;
65
76
String apiUrl = externalUrl + "project/github/" + githubOrgRepo + "/pipeline" ;
66
- int pageCount = 0 ;
67
- // Limit to 2 pages - there shouldn't be more jobs to search against
68
- while (apiUrl != null && pageCount < 2 ) {
69
- HttpRequest request = getCircleHttpRequest (apiUrl );
70
- HttpResponse <String > response = sendPipelineRequest (request );
71
- PipelineResponse pipelineResponse = objectMapper .readValue (response .body (), PipelineResponse .class );
72
- for (Pipeline pipeline : pipelineResponse .items ()) {
73
- if (tag .equals (pipeline .vcs ().tag ())) {
74
- return checkWorkflowStatus (pipeline .id ());
77
+ log .info ("Waiting for [{}] ms for the CircleCI build to appear" , waitTimeMs );
78
+ Thread .sleep (waitTimeMs );
79
+ log .info ("Will try [{}] times with wait time [{}] ms to check if the build in CircleCI appeared" ,
80
+ numberOfRetries , waitTimeMs );
81
+ for (int i = 0 ; i < numberOfRetries ; i ++) {
82
+ int pageCount = 0 ;
83
+ // Limit to 2 pages - there shouldn't be more jobs to search against
84
+ while (apiUrl != null && pageCount < 2 ) {
85
+ HttpRequest request = getCircleHttpRequest (apiUrl );
86
+ PipelineResponse pipelineResponse = getPipelineResponse (request );
87
+ for (Pipeline pipeline : pipelineResponse .items ()) {
88
+ if (tag .equals (pipeline .vcs ().tag ())) {
89
+ return checkWorkflowStatus (pipeline .id ());
90
+ }
75
91
}
92
+ apiUrl = pipelineResponse .nextPageToken () != null
93
+ ? apiUrl + "?page-token=" + pipelineResponse .nextPageToken () : null ;
94
+ pageCount ++;
95
+ log .info ("The tag [{}] was not found in this page, trying page [{}]" , tag , pageCount );
76
96
}
77
- apiUrl = pipelineResponse .nextPageToken () != null
78
- ? apiUrl + "?page-token=" + pipelineResponse .nextPageToken () : null ;
79
- pageCount ++;
80
- log .info ("The tag [{}] was not found in this page, trying page [{}]" , tag , pageCount );
97
+ log .info ("Try [{}/{}] - no CircleCI pipeline found for tag [{}], will try again in [{}] ms" , i + 1 ,
98
+ numberOfRetries , tag , waitTimeMs );
99
+ Thread .sleep (waitTimeMs );
81
100
}
82
101
throw new IllegalStateException ("No CircleCI pipeline found for tag [" + tag + "]" );
83
102
}
84
103
104
+ private PipelineResponse getPipelineResponse (HttpRequest request ) throws IOException , InterruptedException {
105
+ HttpResponse <String > response = sendPipelineRequest (request );
106
+ return objectMapper .readValue (response .body (), PipelineResponse .class );
107
+ }
108
+
85
109
private HttpResponse <String > sendPipelineRequest (HttpRequest request ) throws IOException , InterruptedException {
86
- return httpClient .send (request , HttpResponse . BodyHandlers .ofString ());
110
+ return httpClient .send (request , BodyHandlers .ofString ());
87
111
}
88
112
89
113
private boolean checkWorkflowStatus (String pipelineId ) throws IOException , InterruptedException {
@@ -106,7 +130,7 @@ private boolean checkWorkflowStatus(String pipelineId) throws IOException, Inter
106
130
}
107
131
108
132
private HttpResponse <String > sendWorkflowRequest (HttpRequest request ) throws IOException , InterruptedException {
109
- return httpClient .send (request , HttpResponse . BodyHandlers .ofString ());
133
+ return httpClient .send (request , BodyHandlers .ofString ());
110
134
}
111
135
112
136
private HttpRequest getCircleHttpRequest (String workflowUrl ) {
0 commit comments