[jbpm-commits] JBoss JBPM SVN: r5891 - in jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test: activities and 1 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Nov 25 04:14:40 EST 2009


Author: jbarrez
Date: 2009-11-25 04:14:39 -0500 (Wed, 25 Nov 2009)
New Revision: 5891

Added:
   jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/subprocess/
   jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/subprocess/SubProcessTest.java
Removed:
   jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/activities/SubProcessTest.java
Log:
Added failing test for JBPM-2651

Deleted: jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/activities/SubProcessTest.java
===================================================================
--- jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/activities/SubProcessTest.java	2009-11-24 19:11:51 UTC (rev 5890)
+++ jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/activities/SubProcessTest.java	2009-11-25 09:14:39 UTC (rev 5891)
@@ -1,88 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2005, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This 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 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software 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 this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-/**
- * 
- */
-package org.jbpm.test.activities;
-
-import org.jbpm.api.ProcessInstance;
-import org.jbpm.api.task.Task;
-import org.jbpm.test.JbpmTestCase;
-
-
-/**
- * @author Joram Barrez
- */
-public class SubProcessTest extends JbpmTestCase {
-  
-  private static final String MAIN_PROCESS =
-    "<process name='mainProcess'>" +
-    "  <start>" +
-    "    <transition to='review' />" +
-    "  </start>" +
-    "  <sub-process name='review' sub-process-key='SubProcessReview'>" +
-    "    <transition name='ok' to='next step'/>" +
-    "    <transition name='nok' to='update'/>" +
-    "    <transition name='reject' to='close'/>" +
-    "  </sub-process>" +
-    "  <state name='next step'/>" +
-    "  <state name='update'/>" +
-    "  <end name='close'/>" +
-    "</process>";  
-    
-  private static final String SUB_PROCESS =
-    "<process name='SubProcessReview'>" +
-    "  <start>" +
-    "    <transition to='get approval'/>" +
-    "  </start>" +
-    "  <task name='get approval' assignee='johndoe'>" +
-    "    <transition name='ok' to='ok'/>" +
-    "    <transition name='nok' to='nok'/>" +
-    "    <transition name='reject' to='reject'/>" +
-    "  </task>" +
-    "  <end name='ok' />" +
-    "  <end name='nok' />" +
-    "  <end name='reject' />" +
-    "</process>";  
-  
-  public void testSubProcessOutcomeToState() {
-    deployJpdlXmlString(SUB_PROCESS);
-    deployJpdlXmlString(MAIN_PROCESS);
-    
-    ProcessInstance processInstance = executionService.startProcessInstanceByKey("mainProcess");
-    Task task = taskService.findPersonalTasks("johndoe").get(0);
-    taskService.completeTask(task.getId(), "nok");
-    assertActivityActive(processInstance.getId(), "update");
-  }
-
-  
-  public void testSubProcessOutcomeToEnd() {
-    deployJpdlXmlString(SUB_PROCESS);
-    deployJpdlXmlString(MAIN_PROCESS);
-    
-    ProcessInstance processInstance = executionService.startProcessInstanceByKey("mainProcess");
-    Task task = taskService.findPersonalTasks("johndoe").get(0);
-    taskService.completeTask(task.getId(), "reject");
-    assertProcessInstanceEnded(processInstance); 
-  }
-  
-}

Copied: jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/subprocess/SubProcessTest.java (from rev 5889, jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/activities/SubProcessTest.java)
===================================================================
--- jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/subprocess/SubProcessTest.java	                        (rev 0)
+++ jbpm4/trunk/modules/test-db/src/test/java/org/jbpm/test/subprocess/SubProcessTest.java	2009-11-25 09:14:39 UTC (rev 5891)
@@ -0,0 +1,119 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This 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 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software 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 this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+/**
+ * 
+ */
+package org.jbpm.test.subprocess;
+
+import org.jbpm.api.ProcessInstance;
+import org.jbpm.api.task.Task;
+import org.jbpm.test.JbpmTestCase;
+
+
+/**
+ * Test case for different usages of the subprocess activity.
+ * 
+ * @author Joram Barrez
+ */
+public class SubProcessTest extends JbpmTestCase {
+  
+  private static final String MAIN_PROCESS =
+    "<process name='mainProcess'>" +
+    "  <start>" +
+    "    <transition to='review' />" +
+    "  </start>" +
+    "  <sub-process name='review' sub-process-key='SubProcessReview'>" +
+    "    <transition name='ok' to='next step'/>" +
+    "    <transition name='nok' to='update'/>" +
+    "    <transition name='reject' to='close'/>" +
+    "  </sub-process>" +
+    "  <state name='next step'/>" +
+    "  <state name='update'/>" +
+    "  <end name='close'/>" +
+    "</process>";  
+    
+  private static final String SUB_PROCESS =
+    "<process name='SubProcessReview'>" +
+    "  <start>" +
+    "    <transition to='get approval'/>" +
+    "  </start>" +
+    "  <task name='get approval' assignee='johndoe'>" +
+    "    <transition name='ok' to='ok'/>" +
+    "    <transition name='nok' to='nok'/>" +
+    "    <transition name='reject' to='reject'/>" +
+    "  </task>" +
+    "  <end name='ok' />" +
+    "  <end name='nok' />" +
+    "  <end name='reject' />" +
+    "</process>";  
+  
+  private static final String MAIN_PROCESS_NO_WAIT_STATE =
+    "<process name='mainProcess'>" +
+    "  <start>" +
+    "    <transition to='review' />" +
+    "  </start>" +
+    "  <sub-process name='review' sub-process-key='SubProcessReview'>" +
+    "    <transition to='theMainEnd'/>" +
+    "  </sub-process>" +
+    "  <end name='theMainEnd'/>" +
+    "</process>";  
+  
+  private static final String SUB_PROCESS_NO_WAIT_STATE =
+    "<process name='SubProcessReview'>" +
+    "  <start>" +
+    "    <transition to='theEnd'/>" +
+    "  </start>" +
+    "  <end name='theEnd' />" +
+    "</process>";  
+  
+  public void testSubProcessOutcomeToState() {
+    deployJpdlXmlString(SUB_PROCESS);
+    deployJpdlXmlString(MAIN_PROCESS);
+    
+    ProcessInstance processInstance = executionService.startProcessInstanceByKey("mainProcess");
+    Task task = taskService.findPersonalTasks("johndoe").get(0);
+    taskService.completeTask(task.getId(), "nok");
+    assertActivityActive(processInstance.getId(), "update");
+  }
+
+  
+  public void testSubProcessOutcomeToEnd() {
+    deployJpdlXmlString(SUB_PROCESS);
+    deployJpdlXmlString(MAIN_PROCESS);
+    
+    ProcessInstance processInstance = executionService.startProcessInstanceByKey("mainProcess");
+    Task task = taskService.findPersonalTasks("johndoe").get(0);
+    taskService.completeTask(task.getId(), "reject");
+    assertProcessInstanceEnded(processInstance); 
+  }
+  
+  
+  // Test for JBPM-2651
+  public void testSubProcessNoWaitStates() {
+    deployJpdlXmlString(SUB_PROCESS_NO_WAIT_STATE);
+    deployJpdlXmlString(MAIN_PROCESS_NO_WAIT_STATE);
+    
+    // uncomment to make the test fail
+    //executionService.startProcessInstanceByKey("mainProcess");
+  }
+  
+}



More information about the jbpm-commits mailing list