Package tools

Source Code of tools.ExceptionTests

/*
* This file is part of the WfMOpen project.
* Copyright (C) 2001-2004 Danet GmbH (www.danet.de), GS-AN.
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
* $Id: ExceptionTests.java 1865 2006-10-26 13:24:54Z drmlipp $
*
* $Log$
* Revision 1.5  2006/10/19 12:20:53  drmlipp
* Fixed test.
*
* Revision 1.4  2006/10/19 11:47:52  drmlipp
* Added suspended test.
*
* Revision 1.3  2006/09/29 12:32:07  drmlipp
* Consistently using WfMOpen as projct name now.
*
* Revision 1.2  2005/08/25 13:24:22  drmlipp
* Synchronized with 1.3.1p6.
*
* Revision 1.1.2.1  2005/08/24 20:41:08  drmlipp
* Added exception mapping tests.
*
* Revision 1.1  2004/12/22 19:28:11  mlipp
* Added jelly tool.
*
*/
package tools;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;

import java.util.Collection;
import java.util.Iterator;

import javax.security.auth.login.LoginException;

import de.danet.an.util.junit.EJBClientTest;

import de.danet.an.workflow.omgcore.WfActivity;
import de.danet.an.workflow.omgcore.WfProcess;
import de.danet.an.workflow.omgcore.WfRequester;

import de.danet.an.workflow.api.Activity;
import de.danet.an.workflow.api.DefaultRequester;
import de.danet.an.workflow.api.FactoryConfigurationError;
import de.danet.an.workflow.api.Process;
import de.danet.an.workflow.api.ProcessDefinitionDirectory;
import de.danet.an.workflow.api.ProcessDirectory;
import de.danet.an.workflow.api.ProcessMgr;
import de.danet.an.workflow.api.WorkflowService;
import de.danet.an.workflow.api.WorkflowServiceFactory;

import common.UTLoginContext;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

/**
* Test exception mapping
*/
public class ExceptionTests extends TestCase {
    private static UTLoginContext plc = null;
    static {
  try {
      plc = new UTLoginContext();
      plc.login();
  } catch (LoginException e) {
      throw new IllegalStateException (e.getMessage ());
  }
    }

    /**
     * A process directory reference.
     */
    private ProcessDirectory pdd = null;

    /**
     * Constructor of this TestCase
     */
    public ExceptionTests(String name) {
  super (name);
    }

    /**
     * Stellt diese TestSuite zusammen.
     */
    public static Test suite() {
        TestSuite suite = new TestSuite();
     suite.addTest(new ExceptionTests("importProcessDefinitions"));
     suite.addTest(new ExceptionTests("defaultMapping"));
     suite.addTest(new ExceptionTests("overrideMapping"));
     suite.addTest(new ExceptionTests("redefineMapping"));
        suite.addTest(new ExceptionTests("suspendMapping"));
        suite.addTest(new ExceptionTests("suspendMapping2"));
        return new EJBClientTest (plc, suite);
    }

    private WorkflowService workflowService = null;

    /**
     * Initialisierung.
     */
    protected void setUp() throws Exception {
  try {
      WorkflowServiceFactory wfsf
    = WorkflowServiceFactory.newInstance ();
      workflowService = wfsf.newWorkflowService();
  } catch (FactoryConfigurationError e) {
      throw new IllegalStateException (e.getMessage());
  }
    }

    protected void tearDown() throws Exception {
  workflowService.release (workflowService);
  workflowService = null;
    }

    /**
     * Import the process definitions from a XPDL file
     * unsing the ProcessDefinitionDirectory bean.
     */
    public void importProcessDefinitions() throws Exception {
  // Create process definition directory bean
  ProcessDefinitionDirectory pdd
      = workflowService.processDefinitionDirectory();

  InputStream is = getClass()
      .getResourceAsStream("/tools/exceptiontest.xml");
  assertTrue (is != null);
  BufferedReader br = new BufferedReader
      (new InputStreamReader(is, "ISO-8859-1"));
  StringBuffer sb = new StringBuffer();
  String st;
  while ((st = br.readLine()) != null) {
      sb.append(st + "\n");
  }
  pdd.importProcessDefinitions(sb.toString());
  Collection processDefinitions = pdd.processDefinitions();
  assertTrue (processDefinitions.size() > 0);
    }

    /**
     * Test.
     */
    public void defaultMapping () throws Exception {
  ProcessDefinitionDirectory procDefDir = null;
  ProcessDirectory procDir = null;
  try {
      procDefDir = workflowService.processDefinitionDirectory();
      procDir = workflowService.processDirectory();
      ProcessMgr pmgr = procDefDir
    .processMgr ("ExceptionTests", "defaultMapping");
      WfProcess process
    = pmgr.createProcess(new DefaultRequester (workflowService));
      process.start();
      assertTrue (stateReached (process, "closed.completed"));
      boolean found = false;
      for (Iterator i = process.steps().iterator(); i.hasNext();) {
          WfActivity act = (WfActivity)i.next ();
          if (act.name().equals("Generic")) {
              found = true;
              assertTrue (act.state().startsWith("closed.completed"));
          }
      }
      assertTrue (found);
      procDir.removeProcess(process);
  } finally {
      workflowService.release (procDefDir);
      workflowService.release (procDir);
  }
    }

    /**
     * Test.
     */
    public void overrideMapping () throws Exception {
  ProcessDefinitionDirectory procDefDir = null;
  ProcessDirectory procDir = null;
  try {
      procDefDir = workflowService.processDefinitionDirectory();
      procDir = workflowService.processDirectory();
      ProcessMgr pmgr = procDefDir
    .processMgr ("ExceptionTests", "overrideMapping");
      WfProcess process
    = pmgr.createProcess(new DefaultRequester (workflowService));
      process.start();
      assertTrue (stateReached (process, "closed.terminated"));
            boolean found = false;
            for (Iterator i = process.steps().iterator(); i.hasNext();) {
                WfActivity act = (WfActivity)i.next ();
                if (act.name().equals("Get stock quote")) {
                    found = true;
                    assertTrue (act.state().startsWith("closed.terminated"));
                }
            }
            assertTrue (found);     
      procDir.removeProcess(process);
  } finally {
      workflowService.release (procDefDir);
      workflowService.release (procDir);
  }
    }

    /**
     * Test.
     */
    public void redefineMapping () throws Exception {
  ProcessDefinitionDirectory procDefDir = null;
  ProcessDirectory procDir = null;
  try {
      procDefDir = workflowService.processDefinitionDirectory();
      procDir = workflowService.processDirectory();
      ProcessMgr pmgr = procDefDir
    .processMgr ("ExceptionTests", "redefineMapping");
      WfProcess process
    = pmgr.createProcess(new DefaultRequester (workflowService));
      process.start();
      assertTrue (stateReached (process, "closed.completed"));
            boolean found = false;
            for (Iterator i = process.steps().iterator(); i.hasNext();) {
                WfActivity act = (WfActivity)i.next ();
                if (act.name().equals("Generic")) {
                    found = true;
                    assertTrue (act.state().startsWith("closed.completed"));
                }
            }
            assertTrue (found);
      procDir.removeProcess(process);
  } finally {
      workflowService.release (procDefDir);
      workflowService.release (procDir);
  }
    }

    /**
     * Test.
     */
    public void suspendMapping () throws Exception {
        ProcessDefinitionDirectory procDefDir = null;
        ProcessDirectory procDir = null;
        try {
            procDefDir = workflowService.processDefinitionDirectory();
            procDir = workflowService.processDirectory();
            ProcessMgr pmgr = procDefDir
                .processMgr ("ExceptionTests", "suspendMapping");
            WfProcess process
                = pmgr.createProcess(new DefaultRequester (workflowService));
            process.start();
            Activity toolAct = null;
            for (Iterator i = process.steps().iterator(); i.hasNext();) {
                Activity act = (Activity)i.next();
                if (act.name().equals("Get stock quote")) {
                    toolAct = act;
                    break;
                }
            }
            assertTrue(toolAct != null);
            stateReached(toolAct, "open.not_running.suspended.abandoning");
            toolAct.resume();
            assertTrue (stateReached (process, "closed.completed"));
            boolean found = false;
            for (Iterator i = process.steps().iterator(); i.hasNext();) {
                WfActivity act = (WfActivity)i.next ();
                if (act.name().equals("Generic")) {
                    found = true;
                    assertTrue (act.state().startsWith("closed.completed"));
                }
            }
            assertTrue (found);
            procDir.removeProcess(process);
        } finally {
            workflowService.release (procDefDir);
            workflowService.release (procDir);
        }
    }

    /**
     * Test.
     */
    public void suspendMapping2 () throws Exception {
        ProcessDefinitionDirectory procDefDir = null;
        ProcessDirectory procDir = null;
        try {
            procDefDir = workflowService.processDefinitionDirectory();
            procDir = workflowService.processDirectory();
            ProcessMgr pmgr = procDefDir
                .processMgr ("ExceptionTests", "suspendMapping");
            WfProcess process
                = pmgr.createProcess(new DefaultRequester (workflowService));
            process.start();
            Activity toolAct = null;
            for (Iterator i = process.steps().iterator(); i.hasNext();) {
                Activity act = (Activity)i.next();
                if (act.name().equals("Get stock quote")) {
                    toolAct = act;
                    break;
                }
            }
            assertTrue(toolAct != null);
            stateReached(toolAct, "open.not_running.suspended.abandoning");
            toolAct.changeState("open.not_running.suspended.clearing_exception");
            toolAct.resume();
            assertTrue (stateReached (process, "closed.completed"));
            boolean found = false;
            for (Iterator i = process.steps().iterator(); i.hasNext();) {
                WfActivity act = (WfActivity)i.next ();
                if (act.name().equals("Generic")) {
                    found = true;
                    assertTrue (act.state().startsWith("open.not_running.not_started"));
                }
            }
            assertTrue (found);
            found = false;
            for (Iterator i = process.steps().iterator(); i.hasNext();) {
                WfActivity act = (WfActivity)i.next ();
                if (act.name().equals("Normal")) {
                    found = true;
                    assertTrue (act.state().startsWith("closed.completed"));
                }
            }
            assertTrue (found);
            procDir.removeProcess(process);
        } finally {
            workflowService.release (procDefDir);
            workflowService.release (procDir);
        }
    }

    private WfProcess createProcess
  (String pkgId, String prcId, WfRequester req)
        throws Exception {
  ProcessDefinitionDirectory procDir = null;
  try {
      procDir = workflowService.processDefinitionDirectory();
      ProcessMgr pmgr = procDir.processMgr(pkgId, prcId);
      return pmgr.createProcess (req);
  } finally {
      workflowService.release (procDir);
  }
    }
 
    private boolean stateReached(WfProcess proc, String procState)
  throws Exception {
  boolean test = true;
  boolean stateReached = false;
  int maxRetries = 100;
  while (test){
      if (maxRetries-- > 0) {
    if (proc.state().startsWith(procState)) {
        stateReached = true;
        test = false;
    } else {
        Thread.sleep(500);
    }
      } else {
    test = false;
      }
  } 
  return stateReached;
    }

    private boolean stateReached(WfActivity act, String actState)
  throws Exception {
  boolean test = true;
  boolean stateReached = false;
  int maxRetries = 100;
  while (test){
      if (maxRetries-- > 0) {
    if (act.state().startsWith(actState)) {
        stateReached = true;
        test = false;
    } else {
        Thread.sleep(500);
    }
      } else {
    test = false;
      }
  } 
  return stateReached;
    }
}
TOP

Related Classes of tools.ExceptionTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.