blob: 520c4cd9cc53bbdb2d35a946022382f65828cb0a [file] [log] [blame]
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.axis2.mail;
// todo
import junit.framework.TestCase;
import org.apache.axiom.om.OMAbstractFactory;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMNamespace;
import org.apache.axiom.om.util.StAXUtils;
import org.apache.axiom.soap.SOAPEnvelope;
import org.apache.axis2.AxisFault;
import org.apache.axis2.Constants;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.client.ServiceClient;
import org.apache.axis2.client.async.AsyncResult;
import org.apache.axis2.client.async.Callback;
import org.apache.axis2.context.ConfigurationContext;
import org.apache.axis2.context.MessageContext;
import org.apache.axis2.description.AxisOperation;
import org.apache.axis2.description.AxisService;
import org.apache.axis2.description.OutInAxisOperation;
import org.apache.axis2.engine.Echo;
import org.apache.axis2.engine.MessageReceiver;
import org.apache.axis2.transport.mail.SimpleMailListener;
import org.apache.axis2.util.Utils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import javax.xml.namespace.QName;
import javax.xml.stream.XMLStreamException;
public class MailRequestResponseRawXMLTest extends TestCase {
private EndpointReference targetEPR = new EndpointReference("mail:foo@127.0.0.1"
+ "/axis2/services/EchoXMLService/echoOMElement");
private static final Log log = LogFactory.getLog(MailRequestResponseRawXMLTest.class);
private QName serviceName = new QName("EchoXMLService");
private QName operationName = new QName("echoOMElement");
private boolean finish = false;
private SOAPEnvelope envelope;
private ConfigurationContext serverConfigContext;
public MailRequestResponseRawXMLTest() {
super(MailRequestResponseRawXMLTest.class.getName());
}
public MailRequestResponseRawXMLTest(String testName) {
super(testName);
}
protected void setUp() throws Exception {
serverConfigContext = UtilsMailServer.start();
SimpleMailListener ml = new SimpleMailListener();
ml.init(serverConfigContext, serverConfigContext.getAxisConfiguration()
.getTransportIn(new QName(Constants.TRANSPORT_MAIL)));
ml.start();
// configContext.getAxisConfiguration().engageModule(
// new QName(Constants.MODULE_ADDRESSING));
AxisService service = Utils.createSimpleService(serviceName, Echo.class
.getName(), operationName);
serverConfigContext.getAxisConfiguration().addService(service);
}
protected void tearDown() throws Exception {
UtilsMailServer.stop();
}
private OMElement createEnvelope() {
OMFactory fac = OMAbstractFactory.getOMFactory();
OMNamespace omNs = fac.createOMNamespace("http://localhost/my", "my");
OMElement method = fac.createOMElement("echoOMElement", omNs);
OMElement value = fac.createOMElement("myValue", omNs);
value.addChild(fac.createOMText(value,
"Isaac Asimov, The Foundation Trilogy"));
method.addChild(value);
return method;
}
public void testEchoXMLCompleteASync() throws Exception {
ConfigurationContext configContext = UtilsMailServer
.createClientConfigurationContext();
AxisService service = new AxisService(serviceName.getLocalPart());
AxisOperation axisOperation = new OutInAxisOperation();
axisOperation.setName(operationName);
axisOperation.setMessageReceiver(new MessageReceiver() {
public void receive(MessageContext messageCtx) {
envelope = messageCtx.getEnvelope();
}
});
service.addOperation(axisOperation);
// configContext.getAxisConfiguration().addService(service);
Options options = new Options();
options.setTo(targetEPR);
options.setAction(operationName.getLocalPart());
options.setTransportInProtocol(Constants.TRANSPORT_MAIL);
options.setUseSeparateListener(true);
Callback callback = new Callback() {
public void onComplete(AsyncResult result) {
try {
result.getResponseEnvelope().serializeAndConsume(
StAXUtils
.createXMLStreamWriter(System.out));
} catch (XMLStreamException e) {
onError(e);
} finally {
finish = true;
}
}
public void onError(Exception e) {
log.info(e.getMessage());
finish = true;
}
};
ServiceClient sender = new ServiceClient(configContext, service);
sender.setOptions(options);
//options.setTo(targetEPR);
sender.sendReceiveNonBlocking(operationName, createEnvelope(), callback);
int index = 0;
while (!finish) {
Thread.sleep(1000);
index++;
if (index > 10) {
throw new AxisFault(
"Server was shutdown as the async response is taking too long to complete.");
}
}
}
}