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

tagTagsImage() — spring-boot Function Reference

Architecture documentation for the tagTagsImage() function in DockerApiTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  40f624d1_0f04_2601_d6da_7c45e3b223d9["tagTagsImage()"]
  ffedf588_7c32_be87_49b5_6f0bec311aa1["http()"]
  40f624d1_0f04_2601_d6da_7c45e3b223d9 -->|calls| ffedf588_7c32_be87_49b5_6f0bec311aa1
  5ebda6ce_1915_7ec7_82b6_9dbaace8503c["emptyResponse()"]
  40f624d1_0f04_2601_d6da_7c45e3b223d9 -->|calls| 5ebda6ce_1915_7ec7_82b6_9dbaace8503c
  style 40f624d1_0f04_2601_d6da_7c45e3b223d9 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buildpack/spring-boot-buildpack-platform/src/test/java/org/springframework/boot/buildpack/platform/docker/DockerApiTests.java lines 607–615

		@Test
		void tagTagsImage() throws Exception {
			ImageReference sourceReference = ImageReference.of("localhost:5000/ubuntu");
			ImageReference targetReference = ImageReference.of("localhost:5000/ubuntu:tagged");
			URI tagURI = new URI(IMAGES_URL + "/localhost:5000/ubuntu/tag?repo=localhost%3A5000%2Fubuntu&tag=tagged");
			given(http().post(tagURI)).willReturn(emptyResponse());
			this.api.tag(sourceReference, targetReference);
			then(http()).should().post(tagURI);
		}

Subdomains

Frequently Asked Questions

What does tagTagsImage() do?
tagTagsImage() is a function in the spring-boot codebase.
What does tagTagsImage() call?
tagTagsImage() calls 2 function(s): emptyResponse, http.

Analyze Your Own Codebase

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

Try Supermodel Free