use of org.eclipse.che.api.workspace.server.model.impl.devfile.SourceImpl in project che-server by eclipse-che.
the class TestObjectGenerator method createDevfile.
public static DevfileImpl createDevfile(String name, String 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(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"));
MetadataImpl metadata = new MetadataImpl(name);
metadata.setGenerateName(generatedName);
DevfileImpl devfile = new DevfileImpl("0.0.1", asList(project1, project2), asList(component1, component2), asList(command1, command2), singletonMap("attribute1", "value1"), metadata);
return devfile;
}
use of org.eclipse.che.api.workspace.server.model.impl.devfile.SourceImpl in project che-server by eclipse-che.
the class ProjectConverterTest method testConvertingDevfileProjectToProjectConfig.
@Test
public void testConvertingDevfileProjectToProjectConfig() throws Exception {
ProjectImpl devfileProject = new ProjectImpl("myProject", new SourceImpl("git", "https://github.com/eclipse/che.git", "master", "3434d", null, null, "core"), null);
ProjectConfigImpl workspaceProject = projectConverter.toWorkspaceProject(devfileProject);
assertEquals(workspaceProject.getName(), "myProject");
assertEquals(workspaceProject.getPath(), "/myProject");
SourceStorageImpl source = workspaceProject.getSource();
assertEquals(source.getType(), "git");
assertEquals(source.getLocation(), "https://github.com/eclipse/che.git");
assertEquals(source.getParameters().get(BRANCH_PARAMETER_NAME), "master");
assertEquals(source.getParameters().get(START_POINT_PARAMETER_NAME), "3434d");
assertEquals(source.getParameters().get("keepDir"), "core");
}
use of org.eclipse.che.api.workspace.server.model.impl.devfile.SourceImpl in project che-server by eclipse-che.
the class ProjectConverterTest method testOnlyOneOfStartPointAttributesAllowed.
@Test(expectedExceptions = DevfileException.class, expectedExceptionsMessageRegExp = "Only one of '" + START_POINT_PARAMETER_NAME + "', '" + TAG_PARAMETER_NAME + "', '" + COMMIT_ID_PARAMETER_NAME + "' can be specified\\.", dataProvider = "invalidStartPointOrTagOrCommitIdCombinations")
public void testOnlyOneOfStartPointAttributesAllowed(String startPoint, String tag, String commitId) throws Exception {
ProjectImpl devfileProject = new ProjectImpl("myProject", new SourceImpl("git", "https://github.com/eclipse/che.git", null, startPoint, tag, commitId, null), null);
projectConverter.toWorkspaceProject(devfileProject);
}
use of org.eclipse.che.api.workspace.server.model.impl.devfile.SourceImpl in project che-server by eclipse-che.
the class ProjectConverter method toDevfileProject.
/**
* Converts the specified workspace project to devfile project.
*
* @param projectConfig source workspace project
* @return created devfile project based on the specified workspace project
*/
public ProjectImpl toDevfileProject(ProjectConfigImpl projectConfig) {
String branch = projectConfig.getSource().getParameters().get(BRANCH_PARAMETER_NAME);
String startPoint = projectConfig.getSource().getParameters().get(START_POINT_PARAMETER_NAME);
String tag = projectConfig.getSource().getParameters().get(TAG_PARAMETER_NAME);
String commitId = projectConfig.getSource().getParameters().get(COMMIT_ID_PARAMETER_NAME);
String sparseCheckoutDir = projectConfig.getSource().getParameters().get(SPARSE_CHECKOUT_DIR_PARAMETER_NAME);
SourceImpl source = new SourceImpl(projectConfig.getSource().getType(), projectConfig.getSource().getLocation(), branch, startPoint, tag, commitId, sparseCheckoutDir);
String path = projectConfig.getPath();
while (path != null && path.startsWith("/")) {
path = path.substring(1);
}
// don't specify the clonePath if it is the same as the project name
if (projectConfig.getName().equals(path)) {
path = null;
}
return new ProjectImpl(projectConfig.getName(), source, path);
}
use of org.eclipse.che.api.workspace.server.model.impl.devfile.SourceImpl in project che-server by eclipse-che.
the class ProjectConverterTest method testClonePathSetWhenConvertingDevfileToProjectConfig.
@Test
public void testClonePathSetWhenConvertingDevfileToProjectConfig() throws Exception {
ProjectImpl devfileProject = new ProjectImpl("myProject", new SourceImpl("git", "https://github.com/eclipse/che.git", "master", null, null, null, null), "down/the/rabbit/hole/myProject");
ProjectConfigImpl workspaceProject = projectConverter.toWorkspaceProject(devfileProject);
assertEquals(workspaceProject.getName(), "myProject");
assertEquals(workspaceProject.getPath(), "/down/the/rabbit/hole/myProject");
SourceStorageImpl source = workspaceProject.getSource();
assertEquals(source.getType(), "git");
assertEquals(source.getLocation(), "https://github.com/eclipse/che.git");
}
Aggregations