org.opencms.site.TestCmsSiteConfiguration 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.site;
import org.opencms.main.OpenCms;
import org.opencms.test.OpenCmsTestCase;
import org.opencms.test.OpenCmsTestProperties;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Tests the site configuration.
*
*
* @since 9.5
*/
public class TestCmsSiteConfiguration extends OpenCmsTestCase {
/**
* Default JUnit constructor.
*
* @param arg0 JUnit parameters
*/
public TestCmsSiteConfiguration(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(TestCmsSiteConfiguration.class.getName());
suite.addTest(new TestCmsSiteConfiguration("testSiteConfiguration"));
TestSetup wrapper = new TestSetup(suite) {
@Override
protected void setUp() {
setupOpenCms("simpletest", "/");
}
@Override
protected void tearDown() {
removeOpenCms();
}
};
return wrapper;
}
/**
* Tests the basic site configuration.
*
* @throws Throwable if something goes wrong
*/
public void testSiteConfiguration() throws Throwable {
echo("Testing the basic site configuration");
CmsSiteManagerImpl siteManager = OpenCms.getSiteManager();
Map mapOfSites = siteManager.getSites();
assertNotNull("Configured map of sites must not be null", mapOfSites);
List sites = new ArrayList(mapOfSites.values());
assertTrue("Expected 8 configured sites but found " + sites.size(), sites.size() == 8);
for (CmsSite site : sites) {
echo("Found configured site: " + site);
assertNotNull("Site " + site + " has a null site matcher", site.getSiteMatcher());
}
assertTrue(
"Default site at http://localhost:8080 not found",
sites.contains(new CmsSite("/sites/default/", "http://localhost:8080")));
assertTrue(
"Site at http://localhost:8081 not found",
sites.contains(new CmsSite("/sites/default/folder1/", "http://localhost:8081")));
assertTrue(
"Site at http://localhost:8082 not found",
sites.contains(new CmsSite("/sites/testsite/", "http://localhost:8082")));
}
}