move the cmis query tests

add some additional usecase
This commit is contained in:
Rodica Sutu
2020-01-29 09:46:04 +02:00
parent b9cc5f5b3a
commit c20cfb3c6f

View File

@@ -0,0 +1,207 @@
/*
* #%L
* Alfresco Records Management Module
* %%
* Copyright (C) 2005 - 2020 Alfresco Software Limited
* %%
* License rights for this program may be obtained from Alfresco Software, Ltd.
* pursuant to a written agreement and any use of this program without such an
* agreement is prohibited.
* #L%
*/
package org.alfresco.rest.rm.community.search;
import static org.alfresco.rest.rm.community.model.user.UserRoles.ROLE_RM_MANAGER;
import static org.alfresco.rest.rm.community.util.CommonTestUtils.generateTestPrefix;
import static org.alfresco.utility.report.log.Step.STEP;
import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.assertFalse;
import static org.testng.AssertJUnit.assertTrue;
import org.alfresco.dataprep.ContentActions;
import org.alfresco.rest.RestTest;
import org.alfresco.rest.rm.community.base.BaseRMRestTest;
import org.alfresco.rest.rm.community.model.recordcategory.RecordCategoryChild;
import org.alfresco.rest.rm.community.model.user.UserPermissions;
import org.alfresco.rest.v0.service.RoleService;
import org.alfresco.test.AlfrescoTest;
import org.alfresco.utility.Utility;
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.apache.chemistry.opencmis.client.api.ItemIterable;
import org.apache.chemistry.opencmis.client.api.OperationContext;
import org.apache.chemistry.opencmis.client.api.QueryResult;
import org.apache.chemistry.opencmis.client.runtime.OperationContextImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
/**
* Test to check that RM doesn't break CMIS query
*
* @author jcule, Rodica Sutu
* @since 2.5.4
* @since 3.3
*/
public class CmisQueryTests extends BaseRMRestTest
{
private static final String SEARCH_TERM = generateTestPrefix(CmisQueryTests.class);
private static final String sqlWithName =
"SELECT cmis:name FROM cmis:document where CONTAINS('cmis:name:*" + SEARCH_TERM + "*')";
private SiteModel collaborationSite;
private UserModel nonRMUser, rmUser;
private RecordCategoryChild recordFolder;
@Autowired
private ContentActions contentActions;
@Autowired
private RoleService roleService;
/**
* Create some test data:
* <pre>
* - a collaboration site with documents
* - in place records
* - category with folder and records
* - a user with no rm rights (no rights to see the record from file plan)
* - a user with rights to see the records and the other documents created
* </pre>
*/
@BeforeClass (alwaysRun = true)
public void setupCmisQuery() throws Exception
{
STEP("Create a collaboration site");
collaborationSite = dataSite.usingAdmin().createPrivateRandomSite();
STEP("Create 10 documents ending with SEARCH_TERM");
for (int i = 0; ++i <= 10; )
{
FileModel fileModel = new FileModel(String.format("%s.%s", "Doc" + i + SEARCH_TERM,
FileType.TEXT_PLAIN.extension));
dataContent.usingAdmin().usingSite(collaborationSite).createContent(fileModel);
}
STEP("Create a collaborator user for the collaboration site");
nonRMUser = getDataUser().createRandomTestUser();
getDataUser().addUserToSite(nonRMUser, collaborationSite, UserRole.SiteManager);
STEP("Create 10 documents and declare as records");
for (int i = 0; ++i <= 10; )
{
FileModel fileModel = new FileModel(String.format("%s.%s", "InPlace " + SEARCH_TERM + i,
FileType.TEXT_PLAIN.extension));
fileModel = dataContent.usingUser(nonRMUser).usingSite(collaborationSite).createContent(fileModel);
getRestAPIFactory().getFilesAPI(nonRMUser).declareAsRecord(fileModel.getNodeRefWithoutVersion());
}
STEP("Create record folder and some records ");
recordFolder = createCategoryFolderInFilePlan();
for (int i = 0; ++i <= 10; )
{
createElectronicRecord(recordFolder.getId(), "Record " + SEARCH_TERM + i);
}
STEP("Create an rm user with read permission over the category created and contributor role within the " +
"collaboration site");
rmUser = roleService.createUserWithSiteRoleRMRoleAndPermission(collaborationSite, UserRole.SiteContributor,
recordFolder.getParentId(), ROLE_RM_MANAGER, UserPermissions.PERMISSION_READ_RECORDS);
//do a cmis query to wait for solr indexing
Utility.sleep(5000, 30000, () ->
{
ItemIterable<QueryResult> results =
contentActions.getCMISSession(getAdminUser().getUsername(), getAdminUser().getPassword()).query(sqlWithName,
false);
assertEquals("Total number of items is not 30, got " + results.getTotalNumItems() + "total items",
30, results.getTotalNumItems());
});
}
/**
* <pre>
* Given the RM site created
* When I execute a cmis query to get all the documents names
* Then I get all documents names 100 per page
* </pre>
*/
@Test
@AlfrescoTest (jira = "MNT-19442")
public void getAllDocumentsNamesCmisQuery()
{
// execute the cmis query
String cq = "SELECT cmis:name FROM cmis:document";
ItemIterable<QueryResult> results =
contentActions.getCMISSession(getAdminUser().getUsername(), getAdminUser().getPassword()).query(cq,
false);
// check the total number of items is greater than 100 and has more items is true
assertTrue("Has more items not true.", results.getHasMoreItems());
assertTrue("Total number of items is not greater than 100. Total number of items received" + results.getTotalNumItems(),
results.getTotalNumItems() > 100);
assertEquals("Expected 100 items per page and got " + results.getPageNumItems() + " per page.", 100,
results.getPageNumItems());
}
/**
* <pre>
* Given the RM site created
* When I execute a cmis query to get all the documents names with a particular name
* Then I get all documents names user has permission
* </pre>
*/
@Test
@AlfrescoTest (jira = "MNT-19442")
public void getDocumentsWithSpecificNamesCmisQuery() throws Exception
{
// execute the cmis query
ItemIterable<QueryResult> results =
contentActions.getCMISSession(nonRMUser.getUsername(), nonRMUser.getPassword()).query(sqlWithName,
false);
assertEquals("Total number of items is not 20, got " + results.getTotalNumItems() + " total items",
20, results.getTotalNumItems());
// check the has more items is false
assertFalse("Has more items not false.", results.getHasMoreItems());
assertEquals("Expected 20 items per page and got " + results.getPageNumItems() + " per page.", 20,
results.getPageNumItems());
}
/**
* <pre>
* Given the RM site created
* When I execute a cmis query to get all the documents names with a specific number per page
* Then I get all documents names paged as requested that the user has permission
* </pre>
*/
@Test
@AlfrescoTest (jira = "MNT-19442")
public void getDocumentsCmisQueryWithPagination() throws Exception
{
OperationContext oc = new OperationContextImpl();
oc.setMaxItemsPerPage(10);
ItemIterable<QueryResult> results =
contentActions.getCMISSession(rmUser.getUsername(), rmUser.getPassword()).query(sqlWithName,
false, oc);
// check the total number of items and has more items is true
assertTrue("Has more items not true. ", results.getHasMoreItems());
assertEquals("Total number of items is not 30 " + results.getTotalNumItems(), 30,
results.getTotalNumItems());
assertEquals("Expected 10 items per page and got " + results.getPageNumItems() + " per page.",
10, results.getPageNumItems());
}
@AfterClass
private void clearCmisQueryTests()
{
dataSite.usingAdmin().deleteSite(collaborationSite);
getRestAPIFactory().getRecordCategoryAPI().deleteRecordCategory(recordFolder.getParentId());
getDataUser().usingAdmin().deleteUser(rmUser);
getDataUser().usingAdmin().deleteUser(nonRMUser);
}
}