use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testGetTreeWithDepth.
@Test
public void testGetTreeWithDepth() throws Exception {
RegisteredProject myProject = pm.getProject("my_project");
FolderEntry a = myProject.getBaseFolder().createFolder("a");
a.createFolder("b/c");
a.createFolder("x/y");
a.createFile("test.txt", "test".getBytes(Charset.defaultCharset()));
ContainerResponse response = launcher.service(GET, "http://localhost:8080/api/project/tree/my_project/a?depth=2", "http://localhost:8080/api", null, null, null);
assertEquals(response.getStatus(), 200, "Error: " + response.getEntity());
TreeElement tree = (TreeElement) response.getEntity();
ItemReference a_node = tree.getNode();
assertEquals(a_node.getName(), "a");
List<TreeElement> children = tree.getChildren();
assertNotNull(children);
Set<String> names = new LinkedHashSet<>(4);
for (TreeElement subTree : children) {
ItemReference _node = subTree.getNode();
validateFolderLinks(_node);
String name = _node.getName();
names.add(name);
for (TreeElement subSubTree : subTree.getChildren()) {
ItemReference __node = subSubTree.getNode();
validateFolderLinks(__node);
names.add(name + "/" + __node.getName());
}
}
Assert.assertTrue(names.contains("b"));
Assert.assertTrue(names.contains("x"));
Assert.assertTrue(names.contains("b/c"));
Assert.assertTrue(names.contains("x/y"));
}
use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testGetItemWithoutParentProject.
@Test
public void testGetItemWithoutParentProject() throws Exception {
FolderEntry a = pm.getProjectsRoot().createFolder("a");
a.createFile("test.txt", "test".getBytes(Charset.defaultCharset()));
ContainerResponse response = launcher.service(GET, "http://localhost:8080/api/project/item/a/test.txt", "http://localhost:8080/api", null, null, null);
assertEquals(response.getStatus(), 200, "Error: " + response.getEntity());
ItemReference result = (ItemReference) response.getEntity();
assertEquals(result.getType(), "file");
//assertEquals(result.getMediaType(), TEXT_PLAIN);
}
use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testGetItem.
@Test
@SuppressWarnings("unchecked")
public void testGetItem() throws Exception {
RegisteredProject myProject = pm.getProject("my_project");
FolderEntry a = myProject.getBaseFolder().createFolder("a");
a.createFolder("b");
a.createFile("test.txt", "test".getBytes(Charset.defaultCharset()));
ContainerResponse response = launcher.service(GET, "http://localhost:8080/api/project/item/my_project/a/b", "http://localhost:8080/api", null, null, null);
assertEquals(response.getStatus(), 200, "Error: " + response.getEntity());
ItemReference result = (ItemReference) response.getEntity();
assertEquals(result.getName(), "b");
response = launcher.service(GET, "http://localhost:8080/api/project/item/my_project/a/test.txt", "http://localhost:8080/api", null, null, null);
assertEquals(response.getStatus(), 200, "Error: " + response.getEntity());
result = (ItemReference) response.getEntity();
assertEquals(result.getType(), "file");
//assertEquals(result.getMediaType(), TEXT_PLAIN);
}
use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testGetTree.
@Test
public void testGetTree() throws Exception {
RegisteredProject myProject = pm.getProject("my_project");
FolderEntry a = myProject.getBaseFolder().createFolder("a");
a.createFolder("b/c");
a.createFolder("x/y");
a.createFile("test.txt", "test".getBytes(Charset.defaultCharset()));
ContainerResponse response = launcher.service(GET, "http://localhost:8080/api/project/tree/my_project/a", "http://localhost:8080/api", null, null, null);
assertEquals(response.getStatus(), 200, "Error: " + response.getEntity());
TreeElement tree = (TreeElement) response.getEntity();
ItemReference a_node = tree.getNode();
assertEquals(a_node.getName(), "a");
validateFolderLinks(a_node);
List<TreeElement> children = tree.getChildren();
assertNotNull(children);
assertEquals(children.size(), 2);
Set<String> names = new LinkedHashSet<>(2);
for (TreeElement subTree : children) {
ItemReference _node = subTree.getNode();
validateFolderLinks(_node);
names.add(_node.getName());
// default depth is 1
Assert.assertTrue(subTree.getChildren().isEmpty());
}
Assert.assertTrue(names.contains("b"));
Assert.assertTrue(names.contains("x"));
}
use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testSearchByText.
@SuppressWarnings("unchecked")
@Test
public void testSearchByText() throws Exception {
RegisteredProject myProject = pm.getProject("my_project");
myProject.getBaseFolder().createFolder("a/b").createFile("test.txt", "hello".getBytes(Charset.defaultCharset()));
myProject.getBaseFolder().createFolder("x/y").createFile("__test.txt", "searchhit".getBytes(Charset.defaultCharset()));
myProject.getBaseFolder().createFolder("c").createFile("_test", "searchhit".getBytes(Charset.defaultCharset()));
ContainerResponse response = launcher.service(GET, "http://localhost:8080/api/project/search/my_project?text=searchhit", "http://localhost:8080/api", null, null, null);
assertEquals(response.getStatus(), 200, "Error: " + response.getEntity());
List<ItemReference> result = (List<ItemReference>) response.getEntity();
assertEquals(result.size(), 2);
Set<String> paths = new LinkedHashSet<>(1);
paths.addAll(result.stream().map(ItemReference::getPath).collect(Collectors.toList()));
Assert.assertTrue(paths.contains("/my_project/x/y/__test.txt"));
}
Aggregations