Finish bumping to yangtools 2.1.8
[netconf.git] / netconf / mdsal-netconf-ssh / src / test / java / org / opendaylight / netconf / netty / SSHTest.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.netconf.netty;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertFalse;
13 import static org.junit.Assert.assertTrue;
14
15 import com.google.common.base.Stopwatch;
16 import io.netty.bootstrap.Bootstrap;
17 import io.netty.channel.ChannelInitializer;
18 import io.netty.channel.EventLoopGroup;
19 import io.netty.channel.nio.NioEventLoopGroup;
20 import io.netty.channel.socket.nio.NioSocketChannel;
21 import io.netty.util.HashedWheelTimer;
22 import java.io.File;
23 import java.net.InetSocketAddress;
24 import java.nio.file.Files;
25 import java.util.concurrent.ExecutorService;
26 import java.util.concurrent.Executors;
27 import java.util.concurrent.ScheduledExecutorService;
28 import java.util.concurrent.TimeUnit;
29 import org.apache.sshd.common.util.security.SecurityUtils;
30 import org.junit.AfterClass;
31 import org.junit.BeforeClass;
32 import org.junit.Test;
33 import org.opendaylight.netconf.netty.EchoClientHandler.State;
34 import org.opendaylight.netconf.nettyutil.handler.ssh.authentication.LoginPasswordHandler;
35 import org.opendaylight.netconf.nettyutil.handler.ssh.client.AsyncSshHandler;
36 import org.opendaylight.netconf.ssh.SshProxyServer;
37 import org.opendaylight.netconf.ssh.SshProxyServerConfigurationBuilder;
38 import org.opendaylight.netconf.util.NetconfConfiguration;
39 import org.slf4j.Logger;
40 import org.slf4j.LoggerFactory;
41
42 public class SSHTest {
43     private static final Logger LOG = LoggerFactory.getLogger(SSHTest.class);
44     public static final String AHOJ = "ahoj\n";
45
46     private static EventLoopGroup nettyGroup;
47     private static HashedWheelTimer hashedWheelTimer;
48     private static ExecutorService nioExec;
49     private static ScheduledExecutorService minaTimerEx;
50
51     @BeforeClass
52     public static void setUp() throws Exception {
53         hashedWheelTimer = new HashedWheelTimer();
54         nettyGroup = new NioEventLoopGroup();
55         nioExec = Executors.newFixedThreadPool(1);
56         minaTimerEx = Executors.newScheduledThreadPool(1);
57     }
58
59     @AfterClass
60     public static void tearDown() throws Exception {
61         hashedWheelTimer.stop();
62         nettyGroup.shutdownGracefully().await(5, TimeUnit.SECONDS);
63         minaTimerEx.shutdownNow();
64         nioExec.shutdownNow();
65     }
66
67     @Test
68     public void test() throws Exception {
69         File sshKeyPair = Files.createTempFile("sshKeyPair", ".pem").toFile();
70         sshKeyPair.deleteOnExit();
71         new Thread(new EchoServer(), "EchoServer").start();
72
73         final InetSocketAddress addr = new InetSocketAddress("127.0.0.1", 10831);
74         final SshProxyServer sshProxyServer = new SshProxyServer(minaTimerEx, nettyGroup, nioExec);
75         sshProxyServer.bind(new SshProxyServerConfigurationBuilder()
76                 .setBindingAddress(addr).setLocalAddress(NetconfConfiguration.NETCONF_LOCAL_ADDRESS)
77                 .setAuthenticator((username, password) -> true)
78                 .setKeyPairProvider(SecurityUtils.createGeneratorHostKeyProvider(sshKeyPair.toPath()))
79                 .setIdleTimeout(Integer.MAX_VALUE).createSshProxyServerConfiguration());
80
81         final EchoClientHandler echoClientHandler = connectClient(addr);
82
83         Stopwatch stopwatch = Stopwatch.createStarted();
84         while (echoClientHandler.isConnected() == false && stopwatch.elapsed(TimeUnit.SECONDS) < 30) {
85             Thread.sleep(500);
86         }
87         assertTrue(echoClientHandler.isConnected());
88         LOG.info("connected, writing to client");
89         echoClientHandler.write(AHOJ);
90
91         // check that server sent back the same string
92         stopwatch = stopwatch.reset().start();
93         while (echoClientHandler.read().endsWith(AHOJ) == false && stopwatch.elapsed(TimeUnit.SECONDS) < 30) {
94             Thread.sleep(500);
95         }
96
97         try {
98             final String read = echoClientHandler.read();
99             assertTrue(read + " should end with " + AHOJ, read.endsWith(AHOJ));
100         } finally {
101             LOG.info("Closing socket");
102             sshProxyServer.close();
103         }
104     }
105
106     public EchoClientHandler connectClient(final InetSocketAddress address) {
107         final EchoClientHandler echoClientHandler = new EchoClientHandler();
108         final ChannelInitializer<NioSocketChannel> channelInitializer = new ChannelInitializer<NioSocketChannel>() {
109             @Override
110             public void initChannel(final NioSocketChannel ch) throws Exception {
111                 ch.pipeline().addFirst(AsyncSshHandler.createForNetconfSubsystem(new LoginPasswordHandler("a", "a")));
112                 ch.pipeline().addLast(echoClientHandler);
113             }
114         };
115         final Bootstrap b = new Bootstrap();
116
117         b.group(nettyGroup)
118                 .channel(NioSocketChannel.class)
119                 .handler(channelInitializer);
120
121         // Start the client.
122         b.connect(address).addListener(echoClientHandler);
123         return echoClientHandler;
124     }
125
126     @Test
127     public void testClientWithoutServer() throws Exception {
128         final InetSocketAddress address = new InetSocketAddress(12345);
129         final EchoClientHandler echoClientHandler = connectClient(address);
130         final Stopwatch stopwatch = Stopwatch.createStarted();
131         while (echoClientHandler.getState() == State.CONNECTING && stopwatch.elapsed(TimeUnit.SECONDS) < 5) {
132             Thread.sleep(100);
133         }
134         assertFalse(echoClientHandler.isConnected());
135         assertEquals(State.FAILED_TO_CONNECT, echoClientHandler.getState());
136     }
137
138 }