assertExpectedManifest() — spring-boot Function Reference
Architecture documentation for the assertExpectedManifest() function in ImageArchiveTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD f86b8a47_d229_9bb6_0307_3e07d4dadb81["assertExpectedManifest()"] 9541cc43_9c05_14f6_ef31_3ea500808315["fromImageWritesToValidArchiveTar()"] 9541cc43_9c05_14f6_ef31_3ea500808315 -->|calls| f86b8a47_d229_9bb6_0307_3e07d4dadb81 d418b23d_753d_7479_2803_95836fe0b005["getContent()"] f86b8a47_d229_9bb6_0307_3e07d4dadb81 -->|calls| d418b23d_753d_7479_2803_95836fe0b005 style f86b8a47_d229_9bb6_0307_3e07d4dadb81 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/docker/type/ImageArchiveTests.java lines 87–93
private void assertExpectedManifest(TarArchiveEntry entry, byte[] content) throws Exception {
assertThat(entry.getName()).isEqualTo("manifest.json");
String actualJson = new String(content, StandardCharsets.UTF_8);
String expectedJson = StreamUtils.copyToString(getContent("image-archive-manifest.json"),
StandardCharsets.UTF_8);
JSONAssert.assertEquals(expectedJson, actualJson, false);
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does assertExpectedManifest() do?
assertExpectedManifest() is a function in the spring-boot codebase.
What does assertExpectedManifest() call?
assertExpectedManifest() calls 1 function(s): getContent.
What calls assertExpectedManifest()?
assertExpectedManifest() is called by 1 function(s): fromImageWritesToValidArchiveTar.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free