summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.http.test
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2010-10-07 23:40:40 +0300
committerMatthias Sohn <matthias.sohn@sap.com>2010-10-07 23:40:40 +0300
commit2b98a878b49dedd0e5c275793698190fd281aad9 (patch)
tree96346720bbd98bc8c1a213b36eaa4e7723584202 /org.eclipse.jgit.http.test
parent7a6efe1dfcfbf0ddf4fa83e0d9d10fc9d4a3b649 (diff)
downloadjgit-2b98a878b49dedd0e5c275793698190fd281aad9.tar.gz
jgit-2b98a878b49dedd0e5c275793698190fd281aad9.zip
Fix HTTP tests
Since 858b2c92 we have a HTTP authentication implementation hence we now get different exception messages when required authentication headers are not available. This broke the HTTP tests. Change-Id: Ie08c1ec37e497c2a6f70a75f7c59f0805812a5cc Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.http.test')
-rw-r--r--org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/HttpClientTests.java4
-rw-r--r--org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/SmartClientSmartServerTest.java2
2 files changed, 3 insertions, 3 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 4cc141bb41..9c4b3ee09d 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
@@ -280,7 +280,7 @@ public class HttpClientTests extends HttpTestCase {
t.openFetch();
fail("connection opened even info/refs needs auth basic");
} catch (TransportException err) {
- String status = "401 Unauthorized";
+ String status = "authentication not supported";
String exp = dumbAuthBasicURI + ": " + status;
assertEquals(exp, err.getMessage());
}
@@ -297,7 +297,7 @@ public class HttpClientTests extends HttpTestCase {
t.openFetch();
fail("connection opened even though service disabled");
} catch (TransportException err) {
- String status = "401 Unauthorized";
+ String status = "authentication not supported";
String exp = smartAuthBasicURI + ": " + status;
assertEquals(exp, err.getMessage());
}
diff --git a/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/SmartClientSmartServerTest.java b/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/SmartClientSmartServerTest.java
index a7b51c6819..87e2555a6c 100644
--- a/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/SmartClientSmartServerTest.java
+++ b/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/SmartClientSmartServerTest.java
@@ -398,7 +398,7 @@ public class SmartClientSmartServerTest extends HttpTestCase {
t.push(NullProgressMonitor.INSTANCE, Collections.singleton(u));
fail("anonymous push incorrectly accepted without error");
} catch (TransportException e) {
- final String status = "401 Unauthorized";
+ final String status = "authentication not supported";
final String exp = remoteURI.toString() + ": " + status;
assertEquals(exp, e.getMessage());
}