|
11 | 11 | import static org.junit.Assert.assertNotNull;
|
12 | 12 | import static org.junit.Assert.assertThrows;
|
13 | 13 | import static org.junit.Assert.assertTrue;
|
| 14 | +import static org.junit.Assert.fail; |
14 | 15 |
|
15 | 16 | import java.io.ByteArrayInputStream;
|
16 | 17 | import java.io.ByteArrayOutputStream;
|
@@ -563,6 +564,47 @@ private void checkUnadvertisedIfUnallowed(String configSection,
|
563 | 564 | assertThat(lines, hasItems("ls-refs", "fetch", "server-option"));
|
564 | 565 | }
|
565 | 566 |
|
| 567 | + @Test |
| 568 | + public void testV0CapabilitiesAllowAnySha1InWant() throws Exception { |
| 569 | + checkAvertisedCapabilityProtocolV0IfAllowed("uploadpack", |
| 570 | + "allowanysha1inwant", "allow-reachable-sha1-in-want", |
| 571 | + "allow-tip-sha1-in-want"); |
| 572 | + } |
| 573 | + |
| 574 | + @Test |
| 575 | + public void testV0CapabilitiesAllowReachableSha1InWant() throws Exception { |
| 576 | + checkAvertisedCapabilityProtocolV0IfAllowed("uploadpack", |
| 577 | + "allowreachablesha1inwant", "allow-reachable-sha1-in-want"); |
| 578 | + } |
| 579 | + |
| 580 | + @Test |
| 581 | + public void testV0CapabilitiesAllowTipSha1InWant() throws Exception { |
| 582 | + checkAvertisedCapabilityProtocolV0IfAllowed("uploadpack", |
| 583 | + "allowtipsha1inwant", "allow-tip-sha1-in-want"); |
| 584 | + } |
| 585 | + |
| 586 | + private void checkAvertisedCapabilityProtocolV0IfAllowed( |
| 587 | + String configSection, String configName, String... capabilities) |
| 588 | + throws Exception { |
| 589 | + server.getConfig().setBoolean(configSection, null, configName, true); |
| 590 | + ByteArrayInputStream recvStream = uploadPackSetup( |
| 591 | + TransferConfig.ProtocolVersion.V0.version(), null, |
| 592 | + PacketLineIn.end()); |
| 593 | + PacketLineIn pckIn = new PacketLineIn(recvStream); |
| 594 | + |
| 595 | + String line; |
| 596 | + while (!PacketLineIn.isEnd((line = pckIn.readString()))) { |
| 597 | + if (line.contains("capabilities")) { |
| 598 | + List<String> linesCapabilities = Arrays.asList(line.substring( |
| 599 | + line.indexOf(" ", line.indexOf("capabilities")) + 1) |
| 600 | + .split(" ")); |
| 601 | + assertThat(linesCapabilities, hasItems(capabilities)); |
| 602 | + return; |
| 603 | + } |
| 604 | + } |
| 605 | + fail("Server side protocol did not contain any capabilities'"); |
| 606 | + } |
| 607 | + |
566 | 608 | @Test
|
567 | 609 | public void testV2CapabilitiesAllowFilter() throws Exception {
|
568 | 610 | checkAdvertisedIfAllowed("uploadpack", "allowfilter", "filter");
|
|
0 commit comments