Uploaded image for project: 'jBPM'
  1. jBPM
  2. JBPM-2856

assertExecutionEnded should check for executions in STATE_ENDED

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Major Major
    • jBPM 4.4
    • jBPM 4.3
    • None
    • None

      In the testing framework, the method assertExecutionEnded() seems to have a bug in it. It only checks whether a process instance has been deleted from the database. It should also check for the case where a process instance has not been deleted from the database, but has a state of Execution.STATE_ENDED.

      It would look something like this:

      public void assertExecutionEnded( final String processInstanceId )

      { final ProcessInstance pi = executionService.findProcessInstanceById( processInstanceId ); assertTrue( "Error: an active process instance with id " + processInstanceId + " was found", pi == null || Execution.STATE_ENDED.equals( pi.getState() ) ); }

        1. JBPM-2856-2010-05-21.patch
          22 kB
          HuiSheng Xu
        2. JBPM-2856-2010-05-16.patch
          15 kB
          HuiSheng Xu
        3. JBPM-2856.patch
          7 kB
          HuiSheng Xu

            rebody HuiSheng Xu (Inactive)
            gubespam Mike M (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: