use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testCreateFolderInRoot.
// any folder created in the root of the workspace automatically becomes project
@Test
public void testCreateFolderInRoot() throws Exception {
String folder = "my_folder";
ContainerResponse response = launcher.service(POST, format("http://localhost:8080/api/project/folder/%s", folder), "http://localhost:8080/api", null, null, null);
assertEquals(response.getStatus(), 201, "Error: " + response.getEntity());
ItemReference fileItem = (ItemReference) response.getEntity();
assertEquals(fileItem.getType(), "project");
assertEquals(fileItem.getName(), folder);
assertEquals(fileItem.getPath(), "/" + folder);
validateFolderLinks(fileItem);
assertEquals(response.getHttpHeaders().getFirst("Location"), URI.create(format("http://localhost:8080/api/project/children/%s", folder)));
}
use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testGetChildren.
@Test
@SuppressWarnings("unchecked")
public void testGetChildren() 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/children/my_project/a", "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> names = new LinkedHashSet<>(2);
names.addAll(result.stream().map(ItemReference::getName).collect(Collectors.toList()));
Assert.assertTrue(names.contains("b"));
Assert.assertTrue(names.contains("test.txt"));
}
use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testSearchParticularSequenceWordsWithAnyEnding.
@SuppressWarnings("unchecked")
@Test
public void testSearchParticularSequenceWordsWithAnyEnding() throws Exception {
String queryToSearch = "?text=" + URL_ENCODED_QUOTES + "that" + URL_ENCODED_SPACE + "is" + URL_ENCODED_SPACE + "the" + URL_ENCODED_QUOTES + URL_ENCODED_SPACE + AND_OPERATOR + URL_ENCODED_SPACE + "question" + URL_ENCODED_ASTERISK;
RegisteredProject myProject = pm.getProject("my_project");
myProject.getBaseFolder().createFolder("x/y").createFile("containsSearchText.txt", "To be or not to be that is the question".getBytes(Charset.defaultCharset()));
myProject.getBaseFolder().createFolder("a/b").createFile("containsSearchTextAlso.txt", "Pay attention! To be or not to be that is the questionS".getBytes(Charset.defaultCharset()));
myProject.getBaseFolder().createFolder("c").createFile("notContainsSearchText", "Pay attention! To be or to not be that is the questEon".getBytes(Charset.defaultCharset()));
ContainerResponse response = launcher.service(GET, "http://localhost:8080/api/project/search/my_project" + queryToSearch, "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<>(2);
paths.addAll(result.stream().map(ItemReference::getPath).collect(Collectors.toList()));
Assert.assertTrue(paths.contains("/my_project/x/y/containsSearchText.txt"));
Assert.assertTrue(paths.contains("/my_project/a/b/containsSearchTextAlso.txt"));
Assert.assertFalse(paths.contains("/my_project/c/notContainsSearchText.txt"));
}
use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testCreateFile.
@Test
public void testCreateFile() throws Exception {
String myContent = "to be or not to be";
ContainerResponse response = launcher.service(POST, "http://localhost:8080/api/project/file/my_project?name=test.txt", "http://localhost:8080/api", null, myContent.getBytes(Charset.defaultCharset()), null);
assertEquals(response.getStatus(), 201, "Error: " + response.getEntity());
ItemReference fileItem = (ItemReference) response.getEntity();
assertEquals(fileItem.getType(), "file");
// assertEquals(fileItem.getMediaType(), TEXT_PLAIN);
assertEquals(fileItem.getName(), "test.txt");
assertEquals(fileItem.getPath(), "/my_project/test.txt");
validateFileLinks(fileItem);
assertEquals(response.getHttpHeaders().getFirst("Location"), URI.create("http://localhost:8080/api/project/file/my_project/test.txt"));
VirtualFileEntry file = pm.getProject("my_project").getBaseFolder().getChild("test.txt");
Assert.assertTrue(file.isFile());
FileEntry _file = (FileEntry) file;
//assertEquals(_file.getMediaType(), TEXT_PLAIN);
assertEquals(new String(_file.contentAsBytes()), myContent);
}
use of org.eclipse.che.api.project.shared.dto.ItemReference in project che by eclipse.
the class ProjectServiceTest method testSearchTextWhenExcludeSomeText.
@SuppressWarnings("unchecked")
@Test
public void testSearchTextWhenExcludeSomeText() throws Exception {
String queryToSearch = "?text=" + "question" + URL_ENCODED_SPACE + NOT_OPERATOR + URL_ENCODED_SPACE + URL_ENCODED_QUOTES + "attention!" + URL_ENCODED_QUOTES;
RegisteredProject myProject = pm.getProject("my_project");
myProject.getBaseFolder().createFolder("x/y").createFile("containsSearchText.txt", "To be or not to be that is the question".getBytes(Charset.defaultCharset()));
myProject.getBaseFolder().createFolder("b").createFile("notContainsSearchText", "Pay attention! To be or not to be that is the question".getBytes(Charset.defaultCharset()));
myProject.getBaseFolder().createFolder("c").createFile("alsoNotContainsSearchText", "To be or to not be that is the ...".getBytes(Charset.defaultCharset()));
ContainerResponse response = launcher.service(GET, "http://localhost:8080/api/project/search/my_project" + queryToSearch, "http://localhost:8080/api", null, null, null);
assertEquals(response.getStatus(), 200, "Error: " + response.getEntity());
List<ItemReference> result = (List<ItemReference>) response.getEntity();
assertEquals(result.size(), 1);
Set<String> paths = new LinkedHashSet<>(1);
paths.addAll(result.stream().map(ItemReference::getPath).collect(Collectors.toList()));
Assert.assertTrue(paths.contains("/my_project/x/y/containsSearchText.txt"));
Assert.assertFalse(paths.contains("/my_project/b/notContainsSearchText.txt"));
Assert.assertFalse(paths.contains("/my_project/c/alsoContainsSearchText"));
}
Aggregations