Skip to content

Commit a18dae9

Browse files
committed
chore: handle new local deployment status format
1 parent 45934c8 commit a18dae9

File tree

1 file changed

+46
-2
lines changed
  • aws-greengrass-testing-features/aws-greengrass-testing-features-api/src/main/java/com/aws/greengrass/testing/features

1 file changed

+46
-2
lines changed

aws-greengrass-testing-features/aws-greengrass-testing-features-api/src/main/java/com/aws/greengrass/testing/features/GreengrassCliSteps.java

+46-2
Original file line numberDiff line numberDiff line change
@@ -135,14 +135,58 @@ String getLocalDeploymentStatus() {
135135
.build());
136136
LOGGER.debug(String.format("deployment status response received for deployment ID %s is %s",
137137
deploymentId, response));
138-
String[] responseArray = response.split(":");
139-
return responseArray[responseArray.length - 1].trim();
138+
139+
int[] cliVersion = getCliVersion();
140+
141+
// backwards compatibility w/ CLI <2.11.0
142+
if (cliVersion[0] < 2 || cliVersion[0] == 2 && cliVersion[1] < 11) {
143+
String[] responseArray = response.split(":");
144+
return responseArray[responseArray.length - 1].trim();
145+
}
146+
147+
return Arrays.stream(response.split("\n"))
148+
.filter(line -> line.contains(":"))
149+
.findFirst() // status is the first line
150+
.map(statusLine -> statusLine.split(": "))
151+
.map(statusParts -> statusParts.length == 2 ? statusParts[1] : null)
152+
.orElse("UNKNOWN");
140153
} catch (CommandExecutionException e) {
141154
LOGGER.info("Exception occurred while getting the deployment status. Will try again", e);
142155
}
143156
return "";
144157
}
145158

159+
private int[] getCliVersion() throws CommandExecutionException {
160+
String resp = platform.commands().executeToString(CommandInput.builder()
161+
.line(testContext.installRoot().resolve("bin").resolve("greengrass-cli").toString())
162+
.addAllArgs(Arrays.asList("component", "details", "--name", "aws.greengrass.Cli"))
163+
.build());
164+
LOGGER.debug("CLI component details: {}", resp);
165+
166+
String versionPrefix = "version: ";
167+
String versionStr = Arrays.stream(resp.split("\n"))
168+
.filter(line -> line.toLowerCase().contains(versionPrefix))
169+
.map(line -> line.substring(versionPrefix.length()))
170+
.findFirst()
171+
.orElse("2.0.0"); // same fallback that CLI itself uses
172+
String[] versionParts = versionStr.split("\\.");
173+
if (versionParts.length != 3) {
174+
LOGGER.warn("Invalid CLI version detected ({}). Falling back to 2.0.0.", versionStr);
175+
return new int[]{2, 0, 0};
176+
}
177+
178+
try {
179+
return new int[]{
180+
Integer.parseInt(versionParts[0]),
181+
Integer.parseInt(versionParts[1]),
182+
Integer.parseInt(versionParts[2])
183+
};
184+
} catch (NumberFormatException e) {
185+
LOGGER.warn("Invalid CLI version detected ({}). Falling back to 2.0.0.", versionStr);
186+
return new int[]{2, 0, 0};
187+
}
188+
}
189+
146190
private boolean isComponentInState(String componentName, String componentStatus) {
147191
String response = platform.commands().executeToString(CommandInput.builder()
148192
.line(testContext.installRoot().resolve("bin").resolve("greengrass-cli").toString())

0 commit comments

Comments
 (0)