You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2015/08/21 15:34:01 UTC

svn commit: r1696971 - /httpcomponents/httpclient/branches/4.5.x/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/MimeExportedIT.java

Author: olegk
Date: Fri Aug 21 13:34:01 2015
New Revision: 1696971

URL: http://svn.apache.org/r1696971
Log:
Revert "HTTPCLIENT-1673: make the test case a bit more substantial."

This reverts commit 2b3230123aa4a94652f50e8d3b8d93f2200545ac.

Modified:
    httpcomponents/httpclient/branches/4.5.x/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/MimeExportedIT.java

Modified: httpcomponents/httpclient/branches/4.5.x/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/MimeExportedIT.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/branches/4.5.x/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/MimeExportedIT.java?rev=1696971&r1=1696970&r2=1696971&view=diff
==============================================================================
--- httpcomponents/httpclient/branches/4.5.x/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/MimeExportedIT.java (original)
+++ httpcomponents/httpclient/branches/4.5.x/httpclient-osgi/src/test/java/org/apache/http/osgi/impl/MimeExportedIT.java Fri Aug 21 13:34:01 2015
@@ -27,12 +27,7 @@
 
 package org.apache.http.osgi.impl;
 
-import org.apache.http.HttpEntity;
-import org.apache.http.client.methods.HttpPost;
-import org.apache.http.entity.ContentType;
-import org.apache.http.entity.mime.MultipartEntityBuilder;
 import org.apache.http.entity.mime.content.ByteArrayBody;
-import org.apache.http.entity.mime.content.StringBody;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.ops4j.pax.exam.Configuration;
@@ -93,17 +88,6 @@ public class MimeExportedIT {
 
     @Test
     public void useContentBody() {
-        final HttpPost httppost = new HttpPost("http://localhost:8181/cxf/annotator/annotate");
-        httppost.addHeader("Accept", "application/json");
-        final StringBody options = new StringBody("{}", ContentType.APPLICATION_JSON);
-        final byte[] atData = new byte[] { 1 };
-        final ByteArrayBody bab = new ByteArrayBody(atData, ContentType.APPLICATION_JSON, "at.json");
-
-        final HttpEntity reqEntity = MultipartEntityBuilder.create()
-                .setContentType(ContentType.create("multipart/mixed"))
-                .addPart("options", options)
-                .addPart("text", bab)
-                .build();
-        httppost.setEntity(reqEntity);
+       new ByteArrayBody(new byte[0], "filename.txt");
     }
 }