|
| 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.single; |
| 17 | + |
| 18 | +import static java.time.format.DateTimeFormatter.RFC_1123_DATE_TIME; |
| 19 | + |
| 20 | +import io.micrometer.release.common.ProcessRunner; |
| 21 | + |
| 22 | +import java.time.ZonedDateTime; |
| 23 | + |
| 24 | +import org.slf4j.Logger; |
| 25 | +import org.slf4j.LoggerFactory; |
| 26 | + |
| 27 | +import java.util.List; |
| 28 | +import java.util.concurrent.TimeUnit; |
| 29 | + |
| 30 | +class DependencyVerifier { |
| 31 | + |
| 32 | + private final Logger log = LoggerFactory.getLogger(DependencyVerifier.class); |
| 33 | + |
| 34 | + private final ProcessRunner processRunner; |
| 35 | + |
| 36 | + private final String orgRepository; |
| 37 | + |
| 38 | + private final int initialWaitSeconds; |
| 39 | + |
| 40 | + private final int timeoutSeconds; |
| 41 | + |
| 42 | + private final int waitBetweenRuns; |
| 43 | + |
| 44 | + DependencyVerifier(ProcessRunner processRunner, String orgRepository) { |
| 45 | + this.processRunner = processRunner; |
| 46 | + this.orgRepository = orgRepository; |
| 47 | + this.initialWaitSeconds = 15; |
| 48 | + this.timeoutSeconds = 60 * 10; |
| 49 | + this.waitBetweenRuns = 30; |
| 50 | + } |
| 51 | + |
| 52 | + // for tests |
| 53 | + DependencyVerifier(ProcessRunner processRunner, String orgRepository, |
| 54 | + int initialWaitSeconds, |
| 55 | + int timeoutSeconds, int waitBetweenRuns) { |
| 56 | + this.processRunner = processRunner; |
| 57 | + this.orgRepository = orgRepository; |
| 58 | + this.initialWaitSeconds = initialWaitSeconds; |
| 59 | + this.timeoutSeconds = timeoutSeconds; |
| 60 | + this.waitBetweenRuns = waitBetweenRuns; |
| 61 | + } |
| 62 | + |
| 63 | + void verifyDependencies() { |
| 64 | + String githubServerTime = getGitHubServerTime(); |
| 65 | + triggerDependabotCheck(); |
| 66 | + log.info("Waiting {} seconds for PRs to be created...", initialWaitSeconds); |
| 67 | + sleep(initialWaitSeconds); |
| 68 | + waitForDependabotUpdates(githubServerTime); |
| 69 | + } |
| 70 | + |
| 71 | + private void sleep(int timeoutSeconds) { |
| 72 | + try { |
| 73 | + Thread.sleep(TimeUnit.SECONDS.toMillis(timeoutSeconds)); |
| 74 | + } catch (InterruptedException e) { |
| 75 | + throw new IllegalStateException(e); |
| 76 | + } |
| 77 | + } |
| 78 | + |
| 79 | + private String getGitHubServerTime() { |
| 80 | + log.info("Retrieving the GH server time..."); |
| 81 | + List<String> response = processRunner.run("gh", "api", "/", |
| 82 | + "--include"); |
| 83 | + String dateHeader = response |
| 84 | + .stream() |
| 85 | + .filter(line -> line.startsWith("Date:")) |
| 86 | + .findFirst() |
| 87 | + .orElseThrow(() -> new IllegalStateException("Could not get GitHub server time from response headers")); |
| 88 | + // Parse RFC 1123 date to ZonedDateTime and format as ISO-8601 (done by default by dateTime.toInstant()) |
| 89 | + ZonedDateTime dateTime = ZonedDateTime.parse(dateHeader.substring(5).trim(), RFC_1123_DATE_TIME); |
| 90 | + String serverTime = dateTime.toInstant().toString(); |
| 91 | + log.info("GH server time: {}", serverTime); |
| 92 | + return serverTime; |
| 93 | + } |
| 94 | + |
| 95 | + private void triggerDependabotCheck() { |
| 96 | + log.info("Will trigger a Dependabot check..."); |
| 97 | + processRunner.run("gh", "api", |
| 98 | + "/repos/" + orgRepository + "/dispatches", |
| 99 | + "-X", "POST", |
| 100 | + "-F", "event_type=check-dependencies"); |
| 101 | + log.info("Triggered Dependabot check"); |
| 102 | + } |
| 103 | + |
| 104 | + private void waitForDependabotUpdates(String githubServerTime) { |
| 105 | + long startTime = System.currentTimeMillis(); |
| 106 | + long timeoutMillis = TimeUnit.SECONDS.toMillis(timeoutSeconds); |
| 107 | + while (System.currentTimeMillis() - startTime < timeoutMillis) { |
| 108 | + List<String> openPRs = getOpenMicrometerDependabotPRs(githubServerTime); |
| 109 | + if (openPRs.isEmpty()) { |
| 110 | + log.info("No pending Micrometer updates"); |
| 111 | + return; |
| 112 | + } |
| 113 | + boolean allProcessed = true; |
| 114 | + for (String pr : openPRs) { |
| 115 | + if (!checkPRStatus(pr)) { |
| 116 | + allProcessed = false; |
| 117 | + } |
| 118 | + } |
| 119 | + if (allProcessed) { |
| 120 | + log.info("All Dependabot PRs processed"); |
| 121 | + return; |
| 122 | + } |
| 123 | + sleep(waitBetweenRuns); |
| 124 | + } |
| 125 | + throw new IllegalStateException("Timeout waiting for Dependabot updates"); |
| 126 | + } |
| 127 | + |
| 128 | + private List<String> getOpenMicrometerDependabotPRs(String githubServerTime) { |
| 129 | + log.info("Getting open Micrometer related dependabot PRs..."); |
| 130 | + String result = String.join("\n", processRunner.run("gh", "pr", "list", |
| 131 | + "--search", |
| 132 | + String.format("is:open author:app/dependabot created:>=%s", githubServerTime), |
| 133 | + "--json", "number,title", |
| 134 | + "--jq", ".[] | select(.title | contains(\"io.micrometer\")) | .number")); |
| 135 | + List<String> prNumbers = result.lines() |
| 136 | + .filter(line -> !line.trim().isEmpty()) |
| 137 | + .toList(); |
| 138 | + log.info("Got [{}] dependabot PRs related to micrometer", prNumbers.size()); |
| 139 | + return prNumbers; |
| 140 | + } |
| 141 | + |
| 142 | + private boolean checkPRStatus(String prNumber) { |
| 143 | + log.info("Will check PR status for PR with number [{}]", prNumber); |
| 144 | + String status = String.join("\n", processRunner.run("gh", "pr", "view", prNumber, |
| 145 | + "--json", "mergeStateStatus,mergeable,state", |
| 146 | + "--jq", "[.mergeStateStatus, .state] | join(\",\")")); |
| 147 | + if (status.contains("CONFLICTING")) { |
| 148 | + throw new IllegalStateException("PR #" + prNumber + " has conflicts"); |
| 149 | + } |
| 150 | + boolean isCompleted = status.contains("CLOSED") || status.contains("MERGED"); |
| 151 | + if (isCompleted) { |
| 152 | + log.info("PR #{} is completed", prNumber); |
| 153 | + } else { |
| 154 | + log.info("PR #{} status: {}", prNumber, status); |
| 155 | + } |
| 156 | + return isCompleted; |
| 157 | + } |
| 158 | + |
| 159 | +} |
0 commit comments