mirror of
https://github.com/hierynomus/sshj.git
synced 2025-12-06 23:30:55 +03:00
Upgraded Mockito, and added message and retries to ConsolePasswordFinder
* Upgraded Mockito to 2.8.47 (latest) * Added extension to allow mocking final classes * ConsolePasswordFinder allows custom message and number of retries * Added builder for ConsolePasswordFinder * Added more unit tests
This commit is contained in:
committed by
Jeroen van Erp
parent
303c03061c
commit
aed3decf1d
@@ -36,7 +36,7 @@ dependencies {
|
||||
|
||||
testCompile "junit:junit:4.11"
|
||||
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
|
||||
testCompile "org.mockito:mockito-core:1.9.5"
|
||||
testCompile "org.mockito:mockito-core:2.8.47"
|
||||
testCompile "org.apache.sshd:sshd-core:1.2.0"
|
||||
testRuntime "ch.qos.logback:logback-classic:1.1.2"
|
||||
testCompile 'org.glassfish.grizzly:grizzly-http-server:2.3.17'
|
||||
|
||||
@@ -16,37 +16,96 @@
|
||||
package net.schmizz.sshj.userauth.password;
|
||||
|
||||
import java.io.Console;
|
||||
import java.util.IllegalFormatException;
|
||||
|
||||
/** A PasswordFinder that reads a password from a console */
|
||||
public class ConsolePasswordFinder implements PasswordFinder {
|
||||
|
||||
private final Console console;
|
||||
private final String promptFormat;
|
||||
private final int maxTries;
|
||||
|
||||
/**
|
||||
* Initializes with the System Console, which will be null if not run from an interactive shell.
|
||||
*/
|
||||
public ConsolePasswordFinder() {
|
||||
this(System.console());
|
||||
private int numTries;
|
||||
|
||||
public static ConsolePasswordFinderBuilder builder() {
|
||||
return new ConsolePasswordFinderBuilder();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param console the console to read the password from. May be null.
|
||||
*/
|
||||
public ConsolePasswordFinder(Console console) {
|
||||
public ConsolePasswordFinder(Console console, String promptFormat, int maxTries) {
|
||||
this.console = console;
|
||||
this.promptFormat = promptFormat;
|
||||
this.maxTries = maxTries;
|
||||
this.numTries = 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public char[] reqPassword(Resource<?> resource) {
|
||||
numTries++;
|
||||
if (console == null) {
|
||||
// the request cannot be serviced
|
||||
return null;
|
||||
}
|
||||
return console.readPassword("Enter passphrase for %s:", resource.toString());
|
||||
return console.readPassword(promptFormat, resource.toString());
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean shouldRetry(Resource<?> resource) {
|
||||
return true;
|
||||
return numTries < maxTries;
|
||||
}
|
||||
|
||||
public static class ConsolePasswordFinderBuilder {
|
||||
private Console console;
|
||||
private String promptFormat;
|
||||
private int maxTries;
|
||||
|
||||
/** Builder constructor should only be called from parent class */
|
||||
private ConsolePasswordFinderBuilder() {
|
||||
console = System.console();
|
||||
promptFormat = "Enter passphrase for %s:";
|
||||
maxTries = 3;
|
||||
}
|
||||
|
||||
public ConsolePasswordFinder build() {
|
||||
return new ConsolePasswordFinder(console, promptFormat, maxTries);
|
||||
}
|
||||
|
||||
public ConsolePasswordFinderBuilder setConsole(Console console) {
|
||||
this.console = console;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Console getConsole() {
|
||||
return console;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param promptFormat a StringFormatter string that may contain up to one "%s"
|
||||
*/
|
||||
public ConsolePasswordFinderBuilder setPromptFormat(String promptFormat) {
|
||||
checkFormatString(promptFormat);
|
||||
this.promptFormat = promptFormat;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getPromptFormat() {
|
||||
return promptFormat;
|
||||
}
|
||||
|
||||
public ConsolePasswordFinderBuilder setMaxTries(int maxTries) {
|
||||
this.maxTries = maxTries;
|
||||
return this;
|
||||
}
|
||||
|
||||
public int getMaxTries() {
|
||||
return maxTries;
|
||||
}
|
||||
|
||||
private static void checkFormatString(String promptFormat) {
|
||||
try {
|
||||
String.format(promptFormat, "");
|
||||
} catch (IllegalFormatException e) {
|
||||
throw new IllegalArgumentException("promptFormat must have no more than one %s and no other markers", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,18 +19,69 @@ import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.mockito.Mockito;
|
||||
|
||||
import java.io.Console;
|
||||
|
||||
public class TestConsolePasswordFinder {
|
||||
|
||||
/*
|
||||
* Note that Mockito 1.9 cannot mock Console because it is a final class,
|
||||
* so there are no other tests.
|
||||
*/
|
||||
@Test
|
||||
public void testReqPassword() {
|
||||
char[] expectedPassword = "password".toCharArray();
|
||||
|
||||
Console console = Mockito.mock(Console.class);
|
||||
Mockito.when(console.readPassword(Mockito.anyString(), Mockito.any()))
|
||||
.thenReturn(expectedPassword);
|
||||
|
||||
Resource resource = Mockito.mock(Resource.class);
|
||||
char[] password = ConsolePasswordFinder.builder()
|
||||
.setConsole(console)
|
||||
.build()
|
||||
.reqPassword(resource);
|
||||
|
||||
Assert.assertArrayEquals("Password should match mocked return value",
|
||||
expectedPassword, password);
|
||||
Mockito.verifyNoMoreInteractions(resource);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testReqPasswordNullConsole() {
|
||||
char[] password = new ConsolePasswordFinder(null)
|
||||
.reqPassword(Mockito.mock(Resource.class));
|
||||
Resource<?> resource = Mockito.mock(Resource.class);
|
||||
char[] password = ConsolePasswordFinder.builder()
|
||||
.setConsole(null)
|
||||
.build()
|
||||
.reqPassword(resource);
|
||||
|
||||
Assert.assertNull("Password should be null with null console", password);
|
||||
Mockito.verifyNoMoreInteractions(resource);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testShouldRetry() {
|
||||
Resource<String> resource = new PrivateKeyStringResource("");
|
||||
ConsolePasswordFinder finder = ConsolePasswordFinder.builder()
|
||||
.setConsole(null)
|
||||
.setMaxTries(1)
|
||||
.build();
|
||||
Assert.assertTrue("Should allow a retry at first", finder.shouldRetry(resource));
|
||||
|
||||
finder.reqPassword(resource);
|
||||
Assert.assertFalse("Should stop allowing retries after one interaction", finder.shouldRetry(resource));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPromptFormat() {
|
||||
// expecting no Exceptions
|
||||
ConsolePasswordFinder.builder().setPromptFormat("");
|
||||
ConsolePasswordFinder.builder().setPromptFormat("%s");
|
||||
}
|
||||
|
||||
@Test(expected = IllegalArgumentException.class)
|
||||
public void testPromptFormatTooManyMarkers() {
|
||||
ConsolePasswordFinder.builder().setPromptFormat("%s%s");
|
||||
}
|
||||
|
||||
@Test(expected = IllegalArgumentException.class)
|
||||
public void testPromptFormatWrongMarkerType() {
|
||||
ConsolePasswordFinder.builder().setPromptFormat("%d");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
# incubating feature to allow mocking final classes
|
||||
mock-maker-inline
|
||||
Reference in New Issue
Block a user