org.opencms.jsp.util.TestCmsJspResourceAccessBean Maven / Gradle / Ivy
Show all versions of opencms-test Show documentation
/*
* This library is part of OpenCms -
* the Open Source Content Management System
*
* Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* For further information about Alkacon Software GmbH & Co. KG, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.jsp.util;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsProperty;
import org.opencms.file.CmsResource;
import org.opencms.file.types.CmsResourceTypeFolder;
import org.opencms.file.types.CmsResourceTypePlain;
import org.opencms.main.CmsException;
import org.opencms.main.OpenCms;
import org.opencms.test.OpenCmsTestCase;
import org.opencms.test.OpenCmsTestProperties;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Unit tests for the {@link CmsJspVfsAccessBean}
.
*
* @since 7.0.2
*/
public class TestCmsJspResourceAccessBean extends OpenCmsTestCase {
/**
* Default JUnit constructor.
*
* @param arg0 JUnit parameters
*/
public TestCmsJspResourceAccessBean(String arg0) {
super(arg0);
}
/**
* Test suite for this test class.
*
* @return the test suite
*/
public static Test suite() {
OpenCmsTestProperties.initialize(org.opencms.test.AllTests.TEST_PROPERTIES_PATH);
TestSuite suite = new TestSuite();
suite.setName(TestCmsJspResourceAccessBean.class.getName());
suite.addTest(new TestCmsJspResourceAccessBean("testReadPropertyLocale"));
TestSetup wrapper = new TestSetup(suite) {
@Override
protected void setUp() {
setupOpenCms("simpletest", "/");
}
@Override
protected void tearDown() {
removeOpenCms();
}
};
return wrapper;
}
public void testReadPropertyLocale() throws CmsException {
CmsObject cms = getCmsObject();
String folderPath = "/test_read_property_locale";
String resourcePath = "/test_read_property_locale/test.txt";
CmsResource folder = cms.createResource(
folderPath,
OpenCms.getResourceManager().getResourceType(CmsResourceTypeFolder.getStaticTypeName()));
CmsResource resource = cms.createResource(
resourcePath,
OpenCms.getResourceManager().getResourceType(CmsResourceTypePlain.getStaticTypeName()));
CmsJspResourceAccessBean bean = new CmsJspResourceAccessBean(cms, resource);
List directProperties = new ArrayList();
List searchedProperties = new ArrayList();
String directPropertyName = "direct";
String searchedPropertyName = "searched";
List localeSuffixes = Arrays.asList(new String[] {"", "_de", "_de_DE", "_en"});
Locale[] testLocales = new Locale[] {
null,
new Locale("de"),
new Locale("de", "DE"),
new Locale("en"),
new Locale("en", "GB"),
new Locale("it")};
String[] expectedPostfix = new String[] {"", "_de", "_de_DE", "_en", "_en", ""};
for (String suffix : localeSuffixes) {
directProperties.add(
new CmsProperty(directPropertyName + suffix, directPropertyName + suffix, directPropertyName + suffix));
searchedProperties.add(
new CmsProperty(
searchedPropertyName + suffix,
searchedPropertyName + suffix,
searchedPropertyName + suffix));
}
cms.writePropertyObjects(resource, directProperties);
cms.writePropertyObjects(folder, searchedProperties);
for (int i = 0; i < testLocales.length; i++) {
assertEquals(
directPropertyName + expectedPostfix[i],
bean.getPropertyLocale().get(null != testLocales[i] ? testLocales[i].toString() : null).get(
directPropertyName));
assertEquals(
directPropertyName + expectedPostfix[i],
bean.getPropertyLocale().get(testLocales[i]).get(directPropertyName));
assertEquals(
CmsProperty.getNullProperty().getValue(),
bean.getPropertyLocale().get(null != testLocales[i] ? testLocales[i].toString() : null).get(
searchedPropertyName));
assertEquals(
CmsProperty.getNullProperty().getValue(),
bean.getPropertyLocale().get(testLocales[i]).get(searchedPropertyName));
}
}
}