REPO-2755 / REPO-2251: changed FULL group with REGRESSION

This commit is contained in:
cagache
2017-10-11 12:00:56 +03:00
parent fbb9dfe0d4
commit 77604878e2
6 changed files with 42 additions and 42 deletions
@@ -353,7 +353,7 @@ public class RemoveSiteMemberTests extends RestTest
@TestRail(section = {TestGroup.REST_API, TestGroup.SITES }, executionType = ExecutionType.REGRESSION,
description = "Verify that admin can delete a site member with Contributor role and gets status code 204")
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
public void adminIsAbleToDeleteSiteMemberWithContributorRole() throws Exception
{
restClient.authenticateUser(adminUserModel).withCoreAPI().usingSite(publicSiteModel)
@@ -364,7 +364,7 @@ public class RemoveSiteMemberTests extends RestTest
@TestRail(section = {TestGroup.REST_API, TestGroup.SITES }, executionType = ExecutionType.REGRESSION,
description = "Verify that admin can delete site member with Manager role and gets status code 204")
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
public void aminIsAbleToDeleteSiteMemberWithManagerRole() throws Exception
{
restClient.authenticateUser(adminUserModel).withCoreAPI().usingSite(publicSiteModel)
@@ -375,7 +375,7 @@ public class RemoveSiteMemberTests extends RestTest
@TestRail(section = {TestGroup.REST_API, TestGroup.SITES }, executionType = ExecutionType.REGRESSION,
description = "Verify that admin can delete site member with Consumer role and gets status code 204")
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
public void adminIsAbleToDeleteSiteMemberWithConsumerRole() throws Exception
{
restClient.authenticateUser(adminUserModel).withCoreAPI().usingSite(publicSiteModel)
@@ -386,7 +386,7 @@ public class RemoveSiteMemberTests extends RestTest
@TestRail(section = {TestGroup.REST_API, TestGroup.SITES }, executionType = ExecutionType.REGRESSION,
description = "Verify that admin can delete a site member with Collaborator role and gets status code 204")
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
public void adminIsAbleToDeleteSiteMemberWithCollaboratorRole() throws Exception
{
restClient.authenticateUser(adminUserModel).withCoreAPI().usingSite(publicSiteModel)
@@ -397,7 +397,7 @@ public class RemoveSiteMemberTests extends RestTest
@TestRail(section = {TestGroup.REST_API, TestGroup.SITES }, executionType = ExecutionType.REGRESSION,
description = "Verify that admin can delete a site member of moderated site and gets status code 204")
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
public void adminIsAbleToDeleteModeratedSiteMember() throws Exception
{
UserModel newMember = dataUser.createRandomTestUser();
@@ -410,7 +410,7 @@ public class RemoveSiteMemberTests extends RestTest
@TestRail(section = {TestGroup.REST_API, TestGroup.SITES }, executionType = ExecutionType.REGRESSION,
description = "Verify that admin can delete a site member of private site and gets status code 204")
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
public void adminIsAbleToDeletePrivateSiteMember() throws Exception
{
UserModel newMember = dataUser.createRandomTestUser();
@@ -423,7 +423,7 @@ public class RemoveSiteMemberTests extends RestTest
@TestRail(section = {TestGroup.REST_API, TestGroup.SITES }, executionType = ExecutionType.REGRESSION,
description = "Verify that regular user can not delete admin and gets status code 422")
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
public void regularUserIsNotAbleToDeleteASiteMember() throws Exception
{
restClient.authenticateUser(usersWithRoles.getOneUserWithRole(UserRole.SiteCollaborator)).withCoreAPI().usingSite(publicSiteModel)
@@ -437,7 +437,7 @@ public class RemoveSiteMemberTests extends RestTest
@TestRail(section = {TestGroup.REST_API, TestGroup.SITES }, executionType = ExecutionType.REGRESSION,
description = "Verify that admin can not delete a site member twice and gets status code 404 for the second attempt")
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@Bug(id="ACE-5447")
public void adminIsNotAbleToRemoveSiteMemberTwice() throws Exception
{
@@ -453,7 +453,7 @@ public class RemoveSiteMemberTests extends RestTest
@TestRail(section = {TestGroup.REST_API, TestGroup.SITES }, executionType = ExecutionType.REGRESSION,
description = "Verify admin is not able to remove from site a user that created a member request that was not accepted yet")
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@Bug(id="ACE-5447")
public void adminIsNotAbleToRemoveFromSiteANonExistingMember() throws Exception
{
@@ -300,7 +300,7 @@ public class UpdateSiteMemberTests extends RestTest
.and().field("role").is(siteManager.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update another site manager to site contributor")
public void managerUpdateSiteManagerToSiteContributor() throws Exception
@@ -315,7 +315,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteManager.getUsername()).and().field("role").is(siteManager.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update another site manager to site consumer")
public void managerUpdateSiteManagerToSiteConsumer() throws Exception
@@ -330,7 +330,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteManager.getUsername()).and().field("role").is(siteManager.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update site contributor to site collaborator")
public void managerUpdateSiteContributorToSiteCollaborator() throws Exception
@@ -345,7 +345,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteContributor.getUsername()).and().field("role").is(siteContributor.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update site contributor to site consumer")
public void managerUpdateSiteContributorToSiteConsumer() throws Exception
@@ -360,7 +360,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteContributor.getUsername()).and().field("role").is(siteContributor.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update site collaborator to site contributor")
public void managerUpdateSiteCollaboratorToSiteContributor() throws Exception
@@ -375,7 +375,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteCollaborator.getUsername()).and().field("role").is(siteCollaborator.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update site collaborator to site consumer")
public void managerUpdateSiteCollaboratorToSiteConsumer() throws Exception
@@ -390,7 +390,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteCollaborator.getUsername()).and().field("role").is(siteCollaborator.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update site consumer to site collaborator")
public void managerUpdateSiteConsumerToSiteCollaborator() throws Exception
@@ -405,7 +405,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteConsumer.getUsername()).and().field("role").is(siteConsumer.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update site consumer to site contributor")
public void managerUpdateSiteConsumerToSiteContributor() throws Exception
@@ -420,7 +420,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteConsumer.getUsername()).and().field("role").is(siteConsumer.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update another site manager to site manager")
public void managerUpdateSiteManagerToSiteManager() throws Exception
@@ -435,7 +435,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteManager.getUsername()).and().field("role").is(siteManager.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update site collaborator to site collaborator")
public void managerUpdateSiteCollaboratorToSiteCollaborator() throws Exception
@@ -450,7 +450,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteCollaborator.getUsername()).and().field("role").is(siteCollaborator.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update site contributor to site contributor")
public void managerUpdateSiteContributorToSiteContributor() throws Exception
@@ -465,7 +465,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteContributor.getUsername()).and().field("role").is(siteContributor.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update site consumer to site consumer")
public void managerUpdateSiteConsumerToSiteConsumer() throws Exception
@@ -480,7 +480,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteConsumer.getUsername()).and().field("role").is(siteConsumer.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager of a private site is able to downgrade his role")
public void privateSiteManagerDowngradesRole() throws Exception
@@ -495,7 +495,7 @@ public class UpdateSiteMemberTests extends RestTest
updatedMember.assertThat().field("id").is(siteManager.getUsername()).and().field("role").is(siteManager.getUserRole());
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager of a moderated site is able to downgrade his role")
public void moderatedSiteManagerDowngradesRole() throws Exception
@@ -512,7 +512,7 @@ public class UpdateSiteMemberTests extends RestTest
@TestRail(section = { TestGroup.REST_API, TestGroup.FAVORITES }, executionType = ExecutionType.REGRESSION,
description = "Verify the response of updating a site member with empty body at request")
@Test(groups = { TestGroup.REST_API, TestGroup.FAVORITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.FAVORITES, TestGroup.REGRESSION })
public void managerCanNotUpdateSiteMemberWithEmptyBody() throws Exception
{
restClient.authenticateUser(siteCreator).withCoreAPI();
@@ -529,7 +529,7 @@ public class UpdateSiteMemberTests extends RestTest
.stackTraceIs(RestErrorModel.STACKTRACE);
}
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.SITES, TestGroup.REGRESSION })
@TestRail(section={TestGroup.REST_API, TestGroup.SITES}, executionType= ExecutionType.REGRESSION,
description= "Verify if manager is able to update a user that has created a site membership request, but it's not a member of the site yet")
public void managerCanNotUpdateUserWithSiteMembershipRequest() throws Exception
@@ -509,7 +509,7 @@ public class UpdateSiteMembershipRequestTests extends RestTest
moderatedSite.setId(moderatedSiteId);
}
@Test(groups = { TestGroup.REST_API, TestGroup.PEOPLE, TestGroup.CORE })
@Test(groups = { TestGroup.REST_API, TestGroup.PEOPLE, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.PEOPLE }, executionType = ExecutionType.REGRESSION,
description = "Verify inexistent user is not able to update site membership request")
public void emptyUserCannotUpdateSiteMembershipRequest() throws Exception
@@ -102,7 +102,7 @@ public class AddProcessItemCoreTests extends RestTest
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW,TestGroup.PROCESSES }, executionType = ExecutionType.REGRESSION,
description = "Add multiple process item by a random user.")
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.PROCESSES, TestGroup.CORE })
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.PROCESSES, TestGroup.REGRESSION })
public void addMultipleProcessItemByAnyUser() throws Exception
{
anotherUser = dataUser.createRandomTestUser();
@@ -108,7 +108,7 @@ public class GetTaskCandidatesRegressionTests extends RestTest
.assertLastError().containsSummary(RestErrorModel.PERMISSION_WAS_DENIED);
}
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Check default error model schema for get task candidates")
public void getTaskCandidatesErrorSchemaCheck() throws Exception
@@ -126,7 +126,7 @@ public class GetTaskCandidatesRegressionTests extends RestTest
}
@Bug(id="MNT-17438")
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Get task candidates with skip count parameter")
public void getTaskCandidatesWithSkipCount() throws Exception
@@ -142,7 +142,7 @@ public class GetTaskCandidatesRegressionTests extends RestTest
.and().paginationField("count").is("0");
}
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Get task candidates with max items parameter set to 0")
public void getTaskCandidatesWithZeroMaxItems() throws Exception
@@ -159,7 +159,7 @@ public class GetTaskCandidatesRegressionTests extends RestTest
.descriptionURLIs(RestErrorModel.RESTAPIEXPLORER);
}
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Get task candidates with max items parameter")
public void getTaskCandidatesWithMaxItems() throws Exception
@@ -175,7 +175,7 @@ public class GetTaskCandidatesRegressionTests extends RestTest
.and().paginationField("count").is("1");
}
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Get task candidates with properties")
public void getTaskCandidatesWithProperties() throws Exception
@@ -191,7 +191,7 @@ public class GetTaskCandidatesRegressionTests extends RestTest
.field("candidateType").isNull();
}
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Get task candidates with invalid properties")
public void getTaskCandidatesWithInvalidProperties() throws Exception
@@ -206,7 +206,7 @@ public class GetTaskCandidatesRegressionTests extends RestTest
.fieldsCount().is(0).and();
}
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Get task candidates by deleted candidate")
public void getTaskCandidatesByDeletedCandidate() throws Exception
@@ -229,7 +229,7 @@ public class GetTaskCandidatesRegressionTests extends RestTest
.descriptionURLIs(RestErrorModel.RESTAPIEXPLORER);
}
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Get task candidates by deleted group")
public void getTaskCandidatesByDeletedGroup() throws Exception
@@ -254,7 +254,7 @@ public class GetTaskCandidatesRegressionTests extends RestTest
.stackTraceIs(RestErrorModel.STACKTRACE);
}
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = {TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Get task candidates by user that was removed from group")
public void getTaskCandidatesByUserRemovedFromGroup() throws Exception
@@ -41,7 +41,7 @@ public class AddTaskItemTestsBulk3 extends RestTest
taskModel = dataWorkflow.usingUser(userWhoStartsTask).usingSite(siteModel).usingResource(fileModel).createNewTaskAndAssignTo(assigneeUser);
}
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Add task item using random user.")
public void addTaskItemByTheUserThatStartedTheProcess() throws Exception
@@ -59,7 +59,7 @@ public class AddTaskItemTestsBulk3 extends RestTest
.and().field("mimeType").is(taskItem.getMimeType());
}
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL })
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION })
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Add multiple task item using random user.")
public void addMultipleTaskItemByTheUserThatStartedTheProcess() throws Exception
@@ -92,7 +92,7 @@ public class AddTaskItemTestsBulk3 extends RestTest
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Add task item using by admin in other network.")
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL, TestGroup.NETWORKS })
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION, TestGroup.NETWORKS })
public void addTaskItemByAdminInOtherNetwork() throws Exception
{
UserModel adminTenantUser1 = UserModel.getAdminTenantUser();
@@ -119,7 +119,7 @@ public class AddTaskItemTestsBulk3 extends RestTest
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW,TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Add multiple task item using by admin in other network.")
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL, TestGroup.NETWORKS })
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION, TestGroup.NETWORKS })
public void addMultipleTaskItemByAdminInOtherNetwork() throws Exception
{
UserModel adminTenantUser1 = UserModel.getAdminTenantUser();
@@ -148,7 +148,7 @@ public class AddTaskItemTestsBulk3 extends RestTest
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW,TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Delete task item then create it again")
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL})
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION})
public void deleteTaskItemThenCreateItAgain() throws Exception
{
taskModel = dataWorkflow.usingUser(userWhoStartsTask).usingSite(siteModel).usingResource(fileModel)
@@ -167,7 +167,7 @@ public class AddTaskItemTestsBulk3 extends RestTest
@TestRail(section = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS }, executionType = ExecutionType.REGRESSION,
description = "Delete multiple task item then create it again")
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.FULL})
@Test(groups = { TestGroup.REST_API, TestGroup.WORKFLOW, TestGroup.TASKS, TestGroup.REGRESSION})
public void deleteMultipleTaskItemsThenCreateThemAgain() throws Exception
{
taskModel = dataWorkflow.usingUser(userWhoStartsTask).usingSite(siteModel).usingResource(fileModel)