X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-netty-util%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fnettyutil%2Fhandler%2Fssh%2Fauthentication%2FLoginPasswordTest.java;fp=opendaylight%2Fnetconf%2Fnetconf-netty-util%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fnettyutil%2Fhandler%2Fssh%2Fauthentication%2FLoginPasswordTest.java;h=01df1e3fcec4e201deb1b4dfa8179151a98aecd9;hb=2f097c374a16b818f50f945cafc2461b9c5b8321;hp=0000000000000000000000000000000000000000;hpb=3083a38411a2b24565323771a9444a661aba5fbd;p=controller.git diff --git a/opendaylight/netconf/netconf-netty-util/src/test/java/org/opendaylight/controller/netconf/nettyutil/handler/ssh/authentication/LoginPasswordTest.java b/opendaylight/netconf/netconf-netty-util/src/test/java/org/opendaylight/controller/netconf/nettyutil/handler/ssh/authentication/LoginPasswordTest.java new file mode 100644 index 0000000000..01df1e3fce --- /dev/null +++ b/opendaylight/netconf/netconf-netty-util/src/test/java/org/opendaylight/controller/netconf/nettyutil/handler/ssh/authentication/LoginPasswordTest.java @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + +package org.opendaylight.controller.netconf.nettyutil.handler.ssh.authentication; + +import static org.junit.Assert.assertEquals; +import static org.mockito.Mockito.doNothing; +import static org.mockito.Mockito.doReturn; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.verify; + +import org.apache.sshd.ClientSession; +import org.apache.sshd.client.future.AuthFuture; +import org.junit.Test; + +public class LoginPasswordTest { + + @Test + public void testLoginPassword() throws Exception { + final LoginPassword loginPassword = new LoginPassword("user", "pwd"); + assertEquals("user", loginPassword.getUsername()); + + final ClientSession session = mock(ClientSession.class); + doNothing().when(session).addPasswordIdentity("pwd"); + doReturn(mock(AuthFuture.class)).when(session).auth(); + loginPassword.authenticate(session); + + verify(session).addPasswordIdentity("pwd"); + verify(session).auth(); + } +} \ No newline at end of file