📄 testsiblings.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/test/org/opencms/file/TestSiblings.java,v $
* Date : $Date: 2007-08-13 16:29:57 $
* Version: $Revision: 1.23 $
*
* 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.file;
import org.opencms.db.CmsPublishList;
import org.opencms.db.CmsResourceState;
import org.opencms.file.types.CmsResourceTypeBinary;
import org.opencms.file.types.CmsResourceTypeFolder;
import org.opencms.file.types.CmsResourceTypePlain;
import org.opencms.file.types.CmsResourceTypeXmlPage;
import org.opencms.lock.CmsLockType;
import org.opencms.main.OpenCms;
import org.opencms.relations.CmsRelation;
import org.opencms.relations.CmsRelationFilter;
import org.opencms.relations.CmsRelationType;
import org.opencms.report.CmsShellReport;
import org.opencms.security.CmsOrganizationalUnit;
import org.opencms.security.CmsPermissionSet;
import org.opencms.security.I_CmsPrincipal;
import org.opencms.test.OpenCmsTestCase;
import org.opencms.test.OpenCmsTestProperties;
import org.opencms.test.OpenCmsTestResourceFilter;
import org.opencms.util.CmsResourceTranslator;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Unit test for operations on siblings.<p>
*
* @author Thomas Weckert
*
* @version $Revision: 1.23 $
*/
public class TestSiblings extends OpenCmsTestCase {
/**
* Default JUnit constructor.<p>
*
* @param arg0 JUnit parameters
*/
public TestSiblings(String arg0) {
super(arg0);
}
/**
* Creates a copy of a resource as a new sibling.<p>
*
* @param tc the OpenCms test case
* @param cms the current user's Cms object
* @param source path/resource name of the existing resource
* @param target path/resource name of the new sibling
* @throws Exception if something goes wrong
*/
public static void copyResourceAsSibling(OpenCmsTestCase tc, CmsObject cms, String source, String target)
throws Exception {
// save the source in the store
tc.storeResources(cms, source);
// copy source to target as a sibling, the new sibling should not be locked
cms.copyResource(source, target, CmsResource.COPY_AS_SIBLING);
// validate the source sibling
// validate if all unmodified fields on the source resource are still equal
tc.assertFilter(cms, source, OpenCmsTestResourceFilter.FILTER_EXISTING_SIBLING);
// validate if the last-modified-in-project field is the current project
tc.assertProject(cms, source, cms.getRequestContext().currentProject());
// validate if the sibling count field has been incremented
tc.assertSiblingCountIncremented(cms, source, 1);
// validate if the sibling does not have a red flag
tc.assertModifiedInCurrentProject(cms, source, false);
// validate if the lock is an exclusive shared lock for the current user
tc.assertLock(cms, source, CmsLockType.SHARED_EXCLUSIVE);
// validate the target sibling
// validate the fields that both in the existing and the new sibling have to be equal
tc.assertFilter(cms, source, target, OpenCmsTestResourceFilter.FILTER_EXISTING_AND_NEW_SIBLING);
// validate if the state of the new sibling is "new" (blue)
tc.assertState(cms, target, CmsResource.STATE_NEW);
// validate if the new sibling has a red flag
tc.assertModifiedInCurrentProject(cms, target, true);
// validate if the lock is an exclusive lock for the current user
tc.assertLock(cms, target, CmsLockType.EXCLUSIVE);
}
/**
* Creates a new sibling of a resource.<p>
*
* @param tc the OpenCms test case
* @param cms the current user's Cms object
* @param source path/resource name of the existing resource
* @param target path/resource name of the new sibling
* @throws Exception if something goes wrong
*/
public static void createSibling(OpenCmsTestCase tc, CmsObject cms, String source, String target) throws Exception {
// save the source in the store
tc.storeResources(cms, source);
// create a new sibling from the source
List properties = cms.readPropertyObjects(source, false);
cms.createSibling(source, target, properties);
// validate the source sibling
// validate if all unmodified fields of the source are still equal
tc.assertFilter(cms, source, OpenCmsTestResourceFilter.FILTER_EXISTING_SIBLING);
// validate if the last-modified-in-project field is the current project
tc.assertProject(cms, source, cms.getRequestContext().currentProject());
// validate if the sibling count field has been incremented
tc.assertSiblingCountIncremented(cms, source, 1);
// validate if the sibling does not have a red flag
tc.assertModifiedInCurrentProject(cms, source, false);
// validate if the lock is an exclusive shared lock for the current user
tc.assertLock(cms, source, CmsLockType.SHARED_EXCLUSIVE);
// validate the target sibling
// validate the fields that both in the existing and the new sibling have to be equal
tc.assertFilter(cms, source, target, OpenCmsTestResourceFilter.FILTER_EXISTING_AND_NEW_SIBLING);
// validate if the state of the new sibling is "new" (blue)
tc.assertState(cms, target, CmsResource.STATE_NEW);
// validate if the new sibling has a red flag
tc.assertModifiedInCurrentProject(cms, target, true);
// validate if the lock is an exclusive lock for the current user
tc.assertLock(cms, target, CmsLockType.EXCLUSIVE);
}
/**
* 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(TestSiblings.class.getName());
suite.addTest(new TestSiblings("testSiblingsCopy"));
suite.addTest(new TestSiblings("testSiblingsCreate"));
suite.addTest(new TestSiblings("testSiblingIssueAfterImport"));
suite.addTest(new TestSiblings("testDeleteAllSiblings"));
suite.addTest(new TestSiblings("testSiblingStateIssue"));
suite.addTest(new TestSiblings("testSiblingsRelations"));
suite.addTest(new TestSiblings("testSiblingProjects"));
suite.addTest(new TestSiblings("testSiblingsCreateIssue"));
suite.addTest(new TestSiblings("testSiblingsV7PublishIssue"));
TestSetup wrapper = new TestSetup(suite) {
protected void setUp() {
setupOpenCms("simpletest", "/sites/default/");
}
protected void tearDown() {
removeOpenCms();
}
};
return wrapper;
}
/**
* Tests deletion of a resource together with all siblings.<p>
*
* @throws Throwable if something goes wrong
*/
public void testDeleteAllSiblings() throws Throwable {
echo("Creating a new resource with 2 siblings, then deleting it with all siblings again");
CmsObject cms = getCmsObject();
String sib1Name = "/folder1/sib1.txt";
String sib2Name = "/folder1/sib2.txt";
String sib3Name = "/folder1/sib3.txt";
cms.createResource(sib1Name, CmsResourceTypePlain.getStaticTypeId());
cms.createSibling(sib1Name, sib2Name, Collections.EMPTY_LIST);
cms.createSibling(sib1Name, sib3Name, Collections.EMPTY_LIST);
cms.deleteResource(sib1Name, CmsResource.DELETE_REMOVE_SIBLINGS);
CmsResource sib2Resource = null;
try {
sib2Resource = cms.readResource(sib2Name);
} catch (CmsVfsResourceNotFoundException e) {
// intentionally left blank
}
if (sib2Resource != null) {
fail("Sibling " + sib2Name + " has not been deleted!");
}
CmsResource sib3Resource = null;
try {
sib3Resource = cms.readResource(sib3Name);
} catch (CmsVfsResourceNotFoundException e) {
// intentionally left blank
}
if (sib3Resource != null) {
fail("Sibling " + sib3Name + " has not been deleted!");
}
}
/**
* Tests the link management features with siblings.<p>
*
* @throws Throwable if something goes wrong
*/
public void testSiblingsRelations() throws Throwable {
echo("Testing link management features with siblings");
CmsObject cms = getCmsObject();
String sib1Name = "/folder1/sib1.html";
String sib2Name = "/folder1/sib2.html";
String sib3Name = "/folder1/sib3.html";
String targetName = "/folder1/image2.gif";
CmsResource target = cms.readResource(targetName);
CmsResource sib1 = cms.createResource(sib1Name, CmsResourceTypeXmlPage.getStaticTypeId());
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -