Remove opendaylight directory
[netconf.git] / opendaylight / netconf / netconf-netty-util / src / test / java / org / opendaylight / netconf / nettyutil / handler / ssh / authentication / LoginPasswordTest.java
diff --git a/opendaylight/netconf/netconf-netty-util/src/test/java/org/opendaylight/netconf/nettyutil/handler/ssh/authentication/LoginPasswordTest.java b/opendaylight/netconf/netconf-netty-util/src/test/java/org/opendaylight/netconf/nettyutil/handler/ssh/authentication/LoginPasswordTest.java
deleted file mode 100644 (file)
index 9dce159..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * 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.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