Package org.apache.sshd

Source Code of org.apache.sshd.SshServerTest

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.sshd;

import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;

import org.apache.sshd.util.BaseTest;
import org.apache.sshd.util.BogusPasswordAuthenticator;
import org.apache.sshd.util.EchoShellFactory;
import org.apache.sshd.util.Utils;
import org.junit.Test;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertTrue;

/**
* @author Kohsuke Kawaguchi
* @author Michael Heemskerk
*/
public class SshServerTest extends BaseTest {

    @Test
    public void stopMethodShouldBeIdempotent() throws Exception {
        SshServer sshd = new SshServer();
        sshd.stop();
        sshd.stop();
        sshd.stop();
    }

    @Test
    public void testExecutorShutdownFalse() throws Exception {
        ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();

        SshServer sshd = createTestServer();
        sshd.setScheduledExecutorService(executorService);

        sshd.start();
        sshd.stop();

        assertFalse(executorService.isShutdown());
    }

    @Test
    public void testExecutorShutdownTrue() throws Exception {
        ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();

        SshServer sshd = createTestServer();
        sshd.setScheduledExecutorService(executorService, true);

        sshd.start();
        sshd.stop();

        assertTrue(executorService.isShutdown());
    }

    @Test
    public void testDynamicPort() throws Exception {
        SshServer sshd = createTestServer();
        sshd.setHost("localhost");
        sshd.start();

        assertNotEquals(0, sshd.getPort());

        sshd.stop();
    }


    private SshServer createTestServer() {
        SshServer sshd = SshServer.setUpDefaultServer();
        sshd.setKeyPairProvider(Utils.createTestHostKeyProvider());
        sshd.setShellFactory(new EchoShellFactory());
        sshd.setPasswordAuthenticator(new BogusPasswordAuthenticator());

        return sshd;
    }
}
TOP

Related Classes of org.apache.sshd.SshServerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.