Author: davsclaus
Date: Fri Jul 25 23:23:29 2008
New Revision: 679957
URL: http://svn.apache.org/viewvc?rev=679957&view=rev
Log:
Added unit test with custom codec inspired by user forum.
Added:
activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaCustomCodecTest.java
(with props)
Modified:
activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaComponent.java
Modified:
activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaComponent.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaComponent.java?rev=679957&r1=679956&r2=679957&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaComponent.java
(original)
+++
activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaComponent.java
Fri Jul 25 23:23:29 2008
@@ -248,7 +248,7 @@
}
public void dispose(IoSession session) throws
Exception {
-
+ // do nothing
}
};
}
@@ -264,9 +264,11 @@
}
public void finishDecode(IoSession session,
ProtocolDecoderOutput out) throws Exception {
+ // do nothing
}
public void dispose(IoSession session) throws
Exception {
+ // do nothing
}
};
}
Added:
activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaCustomCodecTest.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaCustomCodecTest.java?rev=679957&view=auto
==============================================================================
---
activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaCustomCodecTest.java
(added)
+++
activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaCustomCodecTest.java
Fri Jul 25 23:23:29 2008
@@ -0,0 +1,101 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.camel.component.mina;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.impl.JndiRegistry;
+import org.apache.mina.common.ByteBuffer;
+import org.apache.mina.common.IoSession;
+import org.apache.mina.filter.codec.ProtocolCodecFactory;
+import org.apache.mina.filter.codec.ProtocolDecoder;
+import org.apache.mina.filter.codec.ProtocolDecoderOutput;
+import org.apache.mina.filter.codec.ProtocolEncoder;
+import org.apache.mina.filter.codec.ProtocolEncoderOutput;
+
+/**
+ * Unit test with custom codec.
+ */
+public class MinaCustomCodecTest extends ContextTestSupport {
+
+ private String uri = "mina:tcp://localhost:11300?sync=true&codec=myCodec";
+
+ public void testMyCodec() throws Exception {
+ MockEndpoint mock = getMockEndpoint("mock:result");
+ mock.expectedMessageCount(1);
+ mock.expectedBodiesReceived("Bye World");
+
+ template.sendBody(uri, "Hello World");
+
+ mock.assertIsSatisfied();
+ }
+
+ protected JndiRegistry createRegistry() throws Exception {
+ JndiRegistry jndi = super.createRegistry();
+ jndi.bind("myCodec", new MyCodec());
+ return jndi;
+ }
+
+ protected RouteBuilder createRouteBuilder() throws Exception {
+ return new RouteBuilder() {
+ public void configure() throws Exception {
+ from(uri).to("mock:result");
+ }
+ };
+ }
+
+ private class MyCodec implements ProtocolCodecFactory {
+
+ public ProtocolEncoder getEncoder() throws Exception {
+ return new ProtocolEncoder() {
+ public void encode(IoSession ioSession, Object message,
ProtocolEncoderOutput out)
+ throws Exception {
+ ByteBuffer bb = ByteBuffer.allocate(9).setAutoExpand(true);
+ bb.put("Bye World".getBytes());
+ bb.flip();
+ out.write(bb);
+ }
+
+ public void dispose(IoSession ioSession) throws Exception {
+ // do nothing
+ }
+ };
+
+ }
+
+ public ProtocolDecoder getDecoder() throws Exception {
+ return new ProtocolDecoder() {
+ public void decode(IoSession ioSession, ByteBuffer in,
+ ProtocolDecoderOutput out) throws Exception
{
+ in.acquire();
+ out.write(in);
+ }
+
+ public void finishDecode(IoSession ioSession,
ProtocolDecoderOutput protocolDecoderOutput)
+ throws Exception {
+ // do nothing
+ }
+
+ public void dispose(IoSession ioSession) throws Exception {
+ // do nothing
+ }
+ };
+ }
+ }
+
+}
Propchange:
activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaCustomCodecTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
activemq/camel/trunk/components/camel-mina/src/test/java/org/apache/camel/component/mina/MinaCustomCodecTest.java
------------------------------------------------------------------------------
svn:keywords = Rev Date