|
|
@ -24,14 +24,83 @@ public class VaultTest { |
|
|
|
@BeforeEach |
|
|
|
void reset() { |
|
|
|
vlt.outputS = System.out; |
|
|
|
vlt.inputS = System.in; |
|
|
|
//vlt.inputS = System.in; |
|
|
|
} |
|
|
|
|
|
|
|
/* @Test |
|
|
|
void openCredentialMenu() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.inputS = new ByteArrayInputStream("__\n".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.credentialMenu(); |
|
|
|
assertTrue(vlt.credentialM); |
|
|
|
assertTrue(outputStream.toString().startsWith("Configure")); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void exitConfigureMenu(){ |
|
|
|
vlt.inputS = new ByteArrayInputStream("e".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.credentialMenu(); |
|
|
|
assertFalse(vlt.credentialM); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void openAddCredentialMenuItem() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.inputS = new ByteArrayInputStream("a".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.credentialMenu(); |
|
|
|
assertTrue(outputStream.toString().contains("Type")); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void openShowCredentialMenuItem() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.inputS = new ByteArrayInputStream("c".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.credentialMenu(); |
|
|
|
assertTrue(outputStream.toString().contains("Type")); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void openEditCredentialMenuItem() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.inputS = new ByteArrayInputStream("l".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.credentialMenu(); |
|
|
|
assertTrue(outputStream.toString().contains("Type")); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void addCredentialTest() { vlt.addCredential();} |
|
|
|
void addCredentialTest() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.inputS = new ByteArrayInputStream("peter\npassword".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.addCredential(); |
|
|
|
|
|
|
|
assertTrue(outputStream.toString().contains("username")); |
|
|
|
assertEquals("peter", vlt.userName); |
|
|
|
assertTrue(outputStream.toString().contains("password")); |
|
|
|
assertEquals("password",vlt.password); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void showCredential() {vlt.showCredential();} |
|
|
|
void showCredentialTest() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.inputS = new ByteArrayInputStream("1".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.showCredential(); |
|
|
|
|
|
|
|
assertTrue(outputStream.toString().contains("Type")); |
|
|
|
assertTrue(vlt.isInt); |
|
|
|
|
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.inputS = new ByteArrayInputStream("peter".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.showCredential(); |
|
|
|
|
|
|
|
assertTrue(outputStream.toString().contains("Type")); |
|
|
|
assertFalse(vlt.isInt); |
|
|
|
}*/ |
|
|
|
|
|
|
|
@Test |
|
|
|
void getAsJson() {vlt.getAsJson();} |
|
|
@ -39,7 +108,7 @@ public class VaultTest { |
|
|
|
@Test |
|
|
|
void loadFromJson() {vlt.loadFromJson();} |
|
|
|
|
|
|
|
@Test |
|
|
|
/* @Test |
|
|
|
void openConfigureMenu() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.inputS = new ByteArrayInputStream("__\n".getBytes(StandardCharsets.UTF_8)); |
|
|
@ -53,9 +122,9 @@ public class VaultTest { |
|
|
|
vlt.inputS = new ByteArrayInputStream("e".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.configure(); |
|
|
|
assertFalse(vlt.config); |
|
|
|
} |
|
|
|
}*/ |
|
|
|
|
|
|
|
@Test |
|
|
|
/* @Test |
|
|
|
void doNotExitConfigAfterWrongInput() { |
|
|
|
vlt.inputS = new ByteArrayInputStream("__\n".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.configure(); |
|
|
@ -67,9 +136,9 @@ public class VaultTest { |
|
|
|
|
|
|
|
assertThrowsExactly(NoSuchElementException.class, () -> vlt.configure()); |
|
|
|
assertTrue(outputStream.toString().startsWith("Configure:")); |
|
|
|
} |
|
|
|
}*/ |
|
|
|
|
|
|
|
@Test |
|
|
|
/* @Test |
|
|
|
void openSetPWLengthMenuItem() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.inputS = new ByteArrayInputStream("l\n7".getBytes(StandardCharsets.UTF_8)); |
|
|
@ -77,7 +146,7 @@ public class VaultTest { |
|
|
|
vlt.configure(); |
|
|
|
assertEquals(7, vlt.PWLength); |
|
|
|
assertTrue(outputStream.toString().contains("Set")); |
|
|
|
} |
|
|
|
}*/ |
|
|
|
|
|
|
|
@Test |
|
|
|
void setPWLength() { |
|
|
@ -89,14 +158,14 @@ public class VaultTest { |
|
|
|
assertTrue(outputStream.toString().contains("now:")); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
/*@Test |
|
|
|
void openSetCapitalsMenuItem() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.inputS = new ByteArrayInputStream("h\nyes".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.configure(); |
|
|
|
assertTrue(vlt.haveCapitals = true); |
|
|
|
} |
|
|
|
}*/ |
|
|
|
|
|
|
|
@Test |
|
|
|
void setCapitals() { |
|
|
@ -114,14 +183,14 @@ public class VaultTest { |
|
|
|
assertTrue(outputStream.toString().contains("don´t")); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
/*@Test |
|
|
|
void openSetSpecialCharsMenuItem() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.inputS = new ByteArrayInputStream("h\nyes".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.configure(); |
|
|
|
assertTrue(vlt.hasSpecialChars = true); |
|
|
|
} |
|
|
|
}*/ |
|
|
|
|
|
|
|
@Test |
|
|
|
void setSpecialCharTest() { |
|
|
@ -138,14 +207,14 @@ public class VaultTest { |
|
|
|
assertTrue(outputStream.toString().contains("don´t")); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
/*@Test |
|
|
|
void openSetNumbersMenuItem() { |
|
|
|
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); |
|
|
|
vlt.inputS = new ByteArrayInputStream("h\nyes".getBytes(StandardCharsets.UTF_8)); |
|
|
|
vlt.outputS = outputStream; |
|
|
|
vlt.configure(); |
|
|
|
assertTrue(vlt.hasNumbers = true); |
|
|
|
} |
|
|
|
}*/ |
|
|
|
|
|
|
|
@Test |
|
|
|
void setNumbersTest() { |
|
|
|