ACE-3121: Workflow Admin Console: Cannot change priority for activiti

- Removed priority value validation.  Just checked the type.
   - TODO: Determine if DelegateTask also needs similar handling

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@88560 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Ahmed Owian
2014-10-16 21:50:10 +00:00
parent 24560c0afd
commit f16b1ac567
2 changed files with 26 additions and 39 deletions

View File

@@ -1,3 +1,21 @@
/*
* Copyright (C) 2005-2014 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* 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/>.
*/
package org.alfresco.repo.workflow.activiti.properties;
import static org.junit.Assert.*;
@@ -54,33 +72,9 @@ public class ActivitiPriorityPropertyHandlerTest
}
@Test(expected = org.alfresco.service.cmr.workflow.WorkflowException.class)
public void handleTaskPropertyDoesNotSetInvalidIntPriority0()
public void handleTaskPropertyDoesNotSetInvalidStringPriority()
{
int priority = 0;
handler.handleTaskProperty(task, type, key, priority);
fail("The method should throw an exception and not reach here.");
}
@Test(expected = org.alfresco.service.cmr.workflow.WorkflowException.class)
public void handleTaskPropertyDoesNotSetInvalidIntPriority4()
{
int priority = 4;
handler.handleTaskProperty(task, type, key, priority);
fail("The method should throw an exception and not reach here.");
}
@Test(expected = org.alfresco.service.cmr.workflow.WorkflowException.class)
public void handleTaskPropertyDoesNotSetInvalidStringPriority0()
{
String priority = "0";
handler.handleTaskProperty(task, type, key, priority);
fail("The method should throw an exception and not reach here.");
}
@Test(expected = org.alfresco.service.cmr.workflow.WorkflowException.class)
public void handleTaskPropertyDoesNotSetInvalidStringPriority4()
{
String priority = "4";
String priority = "Not an integer";
handler.handleTaskProperty(task, type, key, priority);
fail("The method should throw an exception and not reach here.");
}
@@ -92,5 +86,4 @@ public class ActivitiPriorityPropertyHandlerTest
handler.handleTaskProperty(task, type, key, priority);
fail("The method should throw an exception and not reach here.");
}
}