Skip to content

Instantly share code, notes, and snippets.

@codingtim
Last active June 8, 2020 18:48
Show Gist options
  • Save codingtim/9b3ba67625ae0c8b28df15aa8f173a99 to your computer and use it in GitHub Desktop.
Save codingtim/9b3ba67625ae0c8b28df15aa8f173a99 to your computer and use it in GitHub Desktop.
@Test
void revoked() throws IOException {
get("https://revoked.sca1a.amazontrust.com/", urlConnection -> {
assertThatExceptionOfType(SSLHandshakeException.class)
.isThrownBy(urlConnection::getResponseCode)
.withRootCauseInstanceOf(CertificateRevokedException.class);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment