blob: 006a01e7485a910cad91151ec3bd5e92ff30e3d3 [file] [log] [blame]
/*
* Copyright (C) 2018 Gabriel Couto <gmcouto@gmail.com> and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.transport.http.apache;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.ProtocolVersion;
import org.apache.http.StatusLine;
import org.apache.http.message.AbstractHttpMessage;
import org.junit.Test;
import java.net.MalformedURLException;
import java.util.List;
import java.util.Locale;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
public class HttpClientConnectionTest {
@Test
public void testGetHeaderFieldsAllowMultipleValues()
throws MalformedURLException {
HttpResponse responseMock = new HttpResponseMock();
String headerField = "WWW-Authenticate";
responseMock.addHeader(headerField, "Basic");
responseMock.addHeader(headerField, "Digest");
responseMock.addHeader(headerField, "NTLM");
HttpClientConnection connection = new HttpClientConnection(
"http://0.0.0.0/");
connection.resp = responseMock;
List<String> headerValues = connection.getHeaderFields()
.get(headerField);
assertEquals(3, headerValues.size());
assertTrue(headerValues.contains("Basic"));
assertTrue(headerValues.contains("Digest"));
assertTrue(headerValues.contains("NTLM"));
}
private static class HttpResponseMock extends AbstractHttpMessage
implements HttpResponse {
@Override
public StatusLine getStatusLine() {
throw new UnsupportedOperationException();
}
@Override
public void setStatusLine(StatusLine statusLine) {
throw new UnsupportedOperationException();
}
@Override
public void setStatusLine(ProtocolVersion protocolVersion, int i) {
throw new UnsupportedOperationException();
}
@Override
public void setStatusLine(ProtocolVersion protocolVersion, int i,
String s) {
throw new UnsupportedOperationException();
}
@Override
public void setStatusCode(int i) throws IllegalStateException {
throw new UnsupportedOperationException();
}
@Override
public void setReasonPhrase(String s) throws IllegalStateException {
throw new UnsupportedOperationException();
}
@Override
public HttpEntity getEntity() {
throw new UnsupportedOperationException();
}
@Override
public void setEntity(HttpEntity httpEntity) {
throw new UnsupportedOperationException();
}
@Override
public Locale getLocale() {
throw new UnsupportedOperationException();
}
@Override
public void setLocale(Locale locale) {
throw new UnsupportedOperationException();
}
@Override
public ProtocolVersion getProtocolVersion() {
throw new UnsupportedOperationException();
}
}
}