-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit introduces tests to verify whether alias passwords are mandatory for different keystore types. The results of the tests are as follows: For JKS keystore type, an alias password is required. For P12 keystore type, an alias password is not required.
- Loading branch information
1 parent
7482a7b
commit a0e4809
Showing
2 changed files
with
90 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 85 additions & 0 deletions
85
certificate-generator/src/test/java/me/escoffier/certs/GeneratedKeyStoreTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package me.escoffier.certs; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junitpioneer.jupiter.resource.Dir; | ||
|
||
import java.io.File; | ||
import java.nio.file.Path; | ||
import java.security.KeyStore; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
public class GeneratedKeyStoreTest { | ||
|
||
|
||
@Test | ||
void verifyIfJKSKeyStoreSupportAliasPassword(@Dir Path dir) throws Exception { | ||
CertificateRequest request = new CertificateRequest() | ||
.withFormat(Format.JKS) | ||
.withPassword("secret") | ||
.withName("jks-alias-verif") | ||
.withAlias("alias1", new AliasRequest().withPassword("password-alias1")) | ||
.withAlias("alias2", new AliasRequest().withPassword("password-alias2")); | ||
|
||
CertificateGenerator generator = new CertificateGenerator(dir, true); | ||
generator.generate(request); | ||
|
||
|
||
KeyStore ks = KeyStore.getInstance("JKS"); | ||
File jks = new File(dir.toFile(), "jks-alias-verif-keystore.jks"); | ||
try (var fis = new java.io.FileInputStream(jks)) { | ||
ks.load(fis, "secret".toCharArray()); | ||
} | ||
|
||
assertThat(ks.containsAlias("jks-alias-verif")).isTrue(); | ||
assertThat(ks.containsAlias("alias1")).isTrue(); | ||
assertThat(ks.containsAlias("alias2")).isTrue(); | ||
|
||
// Verify the certs | ||
assertThat(ks.getCertificate("jks-alias-verif")).isNotNull(); | ||
assertThat(ks.getCertificate("alias1")).isNotNull(); | ||
assertThat(ks.getCertificate("alias2")).isNotNull(); | ||
|
||
// Verify the keys | ||
assertThat(ks.getKey("jks-alias-verif", "secret".toCharArray())).isNotNull(); | ||
assertThat(ks.getKey("alias1", "password-alias1".toCharArray())).isNotNull(); | ||
assertThat(ks.getKey("alias2", "password-alias2".toCharArray())).isNotNull(); | ||
} | ||
|
||
@Test | ||
void verifyIfP12SKeyStoreSupportAliasPassword(@Dir Path dir) throws Exception { | ||
CertificateRequest request = new CertificateRequest() | ||
.withFormat(Format.PKCS12) | ||
.withPassword("secret") | ||
.withName("p12-alias-verif") | ||
.withAlias("alias1", new AliasRequest().withPassword("password-alias1")) | ||
.withAlias("alias2", new AliasRequest()); | ||
|
||
CertificateGenerator generator = new CertificateGenerator(dir, true); | ||
generator.generate(request); | ||
|
||
|
||
KeyStore ks = KeyStore.getInstance("PKCS12"); | ||
File jks = new File(dir.toFile(), "p12-alias-verif-keystore.p12"); | ||
try (var fis = new java.io.FileInputStream(jks)) { | ||
ks.load(fis, "secret".toCharArray()); | ||
} | ||
|
||
assertThat(ks.containsAlias("p12-alias-verif")).isTrue(); | ||
assertThat(ks.containsAlias("alias1")).isTrue(); | ||
assertThat(ks.containsAlias("alias2")).isTrue(); | ||
|
||
// Verify the certs | ||
assertThat(ks.getCertificate("p12-alias-verif")).isNotNull(); | ||
assertThat(ks.getCertificate("alias1")).isNotNull(); | ||
assertThat(ks.getCertificate("alias2")).isNotNull(); | ||
|
||
// Verify the keys | ||
assertThat(ks.getKey("p12-alias-verif", "secret".toCharArray())).isNotNull(); | ||
assertThat(ks.getKey("alias1", "password-alias1".toCharArray())).isNotNull(); | ||
assertThat(ks.getKey("alias2", null)).isNotNull(); | ||
|
||
|
||
} | ||
|
||
} |