mirror of
https://github.com/torproject/collector.git
synced 2024-11-27 03:10:28 +00:00
Add test that will fail #23981.
This commit is contained in:
parent
ebb13b12d0
commit
3a95892de3
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user