/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2014-2015 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package org.glassfish.jersey.media.multipart.internal; import java.util.Arrays; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.logging.Level; import java.util.logging.LogRecord; import javax.ws.rs.BadRequestException; import javax.ws.rs.client.Entity; import javax.ws.rs.client.WebTarget; import javax.ws.rs.core.Application; import javax.ws.rs.core.MediaType; import org.glassfish.jersey.apache.connector.ApacheConnectorProvider; import org.glassfish.jersey.client.ClientConfig; import org.glassfish.jersey.client.HttpUrlConnectorProvider; import org.glassfish.jersey.client.spi.ConnectorProvider; import org.glassfish.jersey.grizzly.connector.GrizzlyConnectorProvider; import org.glassfish.jersey.jetty.connector.JettyConnectorProvider; import org.glassfish.jersey.media.multipart.MultiPart; import org.glassfish.jersey.test.TestProperties; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import static org.hamcrest.CoreMatchers.containsString; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertThat; import static org.junit.Assert.assertTrue; /** * JERSEY-2123 reproducer. * <p/> * Delete this test when JERSEY-2341 fixed. * * @author Libor Kramolis (libor.kramolis at oracle.com) */ @RunWith(Parameterized.class) public class MultiPartHeaderModificationTest extends MultiPartJerseyTest { private final ConnectorProvider connectorProvider; private final boolean messageLogged; public MultiPartHeaderModificationTest(Class<? extends ConnectorProvider> connectorProviderClass, boolean messageLogged) throws InstantiationException, IllegalAccessException { this.connectorProvider = connectorProviderClass.newInstance(); this.messageLogged = messageLogged; } @Parameterized.Parameters(name = "{index}: {0} / {1}") public static List<Object[]> testData() { return Arrays.asList(new Object[][] { {HttpUrlConnectorProvider.class, false}, {GrizzlyConnectorProvider.class, true}, {JettyConnectorProvider.class, true}, {ApacheConnectorProvider.class, true}, }); } @Override protected Set<Class<?>> getResourceClasses() { final HashSet<Class<?>> classes = new HashSet<Class<?>>(); classes.add(MultiPartResource.class); return classes; } @Override protected Application configure() { set(TestProperties.RECORD_LOG_LEVEL, Level.WARNING.intValue()); return super.configure(); } @Override protected void configureClient(ClientConfig clientConfig) { super.configureClient(clientConfig); clientConfig.connectorProvider(connectorProvider); } @Test public void testLogMessage() { final WebTarget target = target().path("multipart/ten"); MultiPartBean bean = new MultiPartBean("myname", "myvalue"); MultiPart entity = new MultiPart() .bodyPart(bean, new MediaType("x-application", "x-format")) .bodyPart("", MediaType.APPLICATION_OCTET_STREAM_TYPE); final String UNSENT_HEADER_CHANGES = "Unsent header changes"; try { target.request("text/plain").put(Entity.entity(entity, "multipart/mixed"), String.class); assertFalse("BadRequestException can not be thrown just in case JERSEY-2341 is not fixed.", messageLogged); LogRecord logRecord = findLogRecord(UNSENT_HEADER_CHANGES); assertNull(logRecord); } catch (BadRequestException brex) { assertTrue("BadRequestException can be thrown just in case JERSEY-2341 is not fixed.", messageLogged); LogRecord logRecord = findLogRecord(UNSENT_HEADER_CHANGES); assertNotNull("Missing LogRecord for message '" + UNSENT_HEADER_CHANGES + "'.", logRecord); assertThat(logRecord.getMessage(), containsString("MIME-Version")); assertThat(logRecord.getMessage(), containsString("Content-Type")); } } private LogRecord findLogRecord(String messageContains) { for (final LogRecord record : getLoggedRecords()) { if (record.getMessage().contains(messageContains)) { return record; } } return null; } }