Add test that will fail #23981.

This commit is contained in:
Karsten Loesing 2017-10-25 16:45:38 +02:00
parent ebb13b12d0
commit 3a95892de3

View File

@ -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();