jadex.micro.testcases.PojoDService 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.lang.reflect.Proxy;
import jadex.base.test.TestReport;
import jadex.base.test.Testcase;
import jadex.bridge.IComponentIdentifier;
import jadex.bridge.IInternalAccess;
import jadex.bridge.component.IArgumentsResultsFeature;
import jadex.bridge.component.IExecutionFeature;
import jadex.bridge.service.annotation.Service;
import jadex.bridge.service.annotation.ServiceComponent;
import jadex.bridge.service.annotation.ServiceStart;
import jadex.bridge.service.component.IRequiredServicesFeature;
import jadex.bridge.service.types.cms.CreationInfo;
import jadex.bridge.service.types.cms.IComponentManagementService;
import jadex.commons.future.DelegationResultListener;
import jadex.commons.future.ExceptionDelegationResultListener;
import jadex.commons.future.Future;
import jadex.commons.future.IFuture;
import jadex.commons.future.IResultListener;
/**
*
*/
@Service
public class PojoDService implements IDService
{
/** The agent. */
@ServiceComponent
protected IInternalAccess agent;
/**
* Init the agent.
*/
@ServiceStart
public IFuture serviceStarted()
{
final Future ret = new Future();
final Future res = new Future();
if("first".equals(agent.getConfiguration()))
{
IFuture cmsfut = agent.getComponentFeature(IRequiredServicesFeature.class).getRequiredService("cms");
cmsfut.addResultListener(new ExceptionDelegationResultListener(ret)
{
public void customResultAvailable(IComponentManagementService cms)
{
// IComponentManagementService cms = (IComponentManagementService)result;
cms.createComponent(null, "jadex.micro.testcases.ServiceParameterAgent.class",
new CreationInfo("second", null, agent.getComponentIdentifier()), null)
.addResultListener(new ExceptionDelegationResultListener(ret)
{
public void customResultAvailable(IComponentIdentifier cid)
{
// IComponentIdentifier cid = (IComponentIdentifier)result;
IFuture serfut = agent.getComponentFeature(IRequiredServicesFeature.class).searchService(IDService.class, cid);
serfut.addResultListener(new ExceptionDelegationResultListener(ret)
{
public void customResultAvailable(IDService otherser)
{
otherser.testServiceArgument(PojoDService.this)
.addResultListener(new DelegationResultListener(res));
}
});
}
});
}
});
}
else
{
ret.setResult(null);
}
res.addResultListener(agent.getComponentFeature(IExecutionFeature.class).createResultListener(new IResultListener()
{
public void resultAvailable(Object result)
{
TestReport tr = new TestReport("#1", "Test if pojo service can be passed as parameter value.");
if(result instanceof Boolean && ((Boolean)result).booleanValue())
{
tr.setSucceeded(true);
}
else
{
tr.setReason("Wrong parameter value received.");
}
agent.getComponentFeature(IArgumentsResultsFeature.class).getResults().put("testresults", new Testcase(1, new TestReport[]{tr}));
ret.setResult(null);
// if(result!=null)
agent.killComponent();
}
public void exceptionOccurred(Exception exception)
{
agent.getComponentFeature(IArgumentsResultsFeature.class).getResults().put("testresults", new Testcase(0, new TestReport[]{}));
ret.setResult(null);
agent.killComponent();
}
}));
return ret;
}
/**
*
*/
public IFuture testServiceArgument(IDService service)
{
// System.out.println("service: "+service.getClass());
return Proxy.isProxyClass(service.getClass()) ? IFuture.TRUE: IFuture.FALSE;
};
}