use of com.venafi.vcert.sdk.connectors.cloud.domain.CertificateIssuingTemplate.AllowedKeyType in project vcert-java by Venafi.
the class CloudConnectorTest method requestCertificate.
@Test
void requestCertificate() throws VCertException {
Security.addProvider(new BouncyCastleProvider());
String apiKey = "12345678-1234-1234-1234-123456789012";
CertificateIssuingTemplate cit = new CertificateIssuingTemplate();
cit.id("15c7e3f0-ff0a-11e9-a3f0-2b5db8116980");
cit.keyTypes(Arrays.asList(new AllowedKeyType("RSA", Arrays.asList(2048))));
cit.keyReuse(true);
cit.subjectCNRegexes(Arrays.asList("^random name$", "^.*.example.com$", "^.*.example.org$", "^.*.example.net$", "^.*.invalid$", "^.*.local$", "^.*.localhost$", "^.*.test$"));
cit.subjectORegexes(Arrays.asList("^.*$"));
cit.subjectOURegexes(Arrays.asList("^.*$"));
cit.subjectSTRegexes(Arrays.asList());
cit.subjectLRegexes(Arrays.asList());
cit.subjectCValues(Arrays.asList());
cit.sanDnsNameRegexes(Arrays.asList());
Application application = new Application();
application.id("d3d7e270-545b-11eb-a494-893c4e1e4fad");
when(cloud.applicationByName(eq("test_app"), eq(apiKey))).thenReturn(application);
when(cloud.certificateIssuingTemplateByAppNameAndCitAlias(eq("test_app"), eq("test_zone"), eq(apiKey))).thenReturn(cit);
// todo:
when(cloud.certificateRequest(eq(apiKey), any(CloudConnector.CertificateRequestsPayload.class))).thenReturn(new CloudConnector.CertificateRequestsResponse().certificateRequests(singletonList(new CloudConnector.CertificateRequestsResponseData().id("jackpot"))));
CertificateRequest request = new CertificateRequest().subject(new CertificateRequest.PKIXName().commonName("random name").organization(singletonList("Venafi, Inc.")).organizationalUnit(singletonList("Automated Tests")));
final Authentication auth = new Authentication(null, null, apiKey);
classUnderTest.authenticate(auth);
ZoneConfiguration zoneConfig = classUnderTest.readZoneConfiguration("test_app\\test_zone");
classUnderTest.generateRequest(zoneConfig, request);
String actual = classUnderTest.requestCertificate(request, zoneConfig);
assertThat(actual).isEqualTo("jackpot");
}
Aggregations