@@ -135,14 +135,58 @@ String getLocalDeploymentStatus() {
135
135
.build ());
136
136
LOGGER .debug (String .format ("deployment status response received for deployment ID %s is %s" ,
137
137
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" );
140
153
} catch (CommandExecutionException e ) {
141
154
LOGGER .info ("Exception occurred while getting the deployment status. Will try again" , e );
142
155
}
143
156
return "" ;
144
157
}
145
158
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
+
146
190
private boolean isComponentInState (String componentName , String componentStatus ) {
147
191
String response = platform .commands ().executeToString (CommandInput .builder ()
148
192
.line (testContext .installRoot ().resolve ("bin" ).resolve ("greengrass-cli" ).toString ())
0 commit comments