fix for issue 113
This commit is contained in:
parent
9d96f4a84f
commit
f93e356003
@ -277,8 +277,8 @@ public class DefaultChannelPipeline implements ChannelPipeline {
|
||||
|
||||
if (!sameName) {
|
||||
name2ctx.remove(ctx.getName());
|
||||
name2ctx.put(newName, newCtx);
|
||||
}
|
||||
name2ctx.put(newName, newCtx);
|
||||
|
||||
ChannelHandlerLifeCycleException removeException = null;
|
||||
ChannelHandlerLifeCycleException addException = null;
|
||||
|
@ -0,0 +1,32 @@
|
||||
package org.jboss.netty.channel;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class TestDefaultChannelPipeline {
|
||||
@Test
|
||||
public void testReplaceChannelHandler() {
|
||||
DefaultChannelPipeline pipeline = new DefaultChannelPipeline();
|
||||
|
||||
SimpleChannelHandler handler1 = new SimpleChannelHandler();
|
||||
pipeline.addLast("handler1", handler1);
|
||||
pipeline.addLast("handler2", handler1);
|
||||
pipeline.addLast("handler3", handler1);
|
||||
assertTrue(pipeline.get("handler1") == handler1);
|
||||
assertTrue(pipeline.get("handler2") == handler1);
|
||||
assertTrue(pipeline.get("handler3") == handler1);
|
||||
|
||||
SimpleChannelHandler newHandler1 = new SimpleChannelHandler();
|
||||
pipeline.replace("handler1", "handler1", newHandler1);
|
||||
assertTrue(pipeline.get("handler1") == newHandler1);
|
||||
|
||||
SimpleChannelHandler newHandler3 = new SimpleChannelHandler();
|
||||
pipeline.replace("handler3", "handler3", newHandler3);
|
||||
assertTrue(pipeline.get("handler3") == newHandler3);
|
||||
|
||||
SimpleChannelHandler newHandler2 = new SimpleChannelHandler();
|
||||
pipeline.replace("handler2", "handler2", newHandler2);
|
||||
assertTrue(pipeline.get("handler2") == newHandler2);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user