fields)
diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/CMISTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/CMISTests.java
deleted file mode 100644
index 6b612b3523..0000000000
--- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/CMISTests.java
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2020 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 .
- * #L%
- */
-package org.alfresco.rest.rm.community.search;
-
-import static org.testng.AssertJUnit.assertEquals;
-import static org.testng.AssertJUnit.assertTrue;
-
-import org.alfresco.dataprep.ContentActions;
-import org.alfresco.rest.rm.community.base.BaseRMRestTest;
-import org.alfresco.test.AlfrescoTest;
-import org.apache.chemistry.opencmis.client.api.ItemIterable;
-import org.apache.chemistry.opencmis.client.api.QueryResult;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.testng.annotations.Test;
-
-public class CMISTests extends BaseRMRestTest
-{
- @Autowired
- private ContentActions contentActions;
-
- /**
- *
- * Given the RM site created
- * When I execute cmis query
- * Then I get the correct response
- *
- */
- @Test
- @AlfrescoTest (jira="MNT-19442")
- public void executeCmisQuery()
- {
- // execute the cmis query
- String cql = "SELECT cmis:name FROM cmis:document";
- ItemIterable results =
- contentActions.getCMISSession(getAdminUser().getUsername(), getAdminUser().getPassword()).query(cql,
- false);
-
- // check the total number of items is 100 and has more items is true
- assertTrue("Has more items not true. ", results.getHasMoreItems());
- assertTrue("Total number of items is greater than 100 ", results.getTotalNumItems() > 100);
- assertEquals("Pagination supports only 100 items per page", results.getPageNumItems(), 100);
- }
-
-}
diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/SearchDocumentsV1Test.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/SearchDocumentsV1Test.java
index 5570de00a1..69b503dada 100644
--- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/SearchDocumentsV1Test.java
+++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/SearchDocumentsV1Test.java
@@ -97,16 +97,19 @@ public class SearchDocumentsV1Test extends BaseRMRestTest
fileModel = new FileModel(String.format("%s.%s", "Doc" + i + SEARCH_TERM, FileType.TEXT_PLAIN.extention));
dataContent.usingAdmin().usingSite(collaborationSite).createContent(fileModel);
}
+ waitIndexing();
}
/**
* Do the query to wait for solr indexing
*
- * @param queryType the query being executed
* @throws Exception when maximum retry period is reached
*/
- private void waitIndexing(RestRequestQueryModel queryType) throws Exception
+ private void waitIndexing() throws Exception
{
+ RestRequestQueryModel queryType = new RestRequestQueryModel();
+ queryType.setQuery("cm:name:*" + SEARCH_TERM);
+ queryType.setLanguage("afts");
Utility.sleep(1000, 80000, () ->
{
SearchRequestBuilder sqlRequest = new SearchRequestBuilder().setQueryBuilder(queryType)
@@ -124,11 +127,9 @@ public class SearchDocumentsV1Test extends BaseRMRestTest
* And setting the skipCount and maxItems to reach the number of total items
* Then hasMoreItems will be set to false
*/
- @Test
- (dataProvider = "queryTypes")
+ @Test(dataProvider = "queryTypes")
public void searchWhenMaxItemsReach(RestRequestQueryModel queryType) throws Exception
{
- waitIndexing(queryType);
final SearchRequestBuilder sqlRequest = new SearchRequestBuilder().setQueryBuilder(queryType)
.setPagingBuilder(new SearchRequestBuilder().setPagination(5, 5))
.setFieldsBuilder(asList("id", "name"));
@@ -146,11 +147,9 @@ public class SearchDocumentsV1Test extends BaseRMRestTest
* And setting skipCount and maxItems to exceed the number of total items
* Then hasMoreItems will be set to false
*/
- @Test
- (dataProvider = "queryTypes")
+ @Test(dataProvider = "queryTypes")
public void searchWhenTotalItemsExceed(RestRequestQueryModel queryType) throws Exception
{
- waitIndexing(queryType);
final SearchRequestBuilder sqlRequest = new SearchRequestBuilder().setQueryBuilder(queryType)
.setPagingBuilder(new SearchRequestBuilder().setPagination(5, 6))
.setFieldsBuilder(asList("id", "name"));
@@ -168,11 +167,9 @@ public class SearchDocumentsV1Test extends BaseRMRestTest
* And setting skipCount and maxItems under the number of total items
* Then hasMoreItems will be set to true
*/
- @Test
- (dataProvider = "queryTypes")
+ @Test(dataProvider = "queryTypes")
public void searchResultsUnderTotalItems(RestRequestQueryModel queryType) throws Exception
{
- waitIndexing(queryType);
final SearchRequestBuilder sqlRequest = new SearchRequestBuilder().setQueryBuilder(queryType)
.setPagingBuilder(new SearchRequestBuilder().setPagination(4, 5))
.setFieldsBuilder(asList("id", "name"));
@@ -184,7 +181,6 @@ public class SearchDocumentsV1Test extends BaseRMRestTest
assertEquals(searchResponse.getEntries().size(), 4, "Expected total entries to be four");
}
- @AfterTest
@AfterClass (alwaysRun = true)
public void tearDown()
{
diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/SearchRecordsV1CmisTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/SearchRecordsV1CmisTests.java
index de5f9f23fc..050a634a53 100644
--- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/SearchRecordsV1CmisTests.java
+++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/SearchRecordsV1CmisTests.java
@@ -41,19 +41,19 @@ import org.alfresco.rest.rm.community.model.recordcategory.RecordCategoryChild;
import org.alfresco.rest.rm.community.model.user.UserPermissions;
import org.alfresco.rest.search.RestRequestQueryModel;
import org.alfresco.rest.search.SearchResponse;
+import org.alfresco.rest.v0.UserTrashcanAPI;
import org.alfresco.utility.constants.UserRole;
import org.alfresco.utility.model.FileModel;
import org.alfresco.utility.model.FileType;
import org.alfresco.utility.model.SiteModel;
import org.alfresco.utility.model.UserModel;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
/**
* This class contains the tests for v1 Search API with records with CMIS query
- *
- * @author Rodica Sutu
- * @since 2.6.0.2
*/
public class SearchRecordsV1CmisTests extends BaseRMRestTest
{
@@ -63,6 +63,8 @@ public class SearchRecordsV1CmisTests extends BaseRMRestTest
private FileModel fileModel;
private RestRequestQueryModel queryModel;
+ @Autowired
+ private UserTrashcanAPI userTrashcanAPI;
/**
* Create a collaboration site and some in place records.
@@ -115,10 +117,10 @@ public class SearchRecordsV1CmisTests extends BaseRMRestTest
.setFieldsBuilder(asList("id", "name"));
SearchResponse searchResponse = getRestAPIFactory().getSearchAPI(rmUser).search(sqlRequest);
- assertEquals(searchResponse.getPagination().getCount(), 5);
- assertEquals(searchResponse.getPagination().getSkipCount(), 15);
- assertFalse(searchResponse.getPagination().isHasMoreItems());
- assertEquals(searchResponse.getEntries().size(), 5);
+ assertEquals(searchResponse.getPagination().getCount(), 5, "Expected maxItems to be five");
+ assertEquals(searchResponse.getPagination().getSkipCount(), 15, "Expected skip count to be fifteen");
+ assertFalse(searchResponse.getPagination().isHasMoreItems(), "Expected hasMoreItems to be false");
+ assertEquals(searchResponse.getEntries().size(), 5, "Expected total entries to be five");
}
@Test
@@ -129,10 +131,10 @@ public class SearchRecordsV1CmisTests extends BaseRMRestTest
.setFieldsBuilder(asList("id", "name"));
SearchResponse searchResponse = getRestAPIFactory().getSearchAPI(nonRMUser).search(sqlRequest);
- assertEquals(searchResponse.getPagination().getCount(), 5);
- assertEquals(searchResponse.getPagination().getSkipCount(), 5);
- assertFalse(searchResponse.getPagination().isHasMoreItems());
- assertEquals(searchResponse.getEntries().size(), 5);
+ assertEquals(searchResponse.getPagination().getCount(), 5, "Expected maxItems to be five");
+ assertEquals(searchResponse.getPagination().getSkipCount(), 5, "Expected skip count to be five");
+ assertFalse(searchResponse.getPagination().isHasMoreItems(), "Expected hasMoreItems to be false");
+ assertEquals(searchResponse.getEntries().size(), 5, "Expected total entries to be five");
}
/**
@@ -149,10 +151,10 @@ public class SearchRecordsV1CmisTests extends BaseRMRestTest
.setFieldsBuilder(asList("id", "name"));
SearchResponse searchResponse = getRestAPIFactory().getSearchAPI(rmUser).search(sqlRequest);
- assertEquals(searchResponse.getPagination().getCount(), 4);
- assertEquals(searchResponse.getPagination().getSkipCount(), 16);
- assertFalse(searchResponse.getPagination().isHasMoreItems());
- assertEquals(searchResponse.getEntries().size(), 4);
+ assertEquals(searchResponse.getPagination().getCount(), 4, "Expected maxItems to be four");
+ assertEquals(searchResponse.getPagination().getSkipCount(), 16, "Expected skip count to be sixteen");
+ assertFalse(searchResponse.getPagination().isHasMoreItems(), "Expected hasMoreItems to be false");
+ assertEquals(searchResponse.getEntries().size(), 4, "Expected total entries to be four");
}
@Test
@@ -163,10 +165,10 @@ public class SearchRecordsV1CmisTests extends BaseRMRestTest
.setFieldsBuilder(asList("id", "name"));
SearchResponse searchResponse = getRestAPIFactory().getSearchAPI(nonRMUser).search(sqlRequest);
- assertEquals(searchResponse.getPagination().getCount(), 4);
- assertEquals(searchResponse.getPagination().getSkipCount(), 6);
- assertFalse(searchResponse.getPagination().isHasMoreItems());
- assertEquals(searchResponse.getEntries().size(), 4);
+ assertEquals(searchResponse.getPagination().getCount(), 4, "Expected maxItems to be four");
+ assertEquals(searchResponse.getPagination().getSkipCount(), 6, "Expected skip count to be six");
+ assertFalse(searchResponse.getPagination().isHasMoreItems(), "Expected hasMoreItems to be false");
+ assertEquals(searchResponse.getEntries().size(), 4, "Expected total entries to be four");
}
/**
@@ -183,10 +185,10 @@ public class SearchRecordsV1CmisTests extends BaseRMRestTest
.setFieldsBuilder(asList("id", "name"));
SearchResponse searchResponse = getRestAPIFactory().getSearchAPI(rmUser).search(sqlRequest);
- assertEquals(searchResponse.getPagination().getCount(), 4);
- assertEquals(searchResponse.getPagination().getSkipCount(), 15);
- assertTrue(searchResponse.getPagination().isHasMoreItems());
- assertEquals(searchResponse.getEntries().size(), 4);
+ assertEquals(searchResponse.getPagination().getCount(), 4, "Expected maxItems to be four");
+ assertEquals(searchResponse.getPagination().getSkipCount(), 15, "Expected skip count to be fifteen");
+ assertTrue(searchResponse.getPagination().isHasMoreItems(), "Expected hasMoreItems to be true");
+ assertEquals(searchResponse.getEntries().size(), 4, "Expected total entries to be four");
}
@Test
@@ -197,9 +199,16 @@ public class SearchRecordsV1CmisTests extends BaseRMRestTest
.setFieldsBuilder(asList("id", "name"));
SearchResponse searchResponse = getRestAPIFactory().getSearchAPI(nonRMUser).search(sqlRequest);
- assertEquals(searchResponse.getPagination().getCount(), 4);
- assertEquals(searchResponse.getPagination().getSkipCount(), 5);
- assertTrue(searchResponse.getPagination().isHasMoreItems());
- assertEquals(searchResponse.getEntries().size(), 4);
+ assertEquals(searchResponse.getPagination().getCount(), 4, "Expected maxItems to be four");
+ assertEquals(searchResponse.getPagination().getSkipCount(), 5, "Expected skip count to be five");
+ assertTrue(searchResponse.getPagination().isHasMoreItems(), "Expected hasMoreItems to be true");
+ assertEquals(searchResponse.getEntries().size(), 4, "Expected total entries to be four");
+ }
+
+ @AfterClass (alwaysRun = true)
+ public void tearDown()
+ {
+ dataSite.usingAdmin().deleteSite(collaborationSite);
+ userTrashcanAPI.emptyTrashcan(getAdminUser().getUsername(), getAdminUser().getPassword());
}
}