From 2b98a878b49dedd0e5c275793698190fd281aad9 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Thu, 7 Oct 2010 23:40:40 +0300 Subject: [PATCH] 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 --- .../tst/org/eclipse/jgit/http/test/HttpClientTests.java | 4 ++-- .../eclipse/jgit/http/test/SmartClientSmartServerTest.java | 2 +- 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()); } -- 2.39.5