Search in sources :

Example 11 with DockerApi

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

the class BuilderTests method buildWhenStackIdDoesNotMatchThrowsException.

@Test
void buildWhenStackIdDoesNotMatchThrowsException() throws Exception {
    TestPrintStream out = new TestPrintStream();
    DockerApi docker = mockDockerApi();
    Image builderImage = loadImage("image.json");
    Image runImage = loadImage("run-image-with-bad-stack.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));
    Builder builder = new Builder(BuildLog.to(out), docker, null);
    BuildRequest request = getTestRequest();
    assertThatIllegalStateException().isThrownBy(() -> builder.build(request)).withMessage("Run image stack 'org.cloudfoundry.stacks.cfwindowsfs3' does not match builder stack 'io.buildpacks.stacks.bionic'");
}
Also used : DockerApi(org.springframework.boot.buildpack.platform.docker.DockerApi) Image(org.springframework.boot.buildpack.platform.docker.type.Image) Test(org.junit.jupiter.api.Test)

Example 12 with DockerApi

use of org.springframework.boot.buildpack.platform.docker.DockerApi 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)

Example 13 with DockerApi

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

the class BuilderTests method buildInvokesBuilderAndPublishesImage.

@Test
void buildInvokesBuilderAndPublishesImage() throws Exception {
    TestPrintStream out = new TestPrintStream();
    DockerApi docker = mockDockerApi();
    Image builderImage = loadImage("image.json");
    Image runImage = loadImage("run-image.json");
    DockerConfiguration dockerConfiguration = new DockerConfiguration().withBuilderRegistryTokenAuthentication("builder token").withPublishRegistryTokenAuthentication("publish token");
    given(docker.image().pull(eq(ImageReference.of(BuildRequest.DEFAULT_BUILDER_IMAGE_NAME)), any(), eq(dockerConfiguration.getBuilderRegistryAuthentication().getAuthHeader()))).willAnswer(withPulledImage(builderImage));
    given(docker.image().pull(eq(ImageReference.of("docker.io/cloudfoundry/run:base-cnb")), any(), eq(dockerConfiguration.getBuilderRegistryAuthentication().getAuthHeader()))).willAnswer(withPulledImage(runImage));
    Builder builder = new Builder(BuildLog.to(out), docker, dockerConfiguration);
    BuildRequest request = getTestRequest().withPublish(true);
    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().pull(eq(ImageReference.of(BuildRequest.DEFAULT_BUILDER_IMAGE_NAME)), any(), eq(dockerConfiguration.getBuilderRegistryAuthentication().getAuthHeader()));
    then(docker.image()).should().pull(eq(ImageReference.of("docker.io/cloudfoundry/run:base-cnb")), any(), eq(dockerConfiguration.getBuilderRegistryAuthentication().getAuthHeader()));
    then(docker.image()).should().push(eq(request.getName()), any(), eq(dockerConfiguration.getPublishRegistryAuthentication().getAuthHeader()));
    then(docker.image()).should().load(archive.capture(), any());
    then(docker.image()).should().remove(archive.getValue().getTag(), true);
    then(docker.image()).shouldHaveNoMoreInteractions();
}
Also used : DockerConfiguration(org.springframework.boot.buildpack.platform.docker.configuration.DockerConfiguration) 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) Test(org.junit.jupiter.api.Test)

Example 14 with DockerApi

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

the class BuilderTests method buildInvokesBuilderWithNeverPullPolicy.

@Test
void buildInvokesBuilderWithNeverPullPolicy() 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)))).willReturn(builderImage);
    given(docker.image().inspect(eq(ImageReference.of("docker.io/cloudfoundry/run:base-cnb")))).willReturn(runImage);
    Builder builder = new Builder(BuildLog.to(out), docker, null);
    BuildRequest request = getTestRequest().withPullPolicy(PullPolicy.NEVER);
    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(never()).pull(any(), any());
    then(docker.image()).should(times(2)).inspect(any());
}
Also used : 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) Test(org.junit.jupiter.api.Test)

Example 15 with DockerApi

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

the class BuilderTests method buildInvokesBuilder.

@Test
void buildInvokesBuilder() 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));
    Builder builder = new Builder(BuildLog.to(out), docker, null);
    BuildRequest request = getTestRequest();
    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().pull(eq(ImageReference.of(BuildRequest.DEFAULT_BUILDER_IMAGE_NAME)), any(), isNull());
    then(docker.image()).should().pull(eq(ImageReference.of("docker.io/cloudfoundry/run:base-cnb")), any(), isNull());
    then(docker.image()).should().load(archive.capture(), any());
    then(docker.image()).should().remove(archive.getValue().getTag(), true);
    then(docker.image()).shouldHaveNoMoreInteractions();
}
Also used : 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) Test(org.junit.jupiter.api.Test)

Aggregations

DockerApi (org.springframework.boot.buildpack.platform.docker.DockerApi)21 Image (org.springframework.boot.buildpack.platform.docker.type.Image)17 Test (org.junit.jupiter.api.Test)15 ImageArchive (org.springframework.boot.buildpack.platform.docker.type.ImageArchive)10 DockerConfiguration (org.springframework.boot.buildpack.platform.docker.configuration.DockerConfiguration)4 ContainerApi (org.springframework.boot.buildpack.platform.docker.DockerApi.ContainerApi)3 ImageApi (org.springframework.boot.buildpack.platform.docker.DockerApi.ImageApi)3 VolumeApi (org.springframework.boot.buildpack.platform.docker.DockerApi.VolumeApi)3 TestTemplate (org.junit.jupiter.api.TestTemplate)2 ContainerReference (org.springframework.boot.buildpack.platform.docker.type.ContainerReference)2 ImageReference (org.springframework.boot.buildpack.platform.docker.type.ImageReference)2 URI (java.net.URI)1 BuildResult (org.gradle.testkit.runner.BuildResult)1 DockerEngineException (org.springframework.boot.buildpack.platform.docker.transport.DockerEngineException)1 Layer (org.springframework.boot.buildpack.platform.docker.type.Layer)1