use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class KubernetesEnvironmentPodsValidatorTest method shouldThrowExceptionWhenPodHasNoSpec.
@Test(expectedExceptions = ValidationException.class, expectedExceptionsMessageRegExp = "Pod 'pod1' with missing metadata")
public void shouldThrowExceptionWhenPodHasNoSpec() throws Exception {
// given
PodData podData = new PodData(null, new ObjectMetaBuilder().withName("pod1").build());
when(kubernetesEnvironment.getPodsData()).thenReturn(ImmutableMap.of("pod1", podData));
// when
podsValidator.validate(kubernetesEnvironment);
}
use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class KubernetesEnvironmentPodsValidatorTest method shouldThrowExceptionWhenInitContainerHasVolumeMountThatReferencesMissingPodVolume.
@Test(expectedExceptions = ValidationException.class, expectedExceptionsMessageRegExp = "Container 'foo' in pod 'pod1' contains volume mount that references missing volume 'non-existing'")
public void shouldThrowExceptionWhenInitContainerHasVolumeMountThatReferencesMissingPodVolume() throws Exception {
// given
String podName = "pod1";
Pod pod = createPod("pod1", "main");
pod.getSpec().getInitContainers().add(new ContainerBuilder().withName("foo").withVolumeMounts(new VolumeMountBuilder().withName("non-existing").withMountPath("/tmp/data").build()).build());
PodData podData = new PodData(pod.getSpec(), pod.getMetadata());
when(kubernetesEnvironment.getPodsData()).thenReturn(ImmutableMap.of(podName, podData));
when(kubernetesEnvironment.getMachines()).thenReturn(ImmutableMap.of(podName + "/main", mock(InternalMachineConfig.class)));
// when
podsValidator.validate(kubernetesEnvironment);
}
use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class KubernetesEnvironmentPodsValidatorTest method shouldThrowExceptionWhenPodHasNoMetadata.
@Test(expectedExceptions = ValidationException.class, expectedExceptionsMessageRegExp = "Environment contains pod with missing metadata")
public void shouldThrowExceptionWhenPodHasNoMetadata() throws Exception {
// given
PodData podData = new PodData(new PodSpec(), null);
when(kubernetesEnvironment.getPodsData()).thenReturn(ImmutableMap.of("", podData));
// when
podsValidator.validate(kubernetesEnvironment);
}
use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class PodMergerTest method shouldThrownAnExceptionIfVolumeNameCollisionHappened.
@Test(expectedExceptions = ValidationException.class, expectedExceptionsMessageRegExp = "Pods have to have volumes with unique names but there are multiple `volume` volumes")
public void shouldThrownAnExceptionIfVolumeNameCollisionHappened() throws Exception {
// given
PodSpec podSpec1 = new PodSpecBuilder().withVolumes(new VolumeBuilder().withName("volume").build()).build();
podSpec1.setAdditionalProperty("add1", 1L);
PodData podData1 = new PodData(podSpec1, new ObjectMetaBuilder().build());
PodSpec podSpec2 = new PodSpecBuilder().withVolumes(new VolumeBuilder().withName("volume").build()).build();
podSpec2.setAdditionalProperty("add2", 2L);
PodData podData2 = new PodData(podSpec2, new ObjectMetaBuilder().build());
// when
podMerger.merge(Arrays.asList(podData1, podData2));
}
use of org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData in project che-server by eclipse-che.
the class PodMergerTest method shouldAssignServiceAccountSharedByPods.
@Test
public void shouldAssignServiceAccountSharedByPods() throws Exception {
// given
PodSpec podSpec1 = new PodSpecBuilder().withServiceAccount("sa").build();
podSpec1.setAdditionalProperty("add1", 1L);
PodData podData1 = new PodData(podSpec1, new ObjectMetaBuilder().build());
PodSpec podSpec2 = new PodSpecBuilder().withServiceAccount("sa").build();
podSpec2.setAdditionalProperty("add2", 2L);
PodData podData2 = new PodData(podSpec2, new ObjectMetaBuilder().build());
// when
Deployment merged = podMerger.merge(Arrays.asList(podData1, podData2));
// then
PodTemplateSpec podTemplate = merged.getSpec().getTemplate();
String sa = podTemplate.getSpec().getServiceAccount();
assertEquals(sa, "sa");
}
Aggregations