Skip to content

Commit 079dbe8

Browse files
pszlazakmsohn
authored andcommitted
Test advertised capabilities with protocol V0 and allow*Sha1InWant
The advertised capabilities with protocol V0 were untested leading to potential regressions when advertising what SHA1 should or should not be on the list of capabilities. Verify that allow-tip-sha1-in-want and allow-reachable-sha1-in-want are properly advertised with the allow*Sha1InWant is set in jgit.config. Change-Id: Id48af2bc19280f2dcb26aa8e8765cde8f2ce7a06 (cherry picked from commit 5583f6a)
1 parent 5b1513a commit 079dbe8

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/UploadPackTest.java

+42
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import static org.junit.Assert.assertNotNull;
1212
import static org.junit.Assert.assertThrows;
1313
import static org.junit.Assert.assertTrue;
14+
import static org.junit.Assert.fail;
1415

1516
import java.io.ByteArrayInputStream;
1617
import java.io.ByteArrayOutputStream;
@@ -563,6 +564,47 @@ private void checkUnadvertisedIfUnallowed(String configSection,
563564
assertThat(lines, hasItems("ls-refs", "fetch", "server-option"));
564565
}
565566

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+
566608
@Test
567609
public void testV2CapabilitiesAllowFilter() throws Exception {
568610
checkAdvertisedIfAllowed("uploadpack", "allowfilter", "filter");

0 commit comments

Comments
 (0)