Home / Function/ readValueWhenMinimalDeserializesJson() — spring-boot Function Reference

readValueWhenMinimalDeserializesJson() — spring-boot Function Reference

Architecture documentation for the readValueWhenMinimalDeserializesJson() function in PullUpdateEventTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  25a89213_22c2_4599_952f_45649959d83a["readValueWhenMinimalDeserializesJson()"]
  77c004fc_6c07_e754_40f2_1a6110f6e2de["getJsonMapper()"]
  25a89213_22c2_4599_952f_45649959d83a -->|calls| 77c004fc_6c07_e754_40f2_1a6110f6e2de
  d418b23d_753d_7479_2803_95836fe0b005["getContent()"]
  25a89213_22c2_4599_952f_45649959d83a -->|calls| d418b23d_753d_7479_2803_95836fe0b005
  style 25a89213_22c2_4599_952f_45649959d83a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buildpack/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/docker/PullUpdateEventTests.java lines 46–54

	@Test
	void readValueWhenMinimalDeserializesJson() throws Exception {
		PullImageUpdateEvent event = getJsonMapper().readValue(getContent("pull-update-minimal.json"),
				PullImageUpdateEvent.class);
		assertThat(event.getId()).isNull();
		assertThat(event.getStatus()).isEqualTo("Status: Downloaded newer image for paketo-buildpacks/cnb:base");
		assertThat(event.getProgressDetail()).isNull();
		assertThat(event.getProgress()).isNull();
	}

Domain

Subdomains

Frequently Asked Questions

What does readValueWhenMinimalDeserializesJson() do?
readValueWhenMinimalDeserializesJson() is a function in the spring-boot codebase.
What does readValueWhenMinimalDeserializesJson() call?
readValueWhenMinimalDeserializesJson() calls 2 function(s): getContent, getJsonMapper.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free