Skip to content

Commit

Permalink
Fix Pebble IT after Pebble update
Browse files Browse the repository at this point in the history
  • Loading branch information
shred committed Jan 26, 2025
1 parent 0364ace commit f6a3bd6
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,17 @@ public void testMetadata() throws AcmeException {
.isEqualTo(URI.create("data:text/plain,Do%20what%20thou%20wilt"));
assertThat(meta.getWebsite()).isEmpty();
assertThat(meta.getCaaIdentities()).isEmpty();
assertThat(meta.isExternalAccountRequired()).isFalse();
assertThat(meta.getProfiles()).contains("default", "shortlived");
assertThat(meta.getProfileDescription("default")).contains("The profile you know and love");
assertThat(meta.getProfileDescription("shortlived")).contains("A short-lived cert profile, without actual enforcement");
assertThat(meta.getProfileDescription("paid")).isEmpty();
assertThatJson(meta.getJSON().toString()).isEqualTo("{"
+ "'externalAccountRequired': false,"
+ "'profiles': {"
+ "'default': 'The profile you know and love',"
+ "'shortlived': 'A short-lived cert profile, without actual enforcement'"
+ "},"
+ "'termsOfService': 'data:text/plain,Do%20what%20thou%20wilt',"
+ "'externalAccountRequired': false"
+ "}");
Expand Down

0 comments on commit f6a3bd6

Please sign in to comment.