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.InputStream;
32  import java.io.OutputStream;
33  import java.nio.file.Files;
34  import java.nio.file.Path;
35  
36  import org.apache.hc.core5.http.ContentType;
37  import org.junit.jupiter.api.Assertions;
38  import org.junit.jupiter.api.Test;
39  
40  /**
41   * Unit tests for {@link PathEntity}.
42   */
43  public class TestPathEntity {
44  
45      @Test
46      public void testBasics() throws Exception {
47          final Path tmpPath = Files.createTempFile("testfile", ".txt");
48          // Mark the file for deletion on VM exit if an assertion fails.
49          tmpPath.toFile().deleteOnExit();
50          try (final PathEntity httpEntity = new PathEntity(tmpPath, ContentType.TEXT_PLAIN)) {
51              Assertions.assertEquals(Files.size(tmpPath), httpEntity.getContentLength());
52              try (final InputStream content = httpEntity.getContent()) {
53                  Assertions.assertNotNull(content);
54              }
55              Assertions.assertTrue(httpEntity.isRepeatable());
56              Assertions.assertFalse(httpEntity.isStreaming());
57              // If we can't delete the file now, then the PathEntity or test is hanging on to a file handle.
58              Assertions.assertTrue(Files.deleteIfExists(tmpPath), "Failed to delete " + tmpPath);
59          }
60      }
61  
62      @Test
63      public void testNullConstructor() throws Exception {
64          Assertions.assertThrows(NullPointerException.class, () -> new PathEntity(null, ContentType.TEXT_PLAIN));
65      }
66  
67      @Test
68      public void testWriteTo() throws Exception {
69          final Path tmpPath = Files.createTempFile("testfile", ".txt");
70          // Mark the file for deletion on VM exit if an assertion fails.
71          tmpPath.toFile().deleteOnExit();
72          try (final OutputStream outStream = Files.newOutputStream(tmpPath)) {
73              outStream.write(0);
74              outStream.write(1);
75              outStream.write(2);
76              outStream.write(3);
77          }
78  
79          try (final PathEntity httpEntity = new PathEntity(tmpPath, ContentType.TEXT_PLAIN)) {
80              final ByteArrayOutputStream out = new ByteArrayOutputStream();
81              httpEntity.writeTo(out);
82              final byte[] bytes = out.toByteArray();
83              Assertions.assertNotNull(bytes);
84              Assertions.assertEquals(Files.size(tmpPath), bytes.length);
85              for (int i = 0; i < 4; i++) {
86                  Assertions.assertEquals(i, bytes[i]);
87              }
88              // If we can't delete the file now, then the PathEntity or test is hanging on to a file handle
89              Assertions.assertTrue(Files.deleteIfExists(tmpPath), "Failed to delete " + tmpPath);
90              Assertions.assertThrows(NullPointerException.class, () -> httpEntity.writeTo(null));
91          }
92      }
93  }