blob: d00b5b0066ae108de9517c5a7adcf92392aae26d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. 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. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.roller.weblogger.business;
import java.io.InputStream;
import java.util.Map;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.roller.weblogger.TestUtils;
import org.apache.roller.weblogger.pojos.FileContent;
import org.apache.roller.weblogger.pojos.RuntimeConfigProperty;
import org.apache.roller.weblogger.pojos.User;
import org.apache.roller.weblogger.pojos.Weblog;
import org.apache.roller.weblogger.util.RollerMessages;
/**
* Test File Management business layer operations.
*/
public class FileContentManagerTest extends TestCase {
private static Log log = LogFactory.getLog(FileContentManagerTest.class);
User testUser = null;
Weblog testWeblog = null;
public FileContentManagerTest(String name) {
super(name);
}
public static Test suite() {
return new TestSuite(FileContentManagerTest.class);
}
@Override
public void setUp() throws Exception {
// setup weblogger
TestUtils.setupWeblogger();
}
@Override
public void tearDown() throws Exception {
PropertiesManager pmgr = WebloggerFactory.getWeblogger().getPropertiesManager();
Map config = pmgr.getProperties();
((RuntimeConfigProperty) config.get("uploads.dir.maxsize")).setValue("30000");
((RuntimeConfigProperty) config.get("uploads.types.forbid")).setValue("");
((RuntimeConfigProperty) config.get("uploads.types.allowed")).setValue("");
((RuntimeConfigProperty) config.get("uploads.enabled")).setValue("true");
pmgr.saveProperties(config);
TestUtils.endSession(true);
}
/**
* Test simple file save/delete.
*/
public void testFileCRUD() throws Exception {
try {
testUser = TestUtils.setupUser("FCMTest_userName1");
testWeblog = TestUtils.setupWeblog("FCMTest_handle1", testUser);
TestUtils.endSession(true);
} catch (Exception ex) {
log.error(ex);
}
// update roller properties to prepare for test
PropertiesManager pmgr = WebloggerFactory.getWeblogger().getPropertiesManager();
Map config = pmgr.getProperties();
((RuntimeConfigProperty) config.get("uploads.enabled")).setValue("true");
((RuntimeConfigProperty) config.get("uploads.types.allowed")).setValue("opml");
((RuntimeConfigProperty) config.get("uploads.dir.maxsize")).setValue("1.00");
pmgr.saveProperties(config);
TestUtils.endSession(true);
/* NOTE: upload dir for unit tests is set in
roller/testdata/roller-custom.properties */
FileContentManager fmgr = WebloggerFactory.getWeblogger().getFileContentManager();
// File should not exist initially
try {
FileContent fileContent = fmgr.getFileContent(testWeblog, "bookmarks-file-id");
assertTrue("Non-existant file retrieved without any exception", false);
} catch (FileNotFoundException e) {
assertTrue("Exception thrown for non-existant file as expected", true);
}
// store a file
InputStream is = getClass().getResourceAsStream("/bookmarks.opml");
fmgr.saveFileContent(testWeblog, "bookmarks-file-id", is);
// make sure file was stored successfully
FileContent fileContent1 = fmgr.getFileContent(testWeblog, "bookmarks-file-id");
assertEquals("bookmarks-file-id", fileContent1.getFileId());
// delete file
fmgr.deleteFile(testWeblog, "bookmarks-file-id");
// File should not exist after delete
try {
FileContent fileContent = fmgr.getFileContent(testWeblog, "bookmarks-file-id");
assertTrue("Non-existant file retrieved without any exception", false);
} catch (FileNotFoundException e) {
assertTrue("Exception thrown for non-existant file as expected", true);
}
TestUtils.endSession(true);
TestUtils.teardownWeblog(testWeblog.getId());
TestUtils.teardownUser(testUser.getUserName());
}
/**
* Test FileContentManager.saveFile() checks.
*
* This should test all conditions where a save should fail.
*/
public void testCanSave() throws Exception {
try {
testUser = TestUtils.setupUser("FCMTest_userName2");
testWeblog = TestUtils.setupWeblog("FCMTest_handle2", testUser);
TestUtils.endSession(true);
} catch (Exception ex) {
log.error(ex);
}
FileContentManager fmgr = WebloggerFactory.getWeblogger().getFileContentManager();
PropertiesManager pmgr = WebloggerFactory.getWeblogger().getPropertiesManager();
Map config = pmgr.getProperties();
((RuntimeConfigProperty) config.get("uploads.dir.maxsize")).setValue("1.00");
((RuntimeConfigProperty) config.get("uploads.types.forbid")).setValue("");
((RuntimeConfigProperty) config.get("uploads.types.allowed")).setValue("");
((RuntimeConfigProperty) config.get("uploads.enabled")).setValue("true");
pmgr.saveProperties(config);
TestUtils.endSession(true);
config = pmgr.getProperties();
((RuntimeConfigProperty) config.get("uploads.dir.maxsize")).setValue("1.00");
pmgr.saveProperties(config);
TestUtils.endSession(true);
RollerMessages msgs = new RollerMessages();
boolean canSave = fmgr.canSave(testWeblog, "test.gif", "text/plain", 2500000, msgs);
assertFalse(canSave);
config = pmgr.getProperties();
((RuntimeConfigProperty) config.get("uploads.types.forbid")).setValue("gif");
pmgr.saveProperties(config);
TestUtils.endSession(true);
// forbidden types check should fail
msgs = new RollerMessages();
fmgr.canSave(testWeblog, "test.gif", "text/plain", 10, msgs);
assertFalse(canSave);
config = pmgr.getProperties();
((RuntimeConfigProperty) config.get("uploads.enabled")).setValue("false");
pmgr.saveProperties(config);
TestUtils.endSession(true);
// uploads disabled should fail
msgs = new RollerMessages();
fmgr.canSave(testWeblog, "test.gif", "text/plain", 10, msgs);
assertFalse(canSave);
TestUtils.endSession(true);
TestUtils.teardownWeblog(testWeblog.getId());
TestUtils.teardownUser(testUser.getUserName());
}
}