|
|
@ -266,8 +266,14 @@ class PaketoBuilderTests {
|
|
|
|
.contains("paketo-buildpacks/ca-certificates", "paketo-buildpacks/bellsoft-liberica",
|
|
|
|
.contains("paketo-buildpacks/ca-certificates", "paketo-buildpacks/bellsoft-liberica",
|
|
|
|
"paketo-buildpacks/apache-tomcat", "paketo-buildpacks/dist-zip",
|
|
|
|
"paketo-buildpacks/apache-tomcat", "paketo-buildpacks/dist-zip",
|
|
|
|
"paketo-buildpacks/spring-boot");
|
|
|
|
"paketo-buildpacks/spring-boot");
|
|
|
|
metadata.processOfType("web").containsExactly("bash", "catalina.sh", "run");
|
|
|
|
metadata.processOfType("web")
|
|
|
|
metadata.processOfType("tomcat").containsExactly("bash", "catalina.sh", "run");
|
|
|
|
.satisfiesExactly((command) -> assertThat(command).endsWith("sh"),
|
|
|
|
|
|
|
|
(arg) -> assertThat(arg).endsWith("catalina.sh"),
|
|
|
|
|
|
|
|
(arg) -> assertThat(arg).isEqualTo("run"));
|
|
|
|
|
|
|
|
metadata.processOfType("tomcat")
|
|
|
|
|
|
|
|
.satisfiesExactly((command) -> assertThat(command).endsWith("sh"),
|
|
|
|
|
|
|
|
(arg) -> assertThat(arg).endsWith("catalina.sh"),
|
|
|
|
|
|
|
|
(arg) -> assertThat(arg).isEqualTo("run"));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
assertImageHasJvmSbomLayer(imageReference, config);
|
|
|
|
assertImageHasJvmSbomLayer(imageReference, config);
|
|
|
|
assertImageHasDependenciesSbomLayer(imageReference, config, "apache-tomcat");
|
|
|
|
assertImageHasDependenciesSbomLayer(imageReference, config, "apache-tomcat");
|
|
|
|