use of org.apache.wicket.util.file.FileCleaner in project wicket by apache.
the class FileUploadTest method getInputStream.
/**
* Test that when getting an input stream a new input stream is returned every time.
*
* Also test that the inputstream is saved internally for later closing.
*
* @throws Exception
*/
@Test
public void getInputStream() throws Exception {
final IFileCleaner fileUploadCleaner = new FileCleaner();
DiskFileItemFactory itemFactory = new DiskFileItemFactory() {
@Override
public FileCleaningTracker getFileCleaningTracker() {
return new FileCleanerTrackerAdapter(fileUploadCleaner);
}
};
FileItem fileItem = itemFactory.createItem("dummyFieldName", "text/java", false, "FileUploadTest.java");
// Initialize the upload
fileItem.getOutputStream();
// Get the internal list out
Field inputStreamsField = FileUpload.class.getDeclaredField("inputStreamsToClose");
inputStreamsField.setAccessible(true);
FileUpload fileUpload = new FileUpload(fileItem);
List<?> inputStreams = (List<?>) inputStreamsField.get(fileUpload);
assertNull(inputStreams);
InputStream is1 = fileUpload.getInputStream();
inputStreams = (List<?>) inputStreamsField.get(fileUpload);
assertEquals(1, inputStreams.size());
InputStream is2 = fileUpload.getInputStream();
inputStreams = (List<?>) inputStreamsField.get(fileUpload);
assertEquals(2, inputStreams.size());
assertNotSame(is1, is2);
// Ok lets close all the streams
try {
fileUpload.closeStreams();
} catch (Exception e) {
fail();
}
inputStreams = (List<?>) inputStreamsField.get(fileUpload);
assertNull(inputStreams);
fileUploadCleaner.destroy();
}
use of org.apache.wicket.util.file.FileCleaner in project wicket by apache.
the class WebApplication method internalInit.
/**
* THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. DO NOT CALL IT.
*
* Internal initialization. First determine the deployment mode. First check the system property
* -Dwicket.configuration. If it does not exist check the servlet init parameter (
* <code><init-param><param-name>configuration</param-name></code>). If not
* found check the servlet context init parameter
* <code><context-param><param-name6gt;configuration</param-name></code>). If the
* parameter is "development" (which is default), settings appropriate for development are set.
* If it's "deployment" , deployment settings are used. If development is specified and a
* "sourceFolder" init parameter is also set, then resources in that folder will be polled for
* changes.
*/
@Override
protected void internalInit() {
super.internalInit();
getResourceSettings().getResourceFinders().add(new WebApplicationPath(getServletContext(), ""));
getResourceSettings().getResourceFinders().add(new ClassPathResourceFinder(META_INF_RESOURCES));
// Set default error pages for HTML markup
getApplicationSettings().setPageExpiredErrorPage(PageExpiredErrorPage.class);
getApplicationSettings().setInternalErrorPage(InternalErrorPage.class);
getApplicationSettings().setAccessDeniedPage(AccessDeniedPage.class);
// Add resolver for automatically resolving HTML links
getPageSettings().addComponentResolver(new AutoLinkResolver());
getPageSettings().addComponentResolver(new AutoLabelResolver());
getPageSettings().addComponentResolver(new AutoLabelTextResolver());
getResourceSettings().setFileCleaner(new FileCleaner());
if (getConfigurationType() == RuntimeConfigurationType.DEVELOPMENT) {
// Add optional sourceFolder for resources.
String resourceFolder = getInitParameter("sourceFolder");
if (resourceFolder != null) {
getResourceSettings().getResourceFinders().add(new Path(resourceFolder));
}
}
setPageRendererProvider(WebPageRenderer::new);
setSessionStoreProvider(HttpSessionStore::new);
setAjaxRequestTargetProvider(AjaxRequestHandler::new);
getAjaxRequestTargetListeners().add(new AjaxEnclosureListener());
// Configure the app.
configure();
}
Aggregations