Merged 5.2.N (5.2.1) to HEAD (5.2)

130169 gjames: Merged searchapi (5.2.1) to 5.2.N (5.2.1)
      129778 gjames: SEARCH-113: Initial implementation of the Search public API


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@130321 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alan Davis
2016-09-06 22:03:09 +00:00
parent 17a3b8912f
commit 043a158c80
14 changed files with 960 additions and 0 deletions

View File

@@ -0,0 +1,79 @@
package org.alfresco.rest.api.search;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import org.alfresco.rest.AbstractSingleNetworkSiteTest;
import org.alfresco.rest.api.Queries;
import org.alfresco.rest.api.tests.client.HttpResponse;
import org.alfresco.rest.api.tests.client.PublicApiClient.ExpectedPaging;
import org.alfresco.rest.api.tests.client.PublicApiClient.Paging;
import org.alfresco.rest.api.tests.client.data.FolderNode;
import org.alfresco.rest.api.tests.client.data.Node;
import org.alfresco.rest.api.tests.util.RestApiUtil;
import org.junit.Test;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Basic test to exercise the Search API endpoint
*
* <p>POST:</p>
* {@literal <host>:<port>/alfresco/api/<networkId>/public/search/versions/1/search}
*
* @author Gethin James
*/
public class BasicSearchApiIntegrationTest extends AbstractSingleNetworkSiteTest
{
private static final String URL_SEARCH = "search";
private static final String SEARCH_API_NAME = "search";
private static final String json = "{ \"query\": {\"query\": \"cm:name:king\",\"userQuery\": \"great\",\"language\": \"afts\"}}";
private static final String bad_json = "{ \"query\": {\"qu\": \"cm:some nonsense \",\"userQuery\": \"great\",\"language\": \"afts\"}}";
/**
* Tests basic api for search
*/
@Test
public void testQuery() throws Exception
{
setRequestContext(user1);
String f1Id = null;
try
{
// As user 1 ...
// Try to get nodes with search term 'king*' - assume clean repo (ie. none to start with)
HttpResponse response = post(URL_SEARCH, json, null, null, SEARCH_API_NAME, 200);
List<Node> nodes = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Node.class);
assertEquals(0, nodes.size());
String myFolderNodeId = getMyNodeId();
f1Id = createFolder(myFolderNodeId, "king").getId();
response = post(URL_SEARCH, json, null, null, SEARCH_API_NAME, 200);
ExpectedPaging paging = RestApiUtil.parsePaging(response.getJsonResponse());
assertEquals(1, paging.getTotalItems().intValue());
assertFalse(paging.getHasMoreItems());
nodes = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Node.class);
assertEquals(1, nodes.size());
}
finally
{
// some cleanup
if (f1Id != null)
{
deleteNode(f1Id, true, 204);
}
}
}
@Test
public void testBadQuery() throws Exception
{
setRequestContext(user1);
//Bad request
HttpResponse response = post(URL_SEARCH, bad_json, null, null, SEARCH_API_NAME, 400);
}
}