StreamDataBodyPartTest.java
/*
* Copyright (c) 2012, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.jersey.media.multipart.file;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import javax.ws.rs.core.MediaType;
import org.glassfish.jersey.media.multipart.BodyPartTest;
import org.glassfish.jersey.media.multipart.ContentDisposition;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.fail;
/**
* Tests for the {@link StreamDataBodyPart} class which checks the class' main
* contract and new functionality.
*
* @author Pedro Kowalski (pallipp at gmail.com)
* @author Michal Gajdos
*
* @see StreamDataBodyPart
* @see FileDataBodyPartTest
*/
public class StreamDataBodyPartTest extends BodyPartTest {
/**
* Class under test.
*/
private StreamDataBodyPart cut;
@Override
@BeforeEach
public void setUp() throws Exception {
super.setUp();
cut = new StreamDataBodyPart();
// Needed for inherited tests.
bodyPart = cut;
}
@Override
@AfterEach
public void tearDown() throws Exception {
bodyPart = null;
super.tearDown();
}
///////////////////////////////////////////////////////////////////////////
// Not supported methods
///////////////////////////////////////////////////////////////////////////
@Override
@Test
public void testEntity() {
try {
bodyPart.setEntity("foo");
fail();
} catch (UnsupportedOperationException ex) {
// expected exception.
}
}
@Test
public void testSetValueString() {
try {
cut.setValue("foo");
fail();
} catch (UnsupportedOperationException ex) {
// expected exception.
}
}
@Test
public void testSetValueMediaTypeObject() {
try {
// Use any MediaType and value - they doesn't matter.
cut.setValue(MediaType.APPLICATION_OCTET_STREAM_TYPE, new Object());
fail();
} catch (UnsupportedOperationException ex) {
// expected exception.
}
}
///////////////////////////////////////////////////////////////////////////
// Constructor tests
///////////////////////////////////////////////////////////////////////////
@Test
public void testCreateStreamEntityNameStream() {
String expectedName = "foo";
MediaType expectedMediaType = StreamDataBodyPart.getDefaultMediaType();
cut = new StreamDataBodyPart(expectedName, new ByteArrayInputStream(new byte[] {}));
boolean actualIsSimpleBodyPart = cut.isSimple();
String actualName = cut.getName();
// Filename and mediaType are to be the default ones.
String actualFilename = cut.getFilename();
MediaType actualMediaType = cut.getMediaType();
assertEquals(expectedName, actualName);
assertEquals(expectedMediaType, actualMediaType);
assertNull(actualFilename);
assertFalse(actualIsSimpleBodyPart);
}
@Test
public void testCreateStreamEntityNameStreamFilename() {
String expectedName = "foo";
String expectedFilename = "bar.txt";
MediaType expectedMediaType = StreamDataBodyPart.getDefaultMediaType();
cut = new StreamDataBodyPart(expectedName, new ByteArrayInputStream(new byte[] {}), expectedFilename);
boolean actualIsSimpleBodyPart = cut.isSimple();
String actualName = cut.getName();
String actualFilename = cut.getFilename();
// MediaType is to be the default one.
MediaType actualMediaType = cut.getMediaType();
assertEquals(expectedName, actualName);
assertEquals(expectedMediaType, actualMediaType);
assertEquals(expectedFilename, actualFilename);
assertFalse(actualIsSimpleBodyPart);
}
@Test
public void testCreateStreamEntity() {
String expectedName = "foo";
String expectedFilename = "bar.txt";
MediaType expectedMediaType = MediaType.TEXT_HTML_TYPE;
cut = new StreamDataBodyPart(expectedName, new ByteArrayInputStream(new byte[] {}), expectedFilename, expectedMediaType);
// All parameters must be set as the user requested. No defaults.
boolean actualIsSimpleBodyPart = cut.isSimple();
String actualName = cut.getName();
String actualFilename = cut.getFilename();
MediaType actualMediaType = cut.getMediaType();
assertEquals(expectedName, actualName);
assertEquals(expectedMediaType, actualMediaType);
assertEquals(expectedFilename, actualFilename);
assertFalse(actualIsSimpleBodyPart);
}
@Test
public void testCreateStreamEntityNullName() {
try {
new StreamDataBodyPart(null, new ByteArrayInputStream(new byte[] {}));
fail();
} catch (IllegalArgumentException ex) {
// expected exception.
}
}
@Test
public void testCreateStreamEntityNullStream() {
try {
new StreamDataBodyPart("foo", null);
fail();
} catch (IllegalArgumentException ex) {
// expected exception.
}
}
@Test
public void testCreateStreamEntityNullMediaType() {
MediaType expectedMediaType = StreamDataBodyPart.getDefaultMediaType();
// MediaType is nullable - it takes the default value in such situation.
cut = new StreamDataBodyPart("foo", new ByteArrayInputStream(new byte[] {}), "bar.txt", null);
MediaType actualMediaType = cut.getMediaType();
assertEquals(expectedMediaType, actualMediaType);
}
///////////////////////////////////////////////////////////////////////////
// Content disposition building tests
///////////////////////////////////////////////////////////////////////////
@Test
public void testBuildContentDisposition() {
String name = "foo";
String expectedType = "form-data";
String expectedFilename = "bar.txt";
cut.setName(name);
cut.setFilename(expectedFilename);
ContentDisposition actual = cut.buildContentDisposition();
assertEquals(expectedType, actual.getType());
assertEquals(expectedFilename, actual.getFileName());
}
@Test
public void testBuildContentDispositionWithoutFilename() {
String name = "foo";
String expectedType = "form-data";
String expectedFilename = "foo";
cut.setName(name);
ContentDisposition actual = cut.buildContentDisposition();
assertEquals(expectedType, actual.getType());
assertEquals(expectedFilename, actual.getFileName());
}
///////////////////////////////////////////////////////////////////////////
// Stream entity setter tests
///////////////////////////////////////////////////////////////////////////
@Test
public void testStreamEntityStreamMediaType() {
MediaType expectedMediaType = MediaType.APPLICATION_SVG_XML_TYPE;
InputStream expectedInputStream = new ByteArrayInputStream(new byte[] {0x002, 0x003});
assertSetEntityStream(expectedMediaType, expectedInputStream);
}
@Test
public void testStreamEntityStream() {
MediaType expectedMediaType = StreamDataBodyPart.getDefaultMediaType();
InputStream expectedInputStream = new ByteArrayInputStream(new byte[] {0x002, 0x003});
assertSetEntityStream(expectedMediaType, expectedInputStream);
}
@Test
public void testStreamEntityStreamNullStream() {
try {
cut.setStreamEntity(null);
fail();
} catch (IllegalArgumentException ex) {
// expected exception.
}
}
@Test
public void testStreamEntityStreamNullMediaType() {
MediaType expectedMediaType = StreamDataBodyPart.getDefaultMediaType();
// Required to set the entity.
cut.setName("foo");
// No exception is to be observed - MediaType should be the default one.
cut.setStreamEntity(new ByteArrayInputStream(new byte[] {}), null);
MediaType actualMediaType = cut.getMediaType();
assertEquals(expectedMediaType, actualMediaType);
}
///////////////////////////////////////////////////////////////////////////
// Misc tests
///////////////////////////////////////////////////////////////////////////
@Test
public void testGetDefaultMediaType() {
MediaType expected = MediaType.APPLICATION_OCTET_STREAM_TYPE;
MediaType actual = StreamDataBodyPart.getDefaultMediaType();
assertEquals(expected, actual);
}
/**
* Helper class for checking if the stream entity has been properly set.
*
* @param expectedMediaType
* after the stream entity has been set.
* @param expectedStreamEntity
* after the stream entity has been set.
*/
private void assertSetEntityStream(MediaType expectedMediaType,
InputStream expectedStreamEntity) {
// Required to set the entity.
cut.setName("foo");
cut.setStreamEntity(expectedStreamEntity, expectedMediaType);
MediaType actualMediaType = cut.getMediaType();
InputStream actualInputStream = cut.getStreamEntity();
assertEquals(expectedStreamEntity, actualInputStream);
assertEquals(expectedMediaType, actualMediaType);
}
}