Remove netconf from commons/opendaylight pom
[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 java.net.InetSocketAddress;
16 import org.junit.After;
17 import org.junit.Before;
18 import org.junit.Test;
19 import org.opendaylight.controller.netconf.impl.osgi.AggregatedNetconfOperationServiceFactory;
20
21 public class NetconfDispatcherImplTest {
22
23     private EventLoopGroup nettyGroup;
24     private NetconfServerDispatcherImpl dispatch;
25     private HashedWheelTimer hashedWheelTimer;
26
27
28     @Before
29     public void setUp() throws Exception {
30         nettyGroup = new NioEventLoopGroup();
31
32         AggregatedNetconfOperationServiceFactory factoriesListener = new AggregatedNetconfOperationServiceFactory();
33
34         SessionIdProvider idProvider = new SessionIdProvider();
35         hashedWheelTimer = new HashedWheelTimer();
36         NetconfServerSessionNegotiatorFactory serverNegotiatorFactory = new NetconfServerSessionNegotiatorFactory(
37                 hashedWheelTimer, factoriesListener, idProvider, 5000, ConcurrentClientsTest.createMockedMonitoringService());
38
39         NetconfServerDispatcherImpl.ServerChannelInitializer serverChannelInitializer = new NetconfServerDispatcherImpl.ServerChannelInitializer(serverNegotiatorFactory);
40
41         dispatch = new NetconfServerDispatcherImpl(
42                 serverChannelInitializer, nettyGroup, nettyGroup);
43     }
44
45     @After
46     public void tearDown() throws Exception {
47         hashedWheelTimer.stop();
48         nettyGroup.shutdownGracefully();
49     }
50
51     @Test
52     public void test() throws Exception {
53         InetSocketAddress addr = new InetSocketAddress("127.0.0.1", 8333);
54         ChannelFuture s = dispatch.createServer(addr);
55         s.get();
56     }
57 }