?? testcmsxmlpageinsystem.java
字號:
/*
* File : $Source: /usr/local/cvs/opencms/test/org/opencms/xml/page/TestCmsXmlPageInSystem.java,v $
* Date : $Date: 2006/03/27 14:53:03 $
* Version: $Revision: 1.22 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (c) 2005 Alkacon Software GmbH (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, 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.xml.page;
import org.opencms.file.CmsFile;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsProperty;
import org.opencms.file.CmsPropertyDefinition;
import org.opencms.file.types.CmsResourceTypeXmlPage;
import org.opencms.i18n.CmsEncoder;
import org.opencms.report.CmsShellReport;
import org.opencms.test.OpenCmsTestCase;
import org.opencms.test.OpenCmsTestProperties;
import org.opencms.util.CmsFileUtil;
import org.opencms.util.CmsStringUtil;
import org.opencms.workplace.tools.content.CmsElementRename;
import org.opencms.xml.CmsXmlEntityResolver;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Tests for the XML page that require a running OpenCms system.<p>
*
* @author Alexander Kandzior
*
* @version $Revision: 1.22 $
*
* @since 6.0.0
*/
public class TestCmsXmlPageInSystem extends OpenCmsTestCase {
private static final String UTF8 = CmsEncoder.ENCODING_UTF_8;
/**
* Default JUnit constructor.<p>
*
* @param arg0 JUnit parameters
*/
public TestCmsXmlPageInSystem(String arg0) {
super(arg0);
}
/**
* Test suite for this test class.<p>
*
* @return the test suite
*/
public static Test suite() {
OpenCmsTestProperties.initialize(org.opencms.test.AllTests.TEST_PROPERTIES_PATH);
TestSuite suite = new TestSuite();
suite.setName(TestCmsXmlPageInSystem.class.getName());
suite.addTest(new TestCmsXmlPageInSystem("testLinkParameterIssue"));
suite.addTest(new TestCmsXmlPageInSystem("testSchemaCachePublishIssue"));
suite.addTest(new TestCmsXmlPageInSystem("testLinkReplacement"));
suite.addTest(new TestCmsXmlPageInSystem("testCommentInSource"));
suite.addTest(new TestCmsXmlPageInSystem("testXmlPageRenameElement"));
suite.addTest(new TestCmsXmlPageInSystem("testMalformedPage"));
TestSetup wrapper = new TestSetup(suite) {
protected void setUp() {
setupOpenCms("simpletest", "/sites/default/");
}
protected void tearDown() {
removeOpenCms();
}
};
return wrapper;
}
/**
* Tests comments in the page HTML source code.<p>
*
* @throws Exception if something goes wrong
*/
public void testCommentInSource() throws Exception {
CmsObject cms = getCmsObject();
echo("Testing XML page comment handling");
String filename = "/folder1/subfolder11/test2.html";
List properties = new ArrayList();
properties.add(new CmsProperty(CmsPropertyDefinition.PROPERTY_CONTENT_ENCODING, UTF8, null));
properties.add(new CmsProperty(CmsPropertyDefinition.PROPERTY_LOCALE, Locale.ENGLISH.toString(), null));
String content = CmsXmlPageFactory.createDocument(Locale.ENGLISH, UTF8);
cms.createResource(filename, CmsResourceTypeXmlPage.getStaticTypeId(), content.getBytes(UTF8), properties);
CmsFile file = cms.readFile(filename);
CmsXmlPage page = CmsXmlPageFactory.unmarshal(cms, file);
String element = "test";
page.addValue(element, Locale.ENGLISH);
String result;
// first test using a simple comment
content = "<h1>Comment Test 1</h1>\n<!-- This is a comment -->\nSome text here...";
page.setStringValue(cms, element, Locale.ENGLISH, content);
result = page.getStringValue(cms, element, Locale.ENGLISH);
assertEquals(content, result);
// more complex comment test
content = "<!-- First comment --><h1>Comment Test 2</h1>\n<!-- This is a comment -->\nSome text here...<!-- Another comment -->";
page.setStringValue(cms, element, Locale.ENGLISH, content);
result = page.getStringValue(cms, element, Locale.ENGLISH);
assertEquals(content, result);
// mix of comment and links
content = "<!-- First comment --><img src=\"/data/opencms/image.gif\" alt=\"an image\" />\n<!-- This is a comment -->\n<a href=\"/data/opencms/index.html\">Link</a><!-- Another comment -->";
page.setStringValue(cms, element, Locale.ENGLISH, content);
result = page.getStringValue(cms, element, Locale.ENGLISH);
assertEquals(content, result);
// commented out html tags
content = "<!-- <img src=\"/data/opencms/image.gif\" alt=\"an image\" />\n<h1>some text</h1>--><!-- This is a comment -->\n<a href=\"/data/opencms/index.html\">Link</a><!-- Another comment -->";
page.setStringValue(cms, element, Locale.ENGLISH, content);
result = page.getStringValue(cms, element, Locale.ENGLISH);
assertEquals(content, result);
// nested comments
content = "<!-- Start of comment <!-- img src=\"/data/opencms/image.gif\" alt=\"an image\" / -->\n<h1>some text</h1><!-- This is a comment -->\n End of comment! --> <a href=\"/data/opencms/index.html\">Link</a><!-- Another comment -->";
page.setStringValue(cms, element, Locale.ENGLISH, content);
result = page.getStringValue(cms, element, Locale.ENGLISH);
assertEquals(content, result);
}
/**
* Tests link issue with certain parameters.<p>
*
* Description of the issue:
* links with parameters <code><a href="form.jsp?a=b&language=xy"></code> are replaced by
* <code><a href="form.jsp?a=b?uage=xy"></code>.<p>
*
* This issue turned out to be a bug in the HtmlParser component,
* updating the component from version 1.4 to version 1.5 solved the issue.<p>
*
* @throws Exception if something goes wrong
*/
public void testLinkParameterIssue() throws Exception {
CmsObject cms = getCmsObject();
echo("Testing XML page link parameter issue");
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -