use of com.google.cloud.tools.jib.api.buildplan.ContainerBuildPlan in project jib by google.
the class PluginConfigurationProcessorTest method testEntrypoint.
@Test
public void testEntrypoint() throws InvalidImageReferenceException, IOException, MainClassInferenceException, InvalidAppRootException, InvalidWorkingDirectoryException, InvalidPlatformException, InvalidContainerVolumeException, IncompatibleBaseImageJavaVersionException, NumberFormatException, InvalidContainerizingModeException, InvalidFilesModificationTimeException, InvalidCreationTimeException, ExtraDirectoryNotFoundException {
when(rawConfiguration.getEntrypoint()).thenReturn(Optional.of(Arrays.asList("custom", "entrypoint")));
ContainerBuildPlan buildPlan = processCommonConfiguration();
assertThat(buildPlan.getEntrypoint()).containsExactly("custom", "entrypoint").inOrder();
verifyNoInteractions(logger);
}
use of com.google.cloud.tools.jib.api.buildplan.ContainerBuildPlan in project jib by google.
the class BuildFilesTest method testToJibContainerBuilder_allProperties.
@Test
public void testToJibContainerBuilder_allProperties() throws URISyntaxException, IOException, InvalidImageReferenceException {
Path buildfile = Paths.get(Resources.getResource("buildfiles/projects/allProperties/jib.yaml").toURI());
Path projectRoot = buildfile.getParent();
JibContainerBuilder jibContainerBuilder = BuildFiles.toJibContainerBuilder(projectRoot, buildfile, buildCli, commonCliOptions, consoleLogger);
ContainerBuildPlan resolved = jibContainerBuilder.toContainerBuildPlan();
Assert.assertEquals("ubuntu", resolved.getBaseImage());
Assert.assertEquals(Instant.ofEpochMilli(2000), resolved.getCreationTime());
Assert.assertEquals(ImageFormat.OCI, resolved.getFormat());
Assert.assertEquals(ImmutableSet.of(new Platform("arm", "linux"), new Platform("amd64", "darwin")), resolved.getPlatforms());
Assert.assertEquals(ImmutableMap.of("KEY1", "v1", "KEY2", "v2"), resolved.getEnvironment());
Assert.assertEquals(ImmutableSet.of(AbsoluteUnixPath.get("/volume1"), AbsoluteUnixPath.get("/volume2")), resolved.getVolumes());
Assert.assertEquals(ImmutableMap.of("label1", "l1", "label2", "l2"), resolved.getLabels());
Assert.assertEquals(ImmutableSet.of(Port.udp(123), Port.tcp(456), Port.tcp(789)), resolved.getExposedPorts());
Assert.assertEquals("customUser", resolved.getUser());
Assert.assertEquals(AbsoluteUnixPath.get("/home"), resolved.getWorkingDirectory());
Assert.assertEquals(ImmutableList.of("sh", "script.sh"), resolved.getEntrypoint());
Assert.assertEquals(ImmutableList.of("--param", "param"), resolved.getCmd());
Assert.assertEquals(1, resolved.getLayers().size());
FileEntriesLayer resolvedLayer = (FileEntriesLayer) resolved.getLayers().get(0);
Assert.assertEquals("scripts", resolvedLayer.getName());
Assert.assertEquals(FileEntriesLayer.builder().addEntry(projectRoot.resolve("project/script.sh"), AbsoluteUnixPath.get("/home/script.sh")).build().getEntries(), resolvedLayer.getEntries());
Assert.assertEquals(LayerObject.Type.FILE_ENTRIES, resolvedLayer.getType());
}
use of com.google.cloud.tools.jib.api.buildplan.ContainerBuildPlan in project jib by google.
the class BuildFilesTest method testToBuildFileSpec_withTemplating.
@Test
public void testToBuildFileSpec_withTemplating() throws URISyntaxException, InvalidImageReferenceException, IOException {
Path buildfile = Paths.get(Resources.getResource("buildfiles/projects/templating/valid.yaml").toURI());
Mockito.when(buildCli.getTemplateParameters()).thenReturn(ImmutableMap.of(// keys that are defined but not used do not throw an error
"unused", // keys that are defined but not used do not throw an error
"ignored", "key", "templateKey", "value", "templateValue", "repeated", "repeatedValue"));
JibContainerBuilder jibContainerBuilder = BuildFiles.toJibContainerBuilder(buildfile.getParent(), buildfile, buildCli, commonCliOptions, consoleLogger);
ContainerBuildPlan resolved = jibContainerBuilder.toContainerBuildPlan();
Map<String, String> expectedLabels = ImmutableMap.<String, String>builder().put("templateKey", "templateValue").put("label1", "repeatedValue").put("label2", "repeatedValue").put("label3", "${escaped}").put("label4", "free$").put("unmatched", "${").build();
Assert.assertEquals(expectedLabels, resolved.getLabels());
}
use of com.google.cloud.tools.jib.api.buildplan.ContainerBuildPlan in project jib by google.
the class BuildFilesTest method testToJibContainerBuilder_requiredProperties.
@Test
public void testToJibContainerBuilder_requiredProperties() throws URISyntaxException, IOException, InvalidImageReferenceException {
Path buildfile = Paths.get(Resources.getResource("buildfiles/projects/allDefaults/jib.yaml").toURI());
JibContainerBuilder jibContainerBuilder = BuildFiles.toJibContainerBuilder(buildfile.getParent(), buildfile, buildCli, commonCliOptions, consoleLogger);
ContainerBuildPlan resolved = jibContainerBuilder.toContainerBuildPlan();
Assert.assertEquals("scratch", resolved.getBaseImage());
Assert.assertEquals(ImmutableSet.of(new Platform("amd64", "linux")), resolved.getPlatforms());
Assert.assertEquals(Instant.EPOCH, resolved.getCreationTime());
Assert.assertEquals(ImageFormat.Docker, resolved.getFormat());
Assert.assertTrue(resolved.getEnvironment().isEmpty());
Assert.assertTrue(resolved.getLabels().isEmpty());
Assert.assertTrue(resolved.getVolumes().isEmpty());
Assert.assertTrue(resolved.getExposedPorts().isEmpty());
Assert.assertNull(resolved.getUser());
Assert.assertNull(resolved.getWorkingDirectory());
Assert.assertNull(resolved.getEntrypoint());
Assert.assertTrue(resolved.getLayers().isEmpty());
}
use of com.google.cloud.tools.jib.api.buildplan.ContainerBuildPlan in project jib by google.
the class JarFilesTest method testToJibContainerBuilder_explodedStandard_basicInfo.
@Test
public void testToJibContainerBuilder_explodedStandard_basicInfo() throws IOException, InvalidImageReferenceException {
when(mockStandardExplodedProcessor.getJavaVersion()).thenReturn(8);
FileEntriesLayer layer = FileEntriesLayer.builder().setName("classes").addEntry(Paths.get("path/to/tempDirectory/class1.class"), AbsoluteUnixPath.get("/app/explodedJar/class1.class")).build();
when(mockStandardExplodedProcessor.createLayers()).thenReturn(Arrays.asList(layer));
when(mockStandardExplodedProcessor.computeEntrypoint(anyList())).thenReturn(ImmutableList.of("java", "-cp", "/app/explodedJar:/app/dependencies/*", "HelloWorld"));
when(mockCommonContainerConfigCliOptions.getFrom()).thenReturn(Optional.empty());
JibContainerBuilder containerBuilder = JarFiles.toJibContainerBuilder(mockStandardExplodedProcessor, mockJarCommand, mockCommonCliOptions, mockCommonContainerConfigCliOptions, mockLogger);
ContainerBuildPlan buildPlan = containerBuilder.toContainerBuildPlan();
assertThat(buildPlan.getBaseImage()).isEqualTo("eclipse-temurin:8-jre");
assertThat(buildPlan.getPlatforms()).isEqualTo(ImmutableSet.of(new Platform("amd64", "linux")));
assertThat(buildPlan.getCreationTime()).isEqualTo(Instant.EPOCH);
assertThat(buildPlan.getFormat()).isEqualTo(ImageFormat.Docker);
assertThat(buildPlan.getEnvironment()).isEmpty();
assertThat(buildPlan.getLabels()).isEmpty();
assertThat(buildPlan.getVolumes()).isEmpty();
assertThat(buildPlan.getExposedPorts()).isEmpty();
assertThat(buildPlan.getUser()).isNull();
assertThat(buildPlan.getWorkingDirectory()).isNull();
assertThat(buildPlan.getEntrypoint()).containsExactly("java", "-cp", "/app/explodedJar:/app/dependencies/*", "HelloWorld").inOrder();
assertThat(buildPlan.getLayers()).hasSize(1);
assertThat(buildPlan.getLayers().get(0).getName()).isEqualTo("classes");
assertThat(((FileEntriesLayer) buildPlan.getLayers().get(0)).getEntries()).containsExactlyElementsIn(FileEntriesLayer.builder().addEntry(Paths.get("path/to/tempDirectory/class1.class"), AbsoluteUnixPath.get("/app/explodedJar/class1.class")).build().getEntries());
}
Aggregations