Commit 3a95892d authored by Karsten Loesing's avatar Karsten Loesing
Browse files

Add test that will fail #23981.

parent ebb13b12
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -439,6 +439,20 @@ public class SanitizedBridgesWriterTest {
        + "family line.", this.parsedServerDescriptors.isEmpty());
  }

  @Test
  public void testServerDescriptorPublishedLineAfterFingerprintLine()
      throws Exception {
    this.configuration.setProperty(Key.ReplaceIpAddressesWithHashes.name(),
        "true");
    String fingerprintLine =
        "fingerprint 46D4 A711 97B8 FA51 5A82 6C6B 017C 522F E264 655B";
    this.defaultServerDescriptorBuilder.removeLine(fingerprintLine);
    this.defaultServerDescriptorBuilder.insertBeforeLineStartingWith(
        "published ", Arrays.asList(fingerprintLine));
    this.runTest();
    assertFalse(this.parsedServerDescriptors.isEmpty());
  }

  @Test
  public void testExtraInfoDescriptorDefault() throws Exception {
    this.runTest();