Search in sources :

Example 11 with EntrypointImpl

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

the class WorkspaceDaoTest method createDevfile.

private 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);
    org.eclipse.che.api.workspace.server.model.impl.devfile.CommandImpl command1 = new org.eclipse.che.api.workspace.server.model.impl.devfile.CommandImpl(name + "-1", singletonList(action1), singletonMap("attr1", "value1"), null);
    org.eclipse.che.api.workspace.server.model.impl.devfile.CommandImpl command2 = new org.eclipse.che.api.workspace.server.model.impl.devfile.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.integer", 123444), "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"));
    return new DevfileImpl("0.0.1", asList(project1, project2), asList(component1, component2), asList(command1, command2), singletonMap("attribute1", "value1"), new MetadataImpl(name));
}
Also used : CommandImpl(org.eclipse.che.api.workspace.server.model.impl.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) DevfileImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.DevfileImpl) ActionImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ActionImpl) VolumeImpl(org.eclipse.che.api.workspace.server.model.impl.VolumeImpl)

Example 12 with EntrypointImpl

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

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()));
}
Also used : CommandImpl(org.eclipse.che.api.workspace.server.model.impl.CommandImpl) WorkspaceImpl(org.eclipse.che.api.workspace.server.model.impl.WorkspaceImpl) 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) AccountImpl(org.eclipse.che.account.spi.AccountImpl) EnvImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl) ComponentImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ComponentImpl) SourceImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.SourceImpl) ActionImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ActionImpl) VolumeImpl(org.eclipse.che.api.workspace.server.model.impl.VolumeImpl) Test(org.testng.annotations.Test)

Example 13 with EntrypointImpl

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

the class KubernetesComponentIntegrityValidatorTest method shouldApplyEntrypoint.

@Test
public void shouldApplyEntrypoint() throws Exception {
    // given
    when(kubernetesRecipeParser.parse(any(String.class))).thenReturn(Arrays.asList(new PodBuilder().withNewSpec().addNewContainer().withName("container_a").endContainer().endSpec().build(), new PodBuilder().withNewSpec().addNewContainer().withName("container_b").endContainer().endSpec().build()));
    ComponentImpl component = new ComponentImpl();
    component.setType(KUBERNETES_COMPONENT_TYPE);
    component.setReferenceContent("content");
    component.setReference("ref");
    EntrypointImpl entrypoint = new EntrypointImpl();
    entrypoint.setContainerName("container_a");
    component.setEntrypoints(Collections.singletonList(entrypoint));
    // when
    validator.validateComponent(component, __ -> "");
// then no exception is thrown
}
Also used : EntrypointImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EntrypointImpl) PodBuilder(io.fabric8.kubernetes.api.model.PodBuilder) ComponentImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ComponentImpl) Test(org.testng.annotations.Test)

Example 14 with EntrypointImpl

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

the class KubernetesComponentIntegrityValidatorTest method shouldThrowExceptionOnEntrypointNotMatchingAnyContainerOfPodsMatchingSelector.

@Test(expectedExceptions = DevfileFormatException.class, expectedExceptionsMessageRegExp = "Failed to validate content reference of component 'ref' of type 'kubernetes': Component 'ref' of type 'kubernetes' contains an entry point that doesn't match any container.")
public void shouldThrowExceptionOnEntrypointNotMatchingAnyContainerOfPodsMatchingSelector() throws Exception {
    // given
    when(kubernetesRecipeParser.parse(any(String.class))).thenReturn(Arrays.asList(new PodBuilder().withNewMetadata().addToLabels("app", "test").endMetadata().withNewSpec().addNewContainer().withName("container_a").endContainer().endSpec().build(), new PodBuilder().withNewMetadata().addToLabels("app", "other").endMetadata().withNewSpec().addNewContainer().withName("container_b").endContainer().endSpec().build()));
    Map<String, String> selector = new HashMap<>();
    selector.put("app", "test");
    ComponentImpl component = new ComponentImpl();
    component.setType(KUBERNETES_COMPONENT_TYPE);
    component.setReferenceContent("content");
    component.setReference("ref");
    component.setSelector(selector);
    EntrypointImpl entrypoint = new EntrypointImpl();
    entrypoint.setContainerName("container_b");
    component.setEntrypoints(Collections.singletonList(entrypoint));
    // when
    validator.validateComponent(component, __ -> "");
// then exception is thrown
}
Also used : EntrypointImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EntrypointImpl) HashMap(java.util.HashMap) PodBuilder(io.fabric8.kubernetes.api.model.PodBuilder) ComponentImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ComponentImpl) Test(org.testng.annotations.Test)

Example 15 with EntrypointImpl

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

the class KubernetesComponentToWorkspaceApplierTest method shouldChangeEntrypointsOnMatchingContainers.

@Test
public void shouldChangeEntrypointsOnMatchingContainers() throws Exception {
    // given
    String yamlRecipeContent = getResource("devfile/petclinic.yaml");
    doReturn(toK8SList(yamlRecipeContent).getItems()).when(k8sRecipeParser).parse(anyString());
    List<String> command = asList("teh", "command");
    ComponentImpl component = new ComponentImpl();
    component.setType(KUBERNETES_COMPONENT_TYPE);
    component.setReference(REFERENCE_FILENAME);
    component.setAlias(COMPONENT_NAME);
    EntrypointImpl entrypoint = new EntrypointImpl();
    entrypoint.setParentName("petclinic");
    entrypoint.setCommand(command);
    component.setEntrypoints(singletonList(entrypoint));
    // when
    applier.apply(workspaceConfig, component, s -> yamlRecipeContent);
    // then
    verify(k8sEnvProvisioner).provision(any(), any(), objectsCaptor.capture(), any());
    List<HasMetadata> list = objectsCaptor.getValue();
    for (HasMetadata o : list) {
        if (o instanceof Pod) {
            Pod p = (Pod) o;
            // ignore pods that don't have containers
            if (p.getSpec() == null) {
                continue;
            }
            Container c = p.getSpec().getContainers().get(0);
            if (o.getMetadata().getName().equals("petclinic")) {
                assertEquals(c.getCommand(), command);
            } else {
                assertTrue(c.getCommand() == null || c.getCommand().isEmpty());
            }
        }
    }
}
Also used : HasMetadata(io.fabric8.kubernetes.api.model.HasMetadata) Container(io.fabric8.kubernetes.api.model.Container) EntrypointImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.EntrypointImpl) Pod(io.fabric8.kubernetes.api.model.Pod) ArgumentMatchers.anyString(org.mockito.ArgumentMatchers.anyString) ComponentImpl(org.eclipse.che.api.workspace.server.model.impl.devfile.ComponentImpl) Test(org.testng.annotations.Test)

Aggregations

ComponentImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.ComponentImpl)20 EntrypointImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.EntrypointImpl)20 Test (org.testng.annotations.Test)12 ActionImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.ActionImpl)10 EndpointImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.EndpointImpl)10 EnvImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.EnvImpl)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 PodBuilder (io.fabric8.kubernetes.api.model.PodBuilder)8 DevfileImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.DevfileImpl)8 MetadataImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.MetadataImpl)8 UserDevfileImpl (org.eclipse.che.api.devfile.server.model.impl.UserDevfileImpl)6 CommandImpl (org.eclipse.che.api.workspace.server.model.impl.devfile.CommandImpl)6 HashMap (java.util.HashMap)4 CommandImpl (org.eclipse.che.api.workspace.server.model.impl.CommandImpl)4 VolumeImpl (org.eclipse.che.api.workspace.server.model.impl.VolumeImpl)4 Container (io.fabric8.kubernetes.api.model.Container)2 HasMetadata (io.fabric8.kubernetes.api.model.HasMetadata)2 Pod (io.fabric8.kubernetes.api.model.Pod)2 AccountImpl (org.eclipse.che.account.spi.AccountImpl)2