View Javadoc
1   /*
2    * ====================================================================
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   * ====================================================================
20   *
21   * This software consists of voluntary contributions made by many
22   * individuals on behalf of the Apache Software Foundation.  For more
23   * information on the Apache Software Foundation, please see
24   * <http://www.apache.org/>.
25   *
26   */
27  
28  package org.apache.hc.core5.http.io.entity;
29  
30  import java.io.ByteArrayOutputStream;
31  import java.io.File;
32  import java.io.FileOutputStream;
33  import java.io.InputStream;
34  
35  import org.apache.hc.core5.http.ContentType;
36  import org.junit.jupiter.api.Assertions;
37  import org.junit.jupiter.api.Test;
38  
39  /**
40   * Unit tests for {@link FileEntity}.
41   *
42   */
43  public class TestFileEntity {
44  
45      @Test
46      public void testBasics() throws Exception {
47          final File tmpfile = File.createTempFile("testfile", ".txt");
48          tmpfile.deleteOnExit();
49          final FileEntity httpentity = new FileEntity(tmpfile, ContentType.TEXT_PLAIN);
50  
51          Assertions.assertEquals(tmpfile.length(), httpentity.getContentLength());
52          final InputStream content = httpentity.getContent();
53          Assertions.assertNotNull(content);
54          content.close();
55          Assertions.assertTrue(httpentity.isRepeatable());
56          Assertions.assertFalse(httpentity.isStreaming());
57          Assertions.assertTrue(tmpfile.delete(), "Failed to delete " + tmpfile);
58      }
59  
60      @Test
61      public void testNullConstructor() throws Exception {
62          Assertions.assertThrows(NullPointerException.class, () -> new FileEntity(null, ContentType.TEXT_PLAIN));
63      }
64  
65      @Test
66      public void testWriteTo() throws Exception {
67          final File tmpfile = File.createTempFile("testfile", ".txt");
68          tmpfile.deleteOnExit();
69  
70          final FileOutputStream outStream = new FileOutputStream(tmpfile);
71          outStream.write(0);
72          outStream.write(1);
73          outStream.write(2);
74          outStream.write(3);
75          outStream.close();
76  
77          final FileEntity httpentity = new FileEntity(tmpfile, ContentType.TEXT_PLAIN);
78  
79          final ByteArrayOutputStream out = new ByteArrayOutputStream();
80          httpentity.writeTo(out);
81          final byte[] bytes = out.toByteArray();
82          Assertions.assertNotNull(bytes);
83          Assertions.assertEquals(tmpfile.length(), bytes.length);
84          for (int i = 0; i < 4; i++) {
85              Assertions.assertEquals(i, bytes[i]);
86          }
87          Assertions.assertTrue(tmpfile.delete(), "Failed to delete: " + tmpfile);
88  
89          Assertions.assertThrows(NullPointerException.class, () -> httpentity.writeTo(null));
90      }
91  
92  }