/* * 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(); } }