X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fimpl%2FNetconfDispatcherImplTest.java;h=9835c2393ba489e7dcf7ead4ceca119beef7f63b;hp=ecbde5904b75f108c67b6f427e088bc71cec4f59;hb=f21eb777e0e23586aaa3880028b556a48dfd4823;hpb=a92d9d6a21a0f6ca8d2153795721f500eaf29ee9 diff --git a/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/NetconfDispatcherImplTest.java b/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/NetconfDispatcherImplTest.java index ecbde5904b..9835c2393b 100644 --- a/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/NetconfDispatcherImplTest.java +++ b/opendaylight/netconf/netconf-impl/src/test/java/org/opendaylight/controller/netconf/impl/NetconfDispatcherImplTest.java @@ -8,43 +8,58 @@ package org.opendaylight.controller.netconf.impl; -import java.lang.management.ManagementFactory; -import java.net.InetSocketAddress; - -import javax.net.ssl.SSLContext; - +import io.netty.channel.ChannelFuture; +import io.netty.channel.EventLoopGroup; +import io.netty.channel.nio.NioEventLoopGroup; +import io.netty.util.HashedWheelTimer; +import org.junit.After; +import org.junit.Before; import org.junit.Test; -import org.opendaylight.controller.netconf.impl.*; import org.opendaylight.controller.netconf.impl.osgi.NetconfOperationServiceFactoryListener; import org.opendaylight.controller.netconf.impl.osgi.NetconfOperationServiceFactoryListenerImpl; -import com.google.common.base.Optional; - -import io.netty.channel.ChannelFuture; -import io.netty.util.HashedWheelTimer; +import java.lang.management.ManagementFactory; +import java.net.InetSocketAddress; public class NetconfDispatcherImplTest { - @Test - public void test() throws Exception { + private EventLoopGroup nettyGroup; + private NetconfServerDispatcher dispatch; + private DefaultCommitNotificationProducer commitNot; + private HashedWheelTimer hashedWheelTimer; + + @Before + public void setUp() throws Exception { + nettyGroup = new NioEventLoopGroup(); - DefaultCommitNotificationProducer commitNot = new DefaultCommitNotificationProducer( + commitNot = new DefaultCommitNotificationProducer( ManagementFactory.getPlatformMBeanServer()); NetconfOperationServiceFactoryListener factoriesListener = new NetconfOperationServiceFactoryListenerImpl(); SessionIdProvider idProvider = new SessionIdProvider(); + hashedWheelTimer = new HashedWheelTimer(); NetconfServerSessionNegotiatorFactory serverNegotiatorFactory = new NetconfServerSessionNegotiatorFactory( - new HashedWheelTimer(), factoriesListener, idProvider); + hashedWheelTimer, factoriesListener, idProvider, 5000); NetconfServerSessionListenerFactory listenerFactory = new NetconfServerSessionListenerFactory( - factoriesListener, commitNot, idProvider); - NetconfServerDispatcher dispatch = new NetconfServerDispatcher(Optional. absent(), - serverNegotiatorFactory, listenerFactory); + factoriesListener, commitNot, idProvider, null); + NetconfServerDispatcher.ServerChannelInitializer serverChannelInitializer = new NetconfServerDispatcher.ServerChannelInitializer(serverNegotiatorFactory, listenerFactory); - InetSocketAddress addr = new InetSocketAddress("127.0.0.1", 8333); - ChannelFuture s = dispatch.createServer(addr); + dispatch = new NetconfServerDispatcher( + serverChannelInitializer, nettyGroup, nettyGroup); + } + @After + public void tearDown() throws Exception { + hashedWheelTimer.stop(); commitNot.close(); - dispatch.close(); + nettyGroup.shutdownGracefully(); + } + + @Test + public void test() throws Exception { + InetSocketAddress addr = new InetSocketAddress("127.0.0.1", 8333); + ChannelFuture s = dispatch.createServer(addr); + s.get(); } }