Merge "Remove raw references to Map in XSQL"
[controller.git] / opendaylight / netconf / netconf-client / src / test / java / org / opendaylight / controller / netconf / client / NetconfClientSessionNegotiatorFactoryTest.java
1 /*
2  * Copyright (c) 2014 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.client;
10
11 import static org.junit.Assert.assertNotNull;
12 import static org.mockito.Mockito.doReturn;
13 import static org.mockito.Mockito.mock;
14
15 import com.google.common.base.Optional;
16 import io.netty.channel.Channel;
17 import io.netty.util.HashedWheelTimer;
18 import io.netty.util.Timer;
19 import io.netty.util.concurrent.Promise;
20 import org.junit.Test;
21 import org.opendaylight.controller.netconf.util.messages.NetconfHelloMessageAdditionalHeader;
22 import org.opendaylight.protocol.framework.SessionListenerFactory;
23 import org.opendaylight.protocol.framework.SessionNegotiator;
24
25 public class NetconfClientSessionNegotiatorFactoryTest {
26     @Test
27     public void testGetSessionNegotiator() throws Exception {
28         NetconfClientSessionListener sessionListener = mock(NetconfClientSessionListener.class);
29         Timer timer = new HashedWheelTimer();
30         SessionListenerFactory<NetconfClientSessionListener> listenerFactory = mock(SessionListenerFactory.class);
31         doReturn(sessionListener).when(listenerFactory).getSessionListener();
32
33         Channel channel = mock(Channel.class);
34         Promise<NetconfClientSession> promise = mock(Promise.class);
35         NetconfClientSessionNegotiatorFactory negotiatorFactory = new NetconfClientSessionNegotiatorFactory(timer,
36                 Optional.<NetconfHelloMessageAdditionalHeader>absent(), 200L);
37
38         SessionNegotiator<?> sessionNegotiator = negotiatorFactory.getSessionNegotiator(listenerFactory, channel, promise);
39         assertNotNull(sessionNegotiator);
40     }
41 }