summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.http.test/tst/org/eclipse
diff options
context:
space:
mode:
authorChristian Halstrick <christian.halstrick@sap.com>2011-04-12 17:21:27 +0200
committerChristian Halstrick <christian.halstrick@sap.com>2011-04-21 10:27:04 +0200
commit0359184f4ed54eb5b880f66d9d514afa10d9fc4a (patch)
tree0bd2ca1e21f4e58308aa322c6f6a00817a86435d /org.eclipse.jgit.http.test/tst/org/eclipse
parent1a867d10b974cab4d43d77f5b392f4f07807ebd8 (diff)
downloadjgit-0359184f4ed54eb5b880f66d9d514afa10d9fc4a.tar.gz
jgit-0359184f4ed54eb5b880f66d9d514afa10d9fc4a.zip
Enabled unit tests in HttpClientTests
Change-Id: I92ae117f1dcfc569e27c66c191e090a60fbe2bb6 Signed-off-by: Christian Halstrick <christian.halstrick@sap.com>
Diffstat (limited to 'org.eclipse.jgit.http.test/tst/org/eclipse')
-rw-r--r--org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/HttpClientTests.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/HttpClientTests.java b/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/HttpClientTests.java
index c48d9b10fa..35989e88eb 100644
--- a/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/HttpClientTests.java
+++ b/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/HttpClientTests.java
@@ -81,6 +81,8 @@ import org.eclipse.jgit.transport.URIish;
import org.eclipse.jgit.transport.UsernamePasswordCredentialsProvider;
import org.eclipse.jgit.transport.resolver.RepositoryResolver;
import org.eclipse.jgit.transport.resolver.ServiceNotEnabledException;
+import org.junit.Before;
+import org.junit.Test;
public class HttpClientTests extends HttpTestCase {
private TestRepository<FileRepository> remoteRepository;
@@ -93,6 +95,7 @@ public class HttpClientTests extends HttpTestCase {
private URIish smartAuthBasicURI;
+ @Before
public void setUp() throws Exception {
super.setUp();
@@ -149,6 +152,7 @@ public class HttpClientTests extends HttpTestCase {
return db.getDirectory().getName();
}
+ @Test
public void testRepositoryNotFound_Dumb() throws Exception {
URIish uri = toURIish("/dumb.none/not-found");
Repository dst = createBareRepository();
@@ -167,6 +171,7 @@ public class HttpClientTests extends HttpTestCase {
}
}
+ @Test
public void testRepositoryNotFound_Smart() throws Exception {
URIish uri = toURIish("/smart.none/not-found");
Repository dst = createBareRepository();
@@ -185,6 +190,7 @@ public class HttpClientTests extends HttpTestCase {
}
}
+ @Test
public void testListRemote_Dumb_DetachedHEAD() throws Exception {
Repository src = remoteRepository.getRepository();
RefUpdate u = src.updateRef(Constants.HEAD, true);
@@ -209,6 +215,7 @@ public class HttpClientTests extends HttpTestCase {
assertEquals(Q, head.getObjectId());
}
+ @Test
public void testListRemote_Dumb_NoHEAD() throws Exception {
FileRepository src = remoteRepository.getRepository();
File headref = new File(src.getDirectory(), Constants.HEAD);
@@ -231,6 +238,7 @@ public class HttpClientTests extends HttpTestCase {
assertNull("has no " + Constants.HEAD, head);
}
+ @Test
public void testListRemote_Smart_DetachedHEAD() throws Exception {
Repository src = remoteRepository.getRepository();
RefUpdate u = src.updateRef(Constants.HEAD, true);
@@ -255,6 +263,7 @@ public class HttpClientTests extends HttpTestCase {
assertEquals(Q, head.getObjectId());
}
+ @Test
public void testListRemote_Smart_WithQueryParameters() throws Exception {
URIish myURI = toURIish("/snone/do?r=1&p=test.git");
Repository dst = createBareRepository();
@@ -283,6 +292,7 @@ public class HttpClientTests extends HttpTestCase {
assertEquals(404, info.getStatus());
}
+ @Test
public void testListRemote_Dumb_NeedsAuth() throws Exception {
Repository dst = createBareRepository();
Transport t = Transport.open(dst, dumbAuthBasicURI);
@@ -300,6 +310,7 @@ public class HttpClientTests extends HttpTestCase {
}
}
+ @Test
public void testListRemote_Dumb_Auth() throws Exception {
Repository dst = createBareRepository();
Transport t = Transport.open(dst, dumbAuthBasicURI);
@@ -325,6 +336,7 @@ public class HttpClientTests extends HttpTestCase {
}
}
+ @Test
public void testListRemote_Smart_UploadPackNeedsAuth() throws Exception {
Repository dst = createBareRepository();
Transport t = Transport.open(dst, smartAuthBasicURI);
@@ -342,6 +354,7 @@ public class HttpClientTests extends HttpTestCase {
}
}
+ @Test
public void testListRemote_Smart_UploadPackDisabled() throws Exception {
FileRepository src = remoteRepository.getRepository();
final FileBasedConfig cfg = src.getConfig();