parasoft SOA Test - How to call Java code in parasoft

3.5k Views Asked by At

I am trying to run a java program as an executable from my Parasoft Test suite. The executable just executes once the test is run and store results in one folder.. But Now, as part of enhancement , I need to pass a argument to Java code and java code needs that argument to generate results in specific folders. Is anyone aware how java code needs to be integrated with SOA Test and how an argument can be passed from SOA test and how that argument should be dealt in java code?

Would appreciate any help on this.. Thanks

2

There are 2 best solutions below

1
On

You need to implement com.parasoft.api in you java code in order get the argument you need; More detail can be found in the help section search for: "Extensibility (Scripting) Basics"

Define a test suite variable, store your value in it, then call:

varValue = context.getValue("x")

Here is a Java example that gets a value from a datasource.

package examples;

import soaptest.api.*;
import com.parasoft.api.*;

public class Keyword {

    public Object getKeywords(Object input, ExtensionToolContext context) 
            throws com.parasoft.data.DataSourceException {
        String[] titles = new String[1];
        titles[0] = context.getValue("Books", "keywords");
        return SOAPUtil.getXMLFromString(titles);
    }

}
0
On

Please correct me if I understand this wrong.

You want to start a Java application from inside SOATest. This will run independently and you could also start it from the command line? In that case you could use Groovy to spawn of the process as you would on the command line. Check out the Groovy documentation.

*** SOATest.ExtensionTool ***

import com.parasoft.api.Application;
import com.parasoft.api.ScriptingContext;

def callJavaFromSoaTest(Object input, ScriptingContext scriptingContext) {
  command = 'java -jar /path/to/your/java/class/JavaMain.jar Parameter';
  result = command.execute().text;
  Application.showMessage(result);
}

*** Java Class ***

public class JavaMain {

  public static void main(String[] args) {
    String name = "Harry";
    if (args.length > 0) {
      name = args[0];
    }
    System.out.println("Hello " + name + ", how is your day?");
  }

}