Skip to content

Commit a6d40cb

Browse files
author
guoje
committed
delete image if it exists
1 parent 249ea1a commit a6d40cb

File tree

2 files changed

+19
-5
lines changed
  • aws-greengrass-testing-features/aws-greengrass-testing-features-docker/src/main

2 files changed

+19
-5
lines changed

aws-greengrass-testing-features/aws-greengrass-testing-features-docker/src/main/java/com/aws/greengrass/testing/features/DockerSteps.java

+18-4
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,13 @@ public class DockerSteps {
3939
*
4040
* @param image fully qualified image name in <code>name:tag</code> representation
4141
*/
42-
@Given("the docker image {word} does not exist on the device")
42+
@Given("deleted the docker image {word} if exists on the device")
4343
public void checkDockerImageIsMissing(String image) {
4444
Predicate<Set<String>> predicate = Set::isEmpty;
45-
checkDockerImagePresence(image, predicate.negate(),
46-
"The image " + image + " is already on the device. Please remove the image and try again.");
45+
if (isDockerImagePresence(image, predicate.negate())) {
46+
removeDockerImage(image);
47+
}
48+
4749
}
4850

4951
@Then("I can check that the docker image {word} exists on the device")
@@ -65,18 +67,30 @@ public void removeDockerImage(String image) {
6567
LOGGER.debug("Removed docker image {}: {}", image, result);
6668
}
6769

68-
private void checkDockerImagePresence(String image, Predicate<Set<String>> validity, String message) {
70+
private boolean isDockerImagePresence(String image, Predicate<Set<String>> validity) {
6971
// This could be improved by using the API on a local host.
72+
7073
Set<String> parts = new HashSet<>(Arrays.stream(image.split(":")).collect(Collectors.toSet()));
7174
String[] result = platform.commands().executeToString(CommandInput.builder()
7275
.line("docker").addArgs("images")
7376
.build())
7477
.split("\\r?\\n");
78+
7579
Arrays.stream(result)
7680
.map(String::trim)
7781
.flatMap(line -> Arrays.stream(line.split("\\s+")))
7882
.forEach(parts::remove);
83+
7984
if (!validity.test(parts)) {
85+
return false;
86+
}
87+
88+
return true;
89+
}
90+
91+
private void checkDockerImagePresence(String image, Predicate<Set<String>> validity, String message) {
92+
93+
if (!isDockerImagePresence(image, validity)) {
8094
throw new IllegalStateException(message);
8195
}
8296
}

aws-greengrass-testing-features/aws-greengrass-testing-features-docker/src/main/resources/greengrass/features/docker.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Feature: Greengrass V2 Docker Component
66

77
@Docker @IDT
88
Scenario: I can deploy Docker containers as Greengrass Components
9-
Given the docker image amazon/amazon-ec2-metadata-mock:v1.9.0 does not exist on the device
9+
Given deleted the docker image amazon/amazon-ec2-metadata-mock:v1.9.0 if exists on the device
1010
And I create a Greengrass deployment with components
1111
| DockerHubAmazonContainer | classpath:/greengrass/component/recipes/DockerHubAmazonContainer.yaml |
1212
When I deploy the Greengrass deployment configuration

0 commit comments

Comments
 (0)