Search in sources :

Example 21 with EnvImpl

use of org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl in project che-server by eclipse-che.

the class DevfileIntegrityValidatorTest method shouldThrowExceptionOnDuplicateEnvironmentVariable.

@Test(expectedExceptions = DevfileFormatException.class, expectedExceptionsMessageRegExp = "Duplicate environment variable 'foo' found in component 'test1'")
public void shouldThrowExceptionOnDuplicateEnvironmentVariable() throws Exception {
    DevfileImpl broken = new DevfileImpl(initialDevfile);
    ComponentImpl k8s1 = new ComponentImpl();
    k8s1.setType(OPENSHIFT_COMPONENT_TYPE);
    k8s1.setAlias("test1");
    k8s1.getEnv().add(new EnvImpl("foo", "bar"));
    k8s1.getEnv().add(new EnvImpl("foo", "baz"));
    broken.getComponents().add(k8s1);
    // when
    integrityValidator.validateDevfile(broken);
}
Also used : DevfileImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.DevfileImpl) EnvImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl) ComponentImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ComponentImpl) Test(org.testng.annotations.Test)

Example 22 with EnvImpl

use of org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl in project che-server by eclipse-che.

the class EnvVarsTest method shouldOverrideEnvOnApplyingEnvVarIfContainersAlreadyHaveSomeEnvVars.

@Test
public void shouldOverrideEnvOnApplyingEnvVarIfContainersAlreadyHaveSomeEnvVars() throws Exception {
    // given
    EnvVar existingInitCEnvVar = new EnvVar("TEST_ENV", "value", null);
    EnvVar existingCEnvVar = new EnvVar("TEST_ENV", null, new EnvVarSource());
    PodData pod = new PodData(new PodBuilder().withNewMetadata().withName("pod").endMetadata().withNewSpec().withInitContainers(new ContainerBuilder().withName("initContainer").withEnv(copy(existingInitCEnvVar)).build()).withContainers(new ContainerBuilder().withName("container").withEnv(copy(existingCEnvVar)).build()).endSpec().build());
    // when
    envVars.apply(pod, singletonList(new EnvImpl("TEST_ENV", "anyValue")));
    // then
    List<EnvVar> initCEnv = pod.getSpec().getInitContainers().get(0).getEnv();
    assertEquals(initCEnv.size(), 1);
    assertEquals(initCEnv.get(0), new EnvVar("TEST_ENV", "anyValue", null));
    List<EnvVar> containerEnv = pod.getSpec().getContainers().get(0).getEnv();
    assertEquals(containerEnv.size(), 1);
    assertEquals(containerEnv.get(0), new EnvVar("TEST_ENV", "anyValue", null));
}
Also used : PodData(org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData) ContainerBuilder(io.fabric8.kubernetes.api.model.ContainerBuilder) PodBuilder(io.fabric8.kubernetes.api.model.PodBuilder) EnvVar(io.fabric8.kubernetes.api.model.EnvVar) EnvImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl) EnvVarSource(io.fabric8.kubernetes.api.model.EnvVarSource) Test(org.testng.annotations.Test)

Example 23 with EnvImpl

use of org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl in project che-server by eclipse-che.

the class TestObjectsFactory method createDevfile.

public static DevfileImpl createDevfile(String name) {
    SourceImpl source1 = new SourceImpl("type1", "http://location", "branch1", "point1", "tag1", "commit1", "sparseCheckoutDir1");
    ProjectImpl project1 = new ProjectImpl("project1", source1, "path1");
    SourceImpl source2 = new SourceImpl("type2", "http://location", "branch2", "point2", "tag2", "commit2", "sparseCheckoutDir2");
    ProjectImpl project2 = new ProjectImpl("project2", source2, "path2");
    ActionImpl action1 = new ActionImpl("exec1", "component1", "run.sh", "/home/user/1", null, null);
    ActionImpl action2 = new ActionImpl("exec2", "component2", "run.sh", "/home/user/2", null, null);
    CommandImpl command1 = new CommandImpl(name + "-1", singletonList(action1), singletonMap("attr1", "value1"), null);
    CommandImpl command2 = new CommandImpl(name + "-2", singletonList(action2), singletonMap("attr2", "value2"), null);
    EntrypointImpl entrypoint1 = new EntrypointImpl("parentName1", singletonMap("parent1", "selector1"), "containerName1", asList("command1", "command2"), asList("arg1", "arg2"));
    EntrypointImpl entrypoint2 = new EntrypointImpl("parentName2", singletonMap("parent2", "selector2"), "containerName2", asList("command3", "command4"), asList("arg3", "arg4"));
    org.eclipse.che.api.workspace.server.model.impl.devfile.VolumeImpl volume1 = new org.eclipse.che.api.workspace.server.model.impl.devfile.VolumeImpl("name1", "path1");
    org.eclipse.che.api.workspace.server.model.impl.devfile.VolumeImpl volume2 = new org.eclipse.che.api.workspace.server.model.impl.devfile.VolumeImpl("name2", "path2");
    EnvImpl env1 = new EnvImpl("name1", "value1");
    EnvImpl env2 = new EnvImpl("name2", "value2");
    EndpointImpl endpoint1 = new EndpointImpl("name1", 1111, singletonMap("key1", "value1"));
    EndpointImpl endpoint2 = new EndpointImpl("name2", 2222, singletonMap("key2", "value2"));
    ComponentImpl component1 = new ComponentImpl("kubernetes", "component1", "eclipse/che-theia/0.0.1", ImmutableMap.of("java.home", "/home/user/jdk11"), "https://mysite.com/registry/somepath1", "/dev.yaml", "refcontent1", ImmutableMap.of("app.kubernetes.io/component", "db"), asList(entrypoint1, entrypoint2), "image", "256G", "128M", "2", "130m", false, false, singletonList("command"), singletonList("arg"), asList(volume1, volume2), asList(env1, env2), asList(endpoint1, endpoint2));
    component1.setSelector(singletonMap("key1", "value1"));
    ComponentImpl component2 = new ComponentImpl("kubernetes", "component2", "eclipse/che-theia/0.0.1", ImmutableMap.of("java.home", "/home/user/jdk11aertwertert", "java.boolean", true, "java.long", 123444L), "https://mysite.com/registry/somepath2", "/dev.yaml", "refcontent2", ImmutableMap.of("app.kubernetes.io/component", "webapp"), asList(entrypoint1, entrypoint2), "image", "256G", "256M", "3", "180m", false, false, singletonList("command"), singletonList("arg"), asList(volume1, volume2), asList(env1, env2), asList(endpoint1, endpoint2));
    component2.setSelector(singletonMap("key2", "value2"));
    DevfileImpl devfile = new DevfileImpl("0.0.1", asList(project1, project2), asList(component1, component2), asList(command1, command2), singletonMap("attribute1", "value1"), new MetadataImpl(name));
    return devfile;
}
Also used : CommandImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.CommandImpl) EntrypointImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EntrypointImpl) ProjectImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ProjectImpl) EndpointImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EndpointImpl) EnvImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl) ComponentImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ComponentImpl) MetadataImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.MetadataImpl) SourceImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.SourceImpl) UserDevfileImpl(org.eclipse.che.api.devfile.server.model.impl.UserDevfileImpl) DevfileImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.DevfileImpl) ActionImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ActionImpl)

Example 24 with EnvImpl

use of org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl in project devspaces-images by redhat-developer.

the class EnvVarsTest method shouldOverrideEnvOnApplyingEnvVarIfContainersAlreadyHaveSomeEnvVars.

@Test
public void shouldOverrideEnvOnApplyingEnvVarIfContainersAlreadyHaveSomeEnvVars() throws Exception {
    // given
    EnvVar existingInitCEnvVar = new EnvVar("TEST_ENV", "value", null);
    EnvVar existingCEnvVar = new EnvVar("TEST_ENV", null, new EnvVarSource());
    PodData pod = new PodData(new PodBuilder().withNewMetadata().withName("pod").endMetadata().withNewSpec().withInitContainers(new ContainerBuilder().withName("initContainer").withEnv(copy(existingInitCEnvVar)).build()).withContainers(new ContainerBuilder().withName("container").withEnv(copy(existingCEnvVar)).build()).endSpec().build());
    // when
    envVars.apply(pod, singletonList(new EnvImpl("TEST_ENV", "anyValue")));
    // then
    List<EnvVar> initCEnv = pod.getSpec().getInitContainers().get(0).getEnv();
    assertEquals(initCEnv.size(), 1);
    assertEquals(initCEnv.get(0), new EnvVar("TEST_ENV", "anyValue", null));
    List<EnvVar> containerEnv = pod.getSpec().getContainers().get(0).getEnv();
    assertEquals(containerEnv.size(), 1);
    assertEquals(containerEnv.get(0), new EnvVar("TEST_ENV", "anyValue", null));
}
Also used : PodData(org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData) ContainerBuilder(io.fabric8.kubernetes.api.model.ContainerBuilder) PodBuilder(io.fabric8.kubernetes.api.model.PodBuilder) EnvVar(io.fabric8.kubernetes.api.model.EnvVar) EnvImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl) EnvVarSource(io.fabric8.kubernetes.api.model.EnvVarSource) Test(org.testng.annotations.Test)

Aggregations

EnvImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl)24 ComponentImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.ComponentImpl)18 Test (org.testng.annotations.Test)16 ActionImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.ActionImpl)10 DevfileImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.DevfileImpl)10 EndpointImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.EndpointImpl)10 EntrypointImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.EntrypointImpl)10 ProjectImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.ProjectImpl)10 SourceImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.SourceImpl)10 EnvVar (io.fabric8.kubernetes.api.model.EnvVar)8 PodBuilder (io.fabric8.kubernetes.api.model.PodBuilder)8 MetadataImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.MetadataImpl)8 PodData (org.eclipse.che.workspace.infrastructure.kubernetes.environment.KubernetesEnvironment.PodData)8 ContainerBuilder (io.fabric8.kubernetes.api.model.ContainerBuilder)6 UserDevfileImpl (org.eclipse.che.api.devfile.server.model.impl.UserDevfileImpl)6 CommandImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.CommandImpl)6 Container (io.fabric8.kubernetes.api.model.Container)4 EnvVarSource (io.fabric8.kubernetes.api.model.EnvVarSource)4 HasMetadata (io.fabric8.kubernetes.api.model.HasMetadata)4 CommandImpl (org.eclipse.che.api.workspace.server.model.impl.CommandImpl)4