blob: 0938bb22e6c13168081a1ee76a3978b5c7c5549c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.wicket.markup.html.form.upload;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
import jakarta.servlet.http.Part;
import org.apache.wicket.protocol.http.mock.MockHttpServletRequest;
import org.apache.wicket.request.resource.AbstractResource;
import org.apache.wicket.util.io.IOUtils;
import org.apache.wicket.util.tester.FormTester;
import org.apache.wicket.util.tester.WicketTestCase;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Test of FileUpload with simulated Servlet 3.0 multipart config
*/
// FIXME Wicket 10
@Disabled
class FileUploadServletPartTest extends WicketTestCase
{
/**
* Tests support for uploading files with Servlet 3.0 multipart upload
* https://issues.apache.org/jira/browse/WICKET-5924
*
* @throws Exception
*/
@Test
void uploadServlet30Multipart() throws Exception
{
MockPageWithFormAndUploadField page = tester.startPage(MockPageWithFormAndUploadField.class);
MockHttpServletRequest httpServletRequest = tester.getRequest();
FormTester formTester = tester.newFormTester(MockPageWithFormAndUploadField.FORM_ID);
Servlet3Part part = new Servlet3Part(page.fileUploadField.getInputName());
httpServletRequest.setPart(MockPageWithFormAndUploadField.FILE_UPLOAD_ID, part);
formTester.submit();
page = (MockPageWithFormAndUploadField) tester.getLastRenderedPage();
FileUpload fileUpload = page.getFileUpload();
assertArrayEquals(Servlet3Part.DATA, fileUpload.getBytes());
assertEquals(Servlet3Part.class.getSimpleName(), fileUpload.getClientFileName());
assertEquals(Servlet3Part.CONTENT_TYPE, fileUpload.getContentType());
assertArrayEquals(Servlet3Part.DATA, IOUtils.toByteArray(fileUpload.getInputStream()));
assertNull(part.written.get());
fileUpload.writeToTempFile();
assertNotNull(part.written.get());
assertFalse(part.deleted.get());
fileUpload.delete();
assertTrue(part.deleted.get());
}
private static class Servlet3Part implements Part
{
private static final byte[] DATA = new byte[] {1, 2, 3};
static final String CONTENT_TYPE = "text/plain";
private final AtomicReference<String> written = new AtomicReference<>();
private final AtomicBoolean deleted = new AtomicBoolean(false);
private final LinkedHashMap<String, List<String>> headers = new LinkedHashMap<>();
final String fieldName;
private Servlet3Part(String fieldName) {
this.fieldName = fieldName;
headers.put(AbstractResource.CONTENT_DISPOSITION_HEADER_NAME, Arrays.asList("attachment;filename=" + Servlet3Part.class.getSimpleName()));
}
@Override
public InputStream getInputStream() throws IOException
{
return new ByteArrayInputStream(DATA);
}
@Override
public String getContentType()
{
return CONTENT_TYPE;
}
@Override
public String getName()
{
return fieldName;
}
@Override
public String getSubmittedFileName()
{
return getName();
}
@Override
public long getSize()
{
return DATA.length;
}
@Override
public void write(String fileName) throws IOException
{
written.set(fileName);
}
@Override
public void delete() throws IOException
{
deleted.set(true);
}
@Override
public String getHeader(String name)
{
return headers.containsKey(name) ? headers.get(name).get(0) : null;
}
@Override
public Collection<String> getHeaders(String name)
{
return headers.get(name);
}
@Override
public Collection<String> getHeaderNames()
{
return headers.keySet();
}
}
}