Merge "Fix for Bug 3"
[controller.git] / opendaylight / netconf / netconf-impl / src / test / java / org / opendaylight / controller / netconf / impl / NetconfDispatcherImplTest.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.netconf.impl;
10
11 import io.netty.channel.ChannelFuture;
12 import io.netty.channel.EventLoopGroup;
13 import io.netty.channel.nio.NioEventLoopGroup;
14 import io.netty.util.HashedWheelTimer;
15 import org.junit.After;
16 import org.junit.Before;
17 import org.junit.Test;
18 import org.opendaylight.controller.netconf.impl.osgi.NetconfOperationServiceFactoryListener;
19 import org.opendaylight.controller.netconf.impl.osgi.NetconfOperationServiceFactoryListenerImpl;
20
21 import java.lang.management.ManagementFactory;
22 import java.net.InetSocketAddress;
23
24 public class NetconfDispatcherImplTest {
25
26     private EventLoopGroup nettyGroup;
27     private NetconfServerDispatcher dispatch;
28     private DefaultCommitNotificationProducer commitNot;
29
30     @Before
31     public void setUp() throws Exception {
32         nettyGroup = new NioEventLoopGroup();
33
34         commitNot = new DefaultCommitNotificationProducer(
35                 ManagementFactory.getPlatformMBeanServer());
36         NetconfOperationServiceFactoryListener factoriesListener = new NetconfOperationServiceFactoryListenerImpl();
37
38         SessionIdProvider idProvider = new SessionIdProvider();
39         NetconfServerSessionNegotiatorFactory serverNegotiatorFactory = new NetconfServerSessionNegotiatorFactory(
40                 new HashedWheelTimer(), factoriesListener, idProvider);
41
42         NetconfServerSessionListenerFactory listenerFactory = new NetconfServerSessionListenerFactory(
43                 factoriesListener, commitNot, idProvider, null);
44         NetconfServerDispatcher.ServerChannelInitializer serverChannelInitializer = new NetconfServerDispatcher.ServerChannelInitializer(serverNegotiatorFactory, listenerFactory);
45
46         dispatch = new NetconfServerDispatcher(
47                 serverChannelInitializer, nettyGroup, nettyGroup);
48     }
49
50     @After
51     public void tearDown() throws Exception {
52         commitNot.close();
53         nettyGroup.shutdownGracefully();
54     }
55
56     @Test
57     public void test() throws Exception {
58         InetSocketAddress addr = new InetSocketAddress("127.0.0.1", 8333);
59         ChannelFuture s = dispatch.createServer(addr);
60         s.get();
61     }
62 }