Package org.jboss.test.ws.jaxrpc.samples.wsbpel

Source Code of org.jboss.test.ws.jaxrpc.samples.wsbpel.JbpmBpelTestSetup

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the JBPM BPEL PUBLIC LICENSE AGREEMENT as
* published by JBoss Inc.; either version 1.0 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.
*/
package org.jboss.test.ws.jaxrpc.samples.wsbpel;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;

import javax.management.ObjectName;

import junit.framework.Test;

import org.jboss.logging.Logger;
import org.jboss.wsf.test.JBossWSTestHelper;
import org.jboss.wsf.test.JBossWSTestSetup;
import org.jboss.wsf.common.ObjectNameFactory;

/**
* A test setup that deploys process archives.
*
* @author <a href="mailto:alex.guizar@jboss.com">Alejandro Guizar</a>
* @author Thomas.Diesler@jboss.com
* @version $Revision: 8277 $
*/
public class JbpmBpelTestSetup extends JBossWSTestSetup
{
   private final ObjectName oname = ObjectNameFactory.create("jboss.jbpm:name=JbpmBpel,service=JbpmService");
   private final String[] processFiles;
   private boolean undeployOnTearDown;

   private static final Logger log = Logger.getLogger(JbpmBpelTestSetup.class);

   public JbpmBpelTestSetup(Test test, String[] processFiles)
   {
      super(test, null);
      this.processFiles = processFiles;
   }

   protected void setUp() throws Exception
   {
      // Deploy jbpm-bpel.sar if it is not deployed already
      JBossWSTestHelper helper = new JBossWSTestHelper();
      JBossWSTestHelper.login();
      if (JBossWSTestHelper.getServer().isRegistered(oname) == false)
      {
         helper.deploy("jbpm-bpel.sar");
         undeployOnTearDown = true;
      }
      JBossWSTestHelper.logout();
     
      for (int i = 0; i < processFiles.length; i++)
      {
         String processFileName = processFiles[i];

         // check file exists before dispatching to server
         File processFile = new File(processFileName);
         if (!processFile.exists())
            throw new FileNotFoundException(processFileName);

         deployProcess(processFile);
      }
   }
  
   protected void tearDown() throws Exception
   {
      if (undeployOnTearDown)
         new JBossWSTestHelper().undeploy("jbpm-bpel.sar");
   }

   public static void deployProcess(File processFile) throws Exception
   {
      // format file component
      String file = getJbpmBpelDeployContext() + "?processfile=" + URLEncoder.encode(processFile.toURI().toString(), "UTF-8");

      // create target URL
      URL targetUrl = new URL("http", JBossWSTestHelper.getServerHost(), getServerHttpPort(), file);

      // submit process deploy request
      int responseCode = submitRequest(targetUrl);

      if (responseCode != HttpURLConnection.HTTP_OK)
         throw new IOException("could not deploy process: " + processFile);
   }

   private static int submitRequest(URL targetUrl) throws IOException
   {
      HttpURLConnection httpConnection = (HttpURLConnection)targetUrl.openConnection();

      try
      {
         log.debug("submitting request: " + targetUrl);
         httpConnection.connect();

         int responseCode = httpConnection.getResponseCode();
         log.debug("got response code: " + responseCode);

         return responseCode;
      }
      finally
      {
         httpConnection.disconnect();
      }
   }

   public static int getServerHttpPort()
   {
      try
      {
         return Integer.parseInt(System.getProperty("jbpm.bpel.http.port"));
      }
      catch (NumberFormatException e)
      {
         return 8080;
      }
   }

   public static String getJbpmBpelDeployContext()
   {
      return System.getProperty("jbpm.bpel.deploy.context", "/jbpm-bpel/deploy");
   }
}
TOP

Related Classes of org.jboss.test.ws.jaxrpc.samples.wsbpel.JbpmBpelTestSetup

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.