jadex.micro.testcases.ComponentResultTestStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-micro Show documentation
Show all versions of jadex-applications-micro Show documentation
The Jadex micro applications package contains several example applications, benchmarks and testcases using micro agents.
package jadex.micro.testcases;
import java.util.Map;
import jadex.base.test.TestReport;
import jadex.base.test.Testcase;
import jadex.bridge.IComponentIdentifier;
import jadex.bridge.IComponentStep;
import jadex.bridge.IInternalAccess;
import jadex.bridge.component.IArgumentsResultsFeature;
import jadex.bridge.component.IExecutionFeature;
import jadex.bridge.service.component.IRequiredServicesFeature;
import jadex.bridge.service.types.cms.CreationInfo;
import jadex.bridge.service.types.cms.IComponentManagementService;
import jadex.commons.SUtil;
import jadex.commons.future.DelegationResultListener;
import jadex.commons.future.Future;
import jadex.commons.future.IFuture;
import jadex.commons.future.IResultListener;
/**
* Behavior of the component result test.
*/
public class ComponentResultTestStep implements IComponentStep
{
/**
* Execute the test.
*/
public IFuture execute(final IInternalAccess ia)
{
final Future ret = new Future();
final TestReport tr1 = new TestReport("#1", "Default configuration.");
testComponentResult(null, "initial1", ia)
.addResultListener(ia.getComponentFeature(IExecutionFeature.class).createResultListener(new IResultListener()
{
public void resultAvailable(Object result)
{
tr1.setSucceeded(true);
next();
}
public void exceptionOccurred(Exception exception)
{
tr1.setFailed(exception.getMessage());
next();
}
protected void next()
{
final TestReport tr2 = new TestReport("#2", "Custom configuration");
testComponentResult("config2", "initial2", ia)
.addResultListener(ia.getComponentFeature(IExecutionFeature.class).createResultListener(new IResultListener()
{
public void resultAvailable(Object result)
{
tr2.setSucceeded(true);
next();
}
public void exceptionOccurred(Exception exception)
{
tr2.setFailed(exception.getMessage());
next();
}
protected void next()
{
ia.getComponentFeature(IArgumentsResultsFeature.class).getResults().put("testresults", new Testcase(2, new TestReport[]{tr1, tr2}));
ret.setResult(null);
}
}));
}
}));
return ret;
}
/**
* Create/destroy subcomponent and check if result is as expected.
*/
protected IFuture testComponentResult(final String config, final String expected, final IInternalAccess ia)
{
final Future fut = new Future();
ia.getComponentFeature(IRequiredServicesFeature.class).getRequiredService("cms").addResultListener(new DelegationResultListener(fut)
{
public void customResultAvailable(Object result)
{
final IComponentManagementService cms = (IComponentManagementService)result;
cms.createComponent(null, "jadex/micro/testcases/Result.component.xml", new CreationInfo(config, null, ia.getComponentIdentifier()), null)
.addResultListener(ia.getComponentFeature(IExecutionFeature.class).createResultListener(new DelegationResultListener(fut)
{
public void customResultAvailable(Object result)
{
cms.destroyComponent((IComponentIdentifier)result)
.addResultListener(new DelegationResultListener(fut)
{
public void customResultAvailable(Object result)
{
Map results = (Map)result;
if(results!=null && SUtil.equals(results.get("res"), expected))
{
super.customResultAvailable(null);
}
else
{
throw new RuntimeException("Results do not match, expected res="+expected+" but got: "+results);
}
}
});
}
}));
}
});
return fut;
}
}