Browse Source
Factor out the test parameterization to use both connection factories into a common super class and use it in more tests. This made HttpClientTests.testV2HttpSubsequentResponse() fail for Apache HTTP. The test used the pattern - create POST connection - setDoOutput(true) - connect() - write output stream - get & read input stream This pattern is never used in JGit, which actually calls connect() only in one case in LFS, and that's on a HEAD request. The above pattern works on JDK, but fails on Apache HTTP because with Apache HTTP a connect() actually executes the full request including writing the entity. To work with Apache HTTP, the pattern would need to be - create POST connection - setDoOutput(true) - write output stream - connect() - get & read input stream which is fine for both. JDK connects implicitly in getOutputStream() and treats the later explicit connect() as a no-op, and Apache works because the entity is written when connect() is called. Because JDK connects implicitly on getOutputStream(), the following pattern also works with JDK: - create POST connection - setDoOutput(true) - write output stream - get & read input stream Support this with Apache HTTP too: let getInputStream() execute the request if it wasn't executed already. Remove explicit connect() calls from test code, since JGit doesn't do those either. Change-Id: Ica038c00a7b8edcc01d5660d18e961146305b87f Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>stable-5.5
Thomas Wolf
5 years ago
11 changed files with 140 additions and 94 deletions
@ -0,0 +1,91 @@
|
||||
/* |
||||
* Copyright (C) 2019, Thomas Wolf <thomas.wolf@paranor.ch> |
||||
* and other copyright owners as documented in the project's IP log. |
||||
* |
||||
* This program and the accompanying materials are made available |
||||
* under the terms of the Eclipse Distribution License v1.0 which |
||||
* accompanies this distribution, is reproduced below, and is |
||||
* available at http://www.eclipse.org/org/documents/edl-v10.php
|
||||
* |
||||
* All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or |
||||
* without modification, are permitted provided that the following |
||||
* conditions are met: |
||||
* |
||||
* - Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* |
||||
* - Redistributions in binary form must reproduce the above |
||||
* copyright notice, this list of conditions and the following |
||||
* disclaimer in the documentation and/or other materials provided |
||||
* with the distribution. |
||||
* |
||||
* - Neither the name of the Eclipse Foundation, Inc. nor the |
||||
* names of its contributors may be used to endorse or promote |
||||
* products derived from this software without specific prior |
||||
* written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
||||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
*/ |
||||
package org.eclipse.jgit.http.test; |
||||
|
||||
import java.util.Arrays; |
||||
import java.util.Collection; |
||||
|
||||
import org.eclipse.jgit.junit.http.HttpTestCase; |
||||
import org.eclipse.jgit.transport.HttpTransport; |
||||
import org.eclipse.jgit.transport.http.HttpConnectionFactory; |
||||
import org.eclipse.jgit.transport.http.JDKHttpConnectionFactory; |
||||
import org.eclipse.jgit.transport.http.apache.HttpClientConnectionFactory; |
||||
import org.junit.AfterClass; |
||||
import org.junit.BeforeClass; |
||||
import org.junit.runner.RunWith; |
||||
import org.junit.runners.Parameterized; |
||||
import org.junit.runners.Parameterized.Parameters; |
||||
|
||||
/** |
||||
* Abstract test base class for running HTTP-related tests with all connection |
||||
* factories provided in JGit: the JDK {@link JDKHttpConnectionFactory} and the |
||||
* Apache HTTP {@link HttpClientConnectionFactory}. |
||||
*/ |
||||
@RunWith(Parameterized.class) |
||||
public abstract class AllFactoriesHttpTestCase extends HttpTestCase { |
||||
|
||||
@Parameters |
||||
public static Collection<Object[]> data() { |
||||
// run all tests with both connection factories we have
|
||||
return Arrays |
||||
.asList(new Object[][] { { new JDKHttpConnectionFactory() }, |
||||
{ new HttpClientConnectionFactory() } }); |
||||
} |
||||
|
||||
protected AllFactoriesHttpTestCase(HttpConnectionFactory cf) { |
||||
HttpTransport.setConnectionFactory(cf); |
||||
} |
||||
|
||||
private static HttpConnectionFactory originalFactory; |
||||
|
||||
@BeforeClass |
||||
public static void saveConnectionFactory() { |
||||
originalFactory = HttpTransport.getConnectionFactory(); |
||||
} |
||||
|
||||
@AfterClass |
||||
public static void restoreConnectionFactory() { |
||||
HttpTransport.setConnectionFactory(originalFactory); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue