use of com.yahoo.athenz.zts.cert.impl.HttpCertSignerFactory in project athenz by yahoo.
the class HttpCertSignerTest method testGetCACertificateResponseNull.
@Test
public void testGetCACertificateResponseNull() throws Exception {
HttpClient httpClient = Mockito.mock(HttpClient.class);
HttpCertSignerFactory certFactory = new HttpCertSignerFactory();
HttpCertSigner certSigner = (HttpCertSigner) certFactory.create();
certSigner.setHttpClient(httpClient);
ContentResponse response = Mockito.mock(ContentResponse.class);
Mockito.when(httpClient.GET("https://localhost:443/certsign/v2/x509")).thenReturn(response);
Mockito.when(response.getStatus()).thenReturn(200);
Mockito.when(response.getContentAsString()).thenReturn(null);
assertNull(certSigner.getCACertificate());
}
use of com.yahoo.athenz.zts.cert.impl.HttpCertSignerFactory in project athenz by yahoo.
the class HttpCertSignerTest method testHttpCertSignerFactory.
@Test
public void testHttpCertSignerFactory() {
HttpCertSignerFactory certFactory = new HttpCertSignerFactory();
assertNotNull(certFactory);
CertSigner certSigner = certFactory.create();
assertNotNull(certSigner);
certSigner.close();
}
use of com.yahoo.athenz.zts.cert.impl.HttpCertSignerFactory in project athenz by yahoo.
the class HttpCertSignerTest method testGetCACertificate.
@Test
public void testGetCACertificate() throws Exception {
HttpClient httpClient = Mockito.mock(HttpClient.class);
HttpCertSignerFactory certFactory = new HttpCertSignerFactory();
HttpCertSigner certSigner = (HttpCertSigner) certFactory.create();
certSigner.setHttpClient(httpClient);
ContentResponse response = Mockito.mock(ContentResponse.class);
Mockito.when(httpClient.GET("https://localhost:443/certsign/v2/x509")).thenReturn(response);
Mockito.when(response.getStatus()).thenReturn(200);
Mockito.when(response.getContentAsString()).thenReturn("{\"pem\": \"pem-value\"}");
String pem = certSigner.getCACertificate();
assertEquals(pem, "pem-value");
}
use of com.yahoo.athenz.zts.cert.impl.HttpCertSignerFactory in project athenz by yahoo.
the class HttpCertSignerTest method testGenerateX509CertificateInvalidStatus.
@Test
public void testGenerateX509CertificateInvalidStatus() throws Exception {
HttpClient httpClient = Mockito.mock(HttpClient.class);
HttpCertSignerFactory certFactory = new HttpCertSignerFactory();
HttpCertSigner certSigner = (HttpCertSigner) certFactory.create();
certSigner.setHttpClient(httpClient);
Request request = Mockito.mock(Request.class);
Mockito.when(httpClient.POST("https://localhost:443/certsign/v2/x509")).thenReturn(request);
ContentResponse response = Mockito.mock(ContentResponse.class);
Mockito.when(request.send()).thenReturn(response);
Mockito.when(response.getStatus()).thenReturn(400);
assertNull(certSigner.generateX509Certificate("csr", null, 0));
}
use of com.yahoo.athenz.zts.cert.impl.HttpCertSignerFactory in project athenz by yahoo.
the class HttpCertSignerTest method testGetSSHCertificate.
@Test
public void testGetSSHCertificate() throws Exception {
HttpClient httpClient = Mockito.mock(HttpClient.class);
HttpCertSignerFactory certFactory = new HttpCertSignerFactory();
HttpCertSigner certSigner = (HttpCertSigner) certFactory.create();
certSigner.setHttpClient(httpClient);
ContentResponse response = Mockito.mock(ContentResponse.class);
Mockito.when(httpClient.GET("https://localhost:443/certsign/v2/ssh")).thenReturn(response);
Mockito.when(response.getStatus()).thenReturn(200);
Mockito.when(response.getContentAsString()).thenReturn("{\"certs\": [{\"type\":\"user\",\"opensshkey\":\"user-key\"},{\"type\":\"host\",\"opensshkey\":\"host-key\"}]}");
String pem = certSigner.getSSHCertificate("user");
assertNotNull(pem);
assertEquals(pem, "user-key");
}
Aggregations