Search in sources :

Example 1 with DockerEngineException

use of org.springframework.boot.buildpack.platform.docker.transport.DockerEngineException in project spring-boot by spring-projects.

the class BuilderTests method buildInvokesBuilderWithIfNotPresentPullPolicy.

@Test
void buildInvokesBuilderWithIfNotPresentPullPolicy() throws Exception {
    TestPrintStream out = new TestPrintStream();
    DockerApi docker = mockDockerApi();
    Image builderImage = loadImage("image.json");
    Image runImage = loadImage("run-image.json");
    given(docker.image().pull(eq(ImageReference.of(BuildRequest.DEFAULT_BUILDER_IMAGE_NAME)), any(), isNull())).willAnswer(withPulledImage(builderImage));
    given(docker.image().pull(eq(ImageReference.of("docker.io/cloudfoundry/run:base-cnb")), any(), isNull())).willAnswer(withPulledImage(runImage));
    given(docker.image().inspect(eq(ImageReference.of(BuildRequest.DEFAULT_BUILDER_IMAGE_NAME)))).willThrow(new DockerEngineException("docker://localhost/", new URI("example"), 404, "NOT FOUND", null, null)).willReturn(builderImage);
    given(docker.image().inspect(eq(ImageReference.of("docker.io/cloudfoundry/run:base-cnb")))).willThrow(new DockerEngineException("docker://localhost/", new URI("example"), 404, "NOT FOUND", null, null)).willReturn(runImage);
    Builder builder = new Builder(BuildLog.to(out), docker, null);
    BuildRequest request = getTestRequest().withPullPolicy(PullPolicy.IF_NOT_PRESENT);
    builder.build(request);
    assertThat(out.toString()).contains("Running creator");
    assertThat(out.toString()).contains("Successfully built image 'docker.io/library/my-application:latest'");
    ArgumentCaptor<ImageArchive> archive = ArgumentCaptor.forClass(ImageArchive.class);
    then(docker.image()).should().load(archive.capture(), any());
    then(docker.image()).should().remove(archive.getValue().getTag(), true);
    then(docker.image()).should(times(2)).inspect(any());
    then(docker.image()).should(times(2)).pull(any(), any(), isNull());
}
Also used : DockerEngineException(org.springframework.boot.buildpack.platform.docker.transport.DockerEngineException) DockerApi(org.springframework.boot.buildpack.platform.docker.DockerApi) ImageArchive(org.springframework.boot.buildpack.platform.docker.type.ImageArchive) Image(org.springframework.boot.buildpack.platform.docker.type.Image) URI(java.net.URI) Test(org.junit.jupiter.api.Test)

Aggregations

URI (java.net.URI)1 Test (org.junit.jupiter.api.Test)1 DockerApi (org.springframework.boot.buildpack.platform.docker.DockerApi)1 DockerEngineException (org.springframework.boot.buildpack.platform.docker.transport.DockerEngineException)1 Image (org.springframework.boot.buildpack.platform.docker.type.Image)1 ImageArchive (org.springframework.boot.buildpack.platform.docker.type.ImageArchive)1