use of org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl in project che-server by eclipse-che.
the class WorkspaceDaoTest method shouldUpdateWorkspaceWithDevfile.
@Test(dependsOnMethods = "shouldGetWorkspaceById")
public void shouldUpdateWorkspaceWithDevfile() throws Exception {
final WorkspaceImpl workspace = new WorkspaceImpl(workspaces[DEVFILE_WORKSPACE_INDEX], workspaces[DEVFILE_WORKSPACE_INDEX].getAccount());
// Remove an existing project configuration from workspace
workspace.getDevfile().getProjects().remove(1);
final SourceImpl source3 = new SourceImpl("type3", "http://location", "branch3", "point3", "tag3", "commit3", "sparseCheckoutDir3");
ProjectImpl newProject = new ProjectImpl("project3", source3, "path3");
workspace.getDevfile().getProjects().add(newProject);
// Update an existing project configuration
final ProjectImpl projectCfg = workspace.getDevfile().getProjects().get(0);
projectCfg.getSource().setLocation("new-location");
projectCfg.getSource().setType("new-type");
projectCfg.getSource().setBranch("new-branch");
projectCfg.getSource().setCommitId("new-commit");
projectCfg.getSource().setTag("new-tag");
projectCfg.getSource().setStartPoint("new-point");
projectCfg.getSource().setSparseCheckoutDir("new-sparse-checkout-dir");
// Remove an existing command
workspace.getDevfile().getCommands().remove(1);
ActionImpl action3 = new ActionImpl("exec3", "component3", "run.sh", "/home/user/3", null, null);
ActionImpl action4 = new ActionImpl("exec4", "component4", "run.sh", "/home/user/4", null, null);
// Add a new command
final org.eclipse.che.api.workspace.server.model.impl.devfile.CommandImpl newCmd = new org.eclipse.che.api.workspace.server.model.impl.devfile.CommandImpl("command-3", singletonList(action3), singletonMap("attr3", "value3"), null);
workspace.getDevfile().getCommands().add(newCmd);
// Update an existing command
final org.eclipse.che.api.workspace.server.model.impl.devfile.CommandImpl command = workspace.getDevfile().getCommands().get(0);
command.setName("new-name");
command.setActions(asList(action4));
command.getAttributes().clear();
workspace.getDevfile().getComponents().remove(1);
EntrypointImpl entrypoint3 = new EntrypointImpl("parentName", singletonMap("parent3", "selector3"), "containerName3", asList("command3", "command5"), asList("arg3", "arg5"));
org.eclipse.che.api.workspace.server.model.impl.devfile.VolumeImpl volume3 = new org.eclipse.che.api.workspace.server.model.impl.devfile.VolumeImpl("name3", "path3");
EnvImpl env3 = new EnvImpl("name3", "value3");
EndpointImpl endpoint3 = new EndpointImpl("name3", 3333, singletonMap("key3", "value3"));
ComponentImpl component3 = workspace.getDevfile().getComponents().get(0);
new ComponentImpl("kubernetes", "component3", "eclipse/che-theia/0.0.1", ImmutableMap.of("java.home", "/opt/jdk11"), "https://mysite.com/registry/somepath", "/dev.yaml", null, ImmutableMap.of("app.kubernetes.io/component", "webapp"), singletonList(entrypoint3), "image", "1256G", "123G", "2", "1", false, false, singletonList("command"), singletonList("arg"), singletonList(volume3), singletonList(env3), singletonList(endpoint3));
component3.setSelector(singletonMap("key3", "value3"));
// Update workspace object
workspace.setAccount(new AccountImpl("accId", "new-namespace", "test"));
workspace.getAttributes().clear();
workspaceDao.update(workspace);
assertEquals(workspaceDao.get(workspace.getId()), new WorkspaceImpl(workspace, workspace.getAccount()));
}
use of org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl in project che-server by eclipse-che.
the class TestObjectGenerator method createDevfile.
private static DevfileImpl createDevfile(String name, String generatedName) {
String effectiveName = MoreObjects.firstNonNull(name, generatedName);
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(effectiveName + "-1", singletonList(action1), singletonMap("attr1", "value1"), null);
CommandImpl command2 = new CommandImpl(effectiveName + "-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", null, null, null, null, "refcontent1", ImmutableMap.of("app.kubernetes.io/component", "db"), null, null, null, null, null, null, false, false, null, null, null, asList(env1, env2), null);
component1.setSelector(singletonMap("key1", "value1"));
ComponentImpl component2 = new ComponentImpl("dockerimage", "component2", null, null, null, null, null, null, null, "image", "256G", null, "3", "180m", false, false, singletonList("command"), singletonList("arg"), asList(volume1, volume2), asList(env1, env2), asList(endpoint1, endpoint2));
ComponentImpl component3 = new ComponentImpl("chePlugin", "check/terminal-sample/0.0.1", ImmutableMap.of("java.home", "/home/user/jdk11aertwertert", "java.boolean", "true", "java.long", "123444L"));
MetadataImpl metadata = new MetadataImpl(name);
metadata.setGenerateName(generatedName);
DevfileImpl devfile = new DevfileImpl("1.0.0", asList(project1, project2), asList(component1, component2, component3), asList(command1, command2), singletonMap("attribute1", "value1"), metadata);
return devfile;
}
use of org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl in project devspaces-images by redhat-developer.
the class EnvVarsTest method shouldProvisionEnvIfContainersDoeNotHaveEnvAtAll.
@Test
public void shouldProvisionEnvIfContainersDoeNotHaveEnvAtAll() throws Exception {
// given
PodData pod = new PodData(new PodBuilder().withNewMetadata().withName("pod").endMetadata().withNewSpec().withInitContainers(new ContainerBuilder().withName("initContainer").build()).withContainers(new ContainerBuilder().withName("container").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));
}
use of org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl in project devspaces-images by redhat-developer.
the class EnvVarsTest method shouldProvisionEnvIntoK8SListIfContainerAlreadyHasSomeEnvVars.
@Test
public void shouldProvisionEnvIntoK8SListIfContainerAlreadyHasSomeEnvVars() throws Exception {
// given
EnvVar existingInitCEnvVar = new EnvVar("ENV", "value", null);
EnvVar existingCEnvVar = new EnvVar("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(), 2);
assertEquals(initCEnv.get(0), existingInitCEnvVar);
assertEquals(initCEnv.get(1), new EnvVar("TEST_ENV", "anyValue", null));
List<EnvVar> containerEnv = pod.getSpec().getContainers().get(0).getEnv();
assertEquals(containerEnv.size(), 2);
assertEquals(containerEnv.get(0), existingCEnvVar);
assertEquals(containerEnv.get(1), new EnvVar("TEST_ENV", "anyValue", null));
}
use of org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl in project devspaces-images by redhat-developer.
the class KubernetesPluginsToolingApplierTest method shouldProvisionApplyEnvironmentVariableToContainersAndInitContainersOfPlugin.
@Test
public void shouldProvisionApplyEnvironmentVariableToContainersAndInitContainersOfPlugin() throws Exception {
// given
CheContainer container = new CheContainer();
container.setName("container");
CheContainer initContainer = new CheContainer();
initContainer.setName("initContainer");
ChePlugin chePlugin = createChePlugin("publisher/id/1.0.0", singletonList(container), singletonList(initContainer));
ComponentImpl component = internalEnvironment.getDevfile().getComponents().get(0);
component.getEnv().add(new EnvImpl("TEST", "VALUE"));
ArgumentCaptor<Container> containerArgumentCaptor = ArgumentCaptor.forClass(Container.class);
// when
applier.apply(runtimeIdentity, internalEnvironment, singletonList(chePlugin));
// then
verify(envVars, times(2)).apply(containerArgumentCaptor.capture(), eq(component.getEnv()));
List<Container> containers = containerArgumentCaptor.getAllValues();
// containers names are suffixed to provide uniqueness and converted to be k8s API compatible
assertTrue(containers.get(0).getName().startsWith("initcontainer"));
assertTrue(containers.get(1).getName().startsWith("container"));
}
Aggregations