testcmsxmlcontentlinks.java
来自「找了很久才找到到源代码」· Java 代码 · 共 913 行 · 第 1/3 页
JAVA
913 行
/*
* File : $Source: /usr/local/cvs/opencms/test/org/opencms/xml/content/TestCmsXmlContentLinks.java,v $
* Date : $Date: 2007-08-13 16:30:14 $
* Version: $Revision: 1.3 $
*
* This library is part of OpenCms -
* the Open Source Content Management System
*
* Copyright (c) 2002 - 2007 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.content;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsProject;
import org.opencms.file.CmsResource;
import org.opencms.file.types.CmsResourceTypePlain;
import org.opencms.i18n.CmsEncoder;
import org.opencms.main.OpenCms;
import org.opencms.relations.CmsLink;
import org.opencms.relations.CmsRelationType;
import org.opencms.staticexport.CmsLinkTable;
import org.opencms.test.OpenCmsTestCase;
import org.opencms.test.OpenCmsTestProperties;
import org.opencms.util.CmsFileUtil;
import org.opencms.xml.CmsXmlEntityResolver;
import org.opencms.xml.types.CmsXmlHtmlValue;
import org.opencms.xml.types.CmsXmlVfsFileValue;
import java.io.IOException;
import java.util.Locale;
import java.util.Map;
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Tests the OpenCms XML contents with real VFS operations.<p>
*
* @author Michael Moossen
*
* @version $Revision: 1.3 $
*/
public class TestCmsXmlContentLinks extends OpenCmsTestCase {
/** The link original filename. */
private static final String FILENAME = "/folder1/image2.gif";
/** The new link filename. */
private static final String FILENAME2 = "/folder1/image2.new.gif";
/** simple xml content schema system id. */
private static final String SCHEMA_SYSTEM_ID_11 = "http://www.opencms.org/test11.xsd";
/** nested xml content schema system id. */
private static final String SCHEMA_SYSTEM_ID_12 = "http://www.opencms.org/test12.xsd";
/** simple xml content schema system id, with parent invalidation. */
private static final String SCHEMA_SYSTEM_ID_13 = "http://www.opencms.org/test13.xsd";
/** simple xml content schema system id, with attachment relation type. */
private static final String SCHEMA_SYSTEM_ID_14 = "http://www.opencms.org/test14.xsd";
/**
* Default JUnit constructor.<p>
*
* @param arg0 JUnit parameters
*/
public TestCmsXmlContentLinks(String arg0) {
super(arg0);
}
/**
* Compares two link objects.<p>
*
* @param expected the expected link object
* @param result the resulting link object
* @param assertStructureId if the structure id should be asserted or not
*/
public static void assertLink(CmsLink expected, CmsLink result, boolean assertStructureId) {
// assert attributes
assertEquals(expected.getName(), result.getName());
assertEquals(expected.getType(), result.getType());
assertEquals(expected.isInternal(), result.isInternal());
// assert elements
assertEquals(expected.getTarget(), result.getTarget());
assertEquals(expected.getQuery(), result.getQuery());
assertEquals(expected.getAnchor(), result.getAnchor());
if (assertStructureId) {
assertEquals(expected.getStructureId(), result.getStructureId());
}
}
/**
* Returns the unique link for the given html node in the given xml content.<p>
*
* @param cms the cms context
* @param xmlcontent the xml content
* @param nodeName the html node name
* @param linkName the name of the link
*
* @return the link object
*/
public static CmsLink getHtmlLink(CmsObject cms, CmsXmlContent xmlcontent, String nodeName, String linkName) {
CmsLinkTable links = ((CmsXmlHtmlValue)xmlcontent.getValue(nodeName, Locale.ENGLISH)).getLinkTable();
assertEquals(links.size(), 1);
CmsLink link = links.getLink(linkName);
assertNotNull(link);
link.checkConsistency(cms);
return link;
}
/**
* Returns the link for the given vfs file reference node in the given xml content.<p>
*
* @param cms the cms context
* @param xmlcontent the xml content
* @param nodeName the vfs file reference node name
*
* @return the link object
*/
public static CmsLink getVfsFileRefLink(CmsObject cms, CmsXmlContent xmlcontent, String nodeName) {
CmsLink link = ((CmsXmlVfsFileValue)xmlcontent.getValue(nodeName, Locale.ENGLISH)).getLink(cms);
assertNotNull(link);
return link;
}
/**
* 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(TestCmsXmlContentLinks.class.getName());
suite.addTest(new TestCmsXmlContentLinks("testUpdatePath"));
suite.addTest(new TestCmsXmlContentLinks("testUpdateId"));
suite.addTest(new TestCmsXmlContentLinks("testRemoveNode"));
suite.addTest(new TestCmsXmlContentLinks("testRemoveParent"));
suite.addTest(new TestCmsXmlContentLinks("testRelationType"));
suite.addTest(new TestCmsXmlContentLinks("testInvalidateFalse"));
TestSetup wrapper = new TestSetup(suite) {
protected void setUp() {
setupOpenCms("simpletest", "/sites/default/");
try {
initSchemas();
} catch (IOException e) {
e.printStackTrace();
}
}
protected void tearDown() {
removeOpenCms();
}
};
return wrapper;
}
/**
* Initializes all schema definitions.<p>
*
* @throws IOException if something goes wrong
*/
protected static void initSchemas() throws IOException {
System.out.println("Initializing schema definitions");
// unmarshal content definition
String content = CmsFileUtil.readFile(
"org/opencms/xml/content/xmlcontent-definition-11.xsd",
CmsEncoder.ENCODING_UTF_8);
// store content definition in entitiy resolver
CmsXmlEntityResolver.cacheSystemId(SCHEMA_SYSTEM_ID_11, content.getBytes(CmsEncoder.ENCODING_UTF_8));
// unmarshal content definition
content = CmsFileUtil.readFile(
"org/opencms/xml/content/xmlcontent-definition-13.xsd",
CmsEncoder.ENCODING_UTF_8);
// store content definition in entitiy resolver
CmsXmlEntityResolver.cacheSystemId(SCHEMA_SYSTEM_ID_13, content.getBytes(CmsEncoder.ENCODING_UTF_8));
// unmarshal content definition
content = CmsFileUtil.readFile(
"org/opencms/xml/content/xmlcontent-definition-12.xsd",
CmsEncoder.ENCODING_UTF_8);
// store content definition in entitiy resolver
CmsXmlEntityResolver.cacheSystemId(SCHEMA_SYSTEM_ID_12, content.getBytes(CmsEncoder.ENCODING_UTF_8));
// unmarshal content definition
content = CmsFileUtil.readFile(
"org/opencms/xml/content/xmlcontent-definition-14.xsd",
CmsEncoder.ENCODING_UTF_8);
// store content definition in entitiy resolver
CmsXmlEntityResolver.cacheSystemId(SCHEMA_SYSTEM_ID_14, content.getBytes(CmsEncoder.ENCODING_UTF_8));
}
/**
* Returns a link object prototype for the given type.<p>
*
* @param cms the cms context
* @param forHtml <code>true</code> for html or <code>false</code> for vfs file refs
*
* @return a link object prototype
*/
private static CmsLink getExpected(CmsObject cms, boolean forHtml) {
String name = forHtml ? "link0" : CmsLink.DEFAULT_NAME;
CmsRelationType type = forHtml ? CmsRelationType.EMBEDDED_IMAGE : CmsRelationType.XML_WEAK;
String target = cms.getRequestContext().addSiteRoot(FILENAME);
CmsLink expected = new CmsLink(name, type, target, true);
expected.checkConsistency(cms);
return expected;
}
/**
* Updates a link, and checks the result against the given resource.<p>
*
* @param cms the cms context
* @param link the lin k to update
* @param resource the resource to check against
*/
private static void updateLink(CmsObject cms, CmsLink link, CmsResource resource) {
link.checkConsistency(cms);
assertEquals(resource.getRootPath(), link.getTarget());
assertEquals(resource.getStructureId(), link.getStructureId());
}
/**
* Test removing the node of a broken link.<p>
*
* @throws Exception in case something goes wrong
*/
public void testRemoveNode() throws Exception {
CmsObject cms = getCmsObject();
echo("Testing removing the node of a broken link");
CmsXmlEntityResolver resolver = new CmsXmlEntityResolver(cms);
// now read the XML content
String content = CmsFileUtil.readFile("org/opencms/xml/content/xmlcontent-13.xml", CmsEncoder.ENCODING_UTF_8);
CmsXmlContent xmlcontent = CmsXmlContentFactory.unmarshal(cms, content, CmsEncoder.ENCODING_UTF_8, resolver);
// validate the XML structure
xmlcontent.validateXmlStructure(resolver);
// get and validate the vfs reference
CmsLink expectedRefLink = getExpected(cms, false);
CmsLink refLink = getVfsFileRefLink(cms, xmlcontent, "VfsLink");
assertLink(expectedRefLink, refLink, true);
// get and validate the html link
CmsLink expectedHtmlLink = getExpected(cms, true);
CmsLink htmlLink = getHtmlLink(cms, xmlcontent, "Html", "link0");
assertLink(expectedHtmlLink, htmlLink, true);
// change the time window
cms.lockResource(FILENAME);
cms.setDateReleased(FILENAME, System.currentTimeMillis() + 1000000, false);
cms.setDateExpired(FILENAME, System.currentTimeMillis() + 2000000, false);
cms.unlockResource(FILENAME);
OpenCms.getPublishManager().publishResource(cms, FILENAME);
OpenCms.getPublishManager().waitWhileRunning();
// check offline, without link checking.
// set the flag to prevent link checking
cms.getRequestContext().setRequestTime(CmsResource.DATE_RELEASED_EXPIRED_IGNORE);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?