mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
- Removal of parameter sortType - we are going to be using the POST_QUERY_SORT - Removal of tests using IN_QUERY_SORT except for the one to do with the default sort. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@129253 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
340 lines
14 KiB
Java
340 lines
14 KiB
Java
/*
|
|
* #%L
|
|
* Alfresco Remote API
|
|
* %%
|
|
* Copyright (C) 2005 - 2016 Alfresco Software Limited
|
|
* %%
|
|
* This file is part of the Alfresco software.
|
|
* If the software was purchased under a paid Alfresco license, the terms of
|
|
* the paid license agreement will prevail. Otherwise, the software is
|
|
* provided under the following open source license terms:
|
|
*
|
|
* Alfresco is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
* #L%
|
|
*/
|
|
package org.alfresco.rest.api.tests;
|
|
|
|
import org.alfresco.rest.AbstractSingleNetworkSiteTest;
|
|
import org.alfresco.rest.api.Queries;
|
|
import org.alfresco.rest.api.model.Site;
|
|
import org.alfresco.rest.api.tests.client.HttpResponse;
|
|
import org.alfresco.rest.api.tests.client.PublicApiClient.Paging;
|
|
import org.alfresco.rest.api.tests.util.RestApiUtil;
|
|
import org.alfresco.service.cmr.site.SiteVisibility;
|
|
import org.junit.Test;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
/**
|
|
* V1 REST API tests for pre-defined 'live' search Queries on Sites
|
|
*
|
|
* <ul>
|
|
* <li> {@literal <host>:<port>/alfresco/api/<networkId>/public/alfresco/versions/1/queries/sites} </li>
|
|
* </ul>
|
|
*
|
|
* @author janv
|
|
*/
|
|
public class QueriesSitesApiTest extends AbstractSingleNetworkSiteTest
|
|
{
|
|
private static final String URL_QUERIES_LSS = "queries/sites";
|
|
|
|
/**
|
|
* Tests basic api for nodes live search sites - metadata (id, title, description)
|
|
*
|
|
* <p>GET:</p>
|
|
* {@literal <host>:<port>/alfresco/api/<networkId>/public/alfresco/versions/1/queries/sites}
|
|
*/
|
|
@Test
|
|
public void testLiveSearchSites() throws Exception
|
|
{
|
|
setRequestContext(user1);
|
|
|
|
int sCount = 5;
|
|
assertTrue(sCount > 4); // as relied on by test below
|
|
|
|
List<String> siteIds = new ArrayList<>(sCount);
|
|
|
|
try
|
|
{
|
|
// As user 1 ...
|
|
|
|
Paging paging = getPaging(0, 100);
|
|
|
|
// Try to get sites with search term 'ab' - assume clean repo (ie. none to start with)
|
|
String term = "ab";
|
|
Map<String, String> params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, term);
|
|
HttpResponse response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
List<Site> sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(0, sites.size());
|
|
|
|
String siteI = "a";
|
|
String siteT = "siteT";
|
|
String siteD = "siteD";
|
|
|
|
int charValue = siteI.charAt(0);
|
|
|
|
// create some some sites with site id: ab00001, abc00002, abcd00003, abcde00004, abcdef00005 (and some specific titles and descriptions)
|
|
for (int i = 1; i <= sCount; i++)
|
|
{
|
|
String num = String.format("%05d", i);
|
|
|
|
charValue = charValue+1;
|
|
siteI = siteI + String.valueOf((char)charValue);
|
|
|
|
String siteId = siteI + num + RUNID;
|
|
String siteTitle = siteT + num + siteT;
|
|
String siteDescrip = siteD + num + siteD;
|
|
|
|
// create site
|
|
String createdSiteId = createSite(siteId, siteTitle, siteDescrip, SiteVisibility.PRIVATE, 201).getId();
|
|
siteIds.add(createdSiteId);
|
|
}
|
|
|
|
// basic search tests
|
|
{
|
|
// Search hits based on site id
|
|
term = "ab";
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "\"" + term + "\"");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(sCount, sites.size());
|
|
|
|
term = "abc";
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "\"" + term + "\"");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(sCount - 1, sites.size());
|
|
|
|
term = "abcd";
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "\"" + term + "\"");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(sCount - 2, sites.size());
|
|
|
|
term = "abcde";
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "\"" + term + "\"");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(sCount - 3, sites.size());
|
|
|
|
// Single search hit based on site id
|
|
term = "abcd00003";
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "\"" + term + "\"");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(1, sites.size());
|
|
assertEquals(term+RUNID, sites.get(0).getId());
|
|
|
|
// Search hits based on site title
|
|
term = siteT;
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "\"" + term + "\"");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(sCount, sites.size());
|
|
|
|
// Single search hit based on site title
|
|
term = siteT + String.format("%05d", 2) + siteT;
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "\"" + term + "\"");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(1, sites.size());
|
|
assertEquals(term, sites.get(0).getTitle());
|
|
|
|
// Search hits based on site description
|
|
term = siteD + "*"; // note: SiteService.findSites does not auto-add "*" when matching description
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "\"" + term + "\"");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(sCount, sites.size());
|
|
|
|
// Single search hit based on site description
|
|
term = siteD + String.format("%05d", 3) + siteD;
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "\"" + term + "\"");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(1, sites.size());
|
|
assertEquals(term, sites.get(0).getDescription());
|
|
}
|
|
|
|
// -ve tests
|
|
{
|
|
// -ve test - no params (ie. no term)
|
|
getAll(URL_QUERIES_LSS, paging, null, 400);
|
|
|
|
// -ve test - term too short
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "a");
|
|
getAll(URL_QUERIES_LSS, paging, params, 400);
|
|
|
|
// -ve test - term is still too short
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, " \"a *\" ");
|
|
getAll(URL_QUERIES_LSS, paging, params, 400);
|
|
|
|
// -ve test - unauthenticated - belts-and-braces ;-)
|
|
setRequestContext(null);
|
|
getAll(URL_QUERIES_LSS, paging, params, 401);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
// some cleanup
|
|
setRequestContext(user1);
|
|
|
|
for (String siteId : siteIds)
|
|
{
|
|
deleteSite(siteId, true, 204);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Test
|
|
public void testLiveSearchSites_SortPage() throws Exception
|
|
{
|
|
setRequestContext(user1);
|
|
|
|
List<String> siteIds = new ArrayList<>(5);
|
|
|
|
try
|
|
{
|
|
// As user 1 ...
|
|
|
|
Paging paging = getPaging(0, 100);
|
|
|
|
// create site
|
|
String s1 = createSite("siABCDEF"+RUNID, "ABCDEF DEF", "sdABCDEF", SiteVisibility.PRIVATE, 201).getId();
|
|
String s2 = createSite("siABCD"+RUNID, "ABCD DEF", "sdABCD", SiteVisibility.PRIVATE, 201).getId();
|
|
String s3 = createSite("siABCDE"+RUNID, "ABCDE DEF", "sdABCDE", SiteVisibility.PRIVATE, 201).getId();
|
|
String s4 = createSite("siAB"+RUNID, "AB DEF", "sdAB", SiteVisibility.PRIVATE, 201).getId();
|
|
String s5 = createSite("siABC"+RUNID, "ABC DEF", "sdABC", SiteVisibility.PRIVATE, 201).getId();
|
|
|
|
siteIds.addAll(Arrays.asList(new String[] {s1, s2, s3, s4, s5}));
|
|
|
|
int sCount = siteIds.size();
|
|
|
|
// test sort order
|
|
{
|
|
// default sort order - title asc
|
|
Map<String, String> params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "siAB");
|
|
HttpResponse response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
List<Site> sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(sCount, sites.size());
|
|
assertEquals(Arrays.asList(new String[]{s4, s5, s2, s3, s1}), getSiteIds(sites));
|
|
|
|
// sort order - title asc
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "siAB");
|
|
params.put(Queries.PARAM_ORDERBY, "title asc");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(sCount, sites.size());
|
|
assertEquals(Arrays.asList(new String[]{s4, s5, s2, s3, s1}), getSiteIds(sites));
|
|
|
|
// sort order - title desc
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "siAB");
|
|
params.put(Queries.PARAM_ORDERBY, "title desc");
|
|
response = getAll(URL_QUERIES_LSS, paging, params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(sCount, sites.size());
|
|
assertEquals(Arrays.asList(new String[]{s1, s3, s2, s5, s4}), getSiteIds(sites));
|
|
}
|
|
|
|
// basic paging tests
|
|
{
|
|
// sort order - title desc
|
|
|
|
Map<String, String> params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "siAB");
|
|
params.put(Queries.PARAM_ORDERBY, "title desc");
|
|
HttpResponse response = getAll(URL_QUERIES_LSS, getPaging(0, 2), params, 200);
|
|
List<Site> sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(2, sites.size());
|
|
assertEquals(Arrays.asList(new String[]{s1, s3}), getSiteIds(sites));
|
|
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "siAB");
|
|
params.put(Queries.PARAM_ORDERBY, "title desc");
|
|
response = getAll(URL_QUERIES_LSS, getPaging(2, 2), params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(2, sites.size());
|
|
assertEquals(Arrays.asList(new String[]{s2, s5}), getSiteIds(sites));
|
|
|
|
params = new HashMap<>(1);
|
|
params.put(Queries.PARAM_TERM, "siAB");
|
|
params.put(Queries.PARAM_ORDERBY, "title desc");
|
|
response = getAll(URL_QUERIES_LSS, getPaging(4, 2), params, 200);
|
|
sites = RestApiUtil.parseRestApiEntries(response.getJsonResponse(), Site.class);
|
|
assertEquals(1, sites.size());
|
|
assertEquals(Arrays.asList(new String[]{s4}), getSiteIds(sites));
|
|
}
|
|
|
|
// -ve tests
|
|
{
|
|
// -ve test - invalid sort field
|
|
Map<String, String> params = new HashMap<>(2);
|
|
params.put(Queries.PARAM_TERM, "siAB");
|
|
params.put(Queries.PARAM_ORDERBY, "invalid asc");
|
|
getAll(URL_QUERIES_LSS, paging, params, 400);
|
|
|
|
// -ve test - unauthenticated - belts-and-braces ;-)
|
|
setRequestContext(null);
|
|
getAll(URL_QUERIES_LSS, paging, params, 401);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
// some cleanup
|
|
setRequestContext(user1);
|
|
for (String siteId : siteIds)
|
|
{
|
|
deleteSite(siteId, true, 204);
|
|
}
|
|
}
|
|
}
|
|
|
|
private List<String> getSiteIds(List<Site> sites)
|
|
{
|
|
List<String> siteIds = new ArrayList<>(sites.size());
|
|
for (Site site : sites)
|
|
{
|
|
siteIds.add(site.getId());
|
|
}
|
|
return siteIds;
|
|
}
|
|
|
|
@Override
|
|
public String getScope()
|
|
{
|
|
return "public";
|
|
}
|
|
}
|