⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testcategoryresourcecollectors.java

📁 找了很久才找到到源代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/*
 * File   : $Source: /usr/local/cvs/opencms/test/org/opencms/file/collectors/TestCategoryResourceCollectors.java,v $
 * Date   : $Date: 2007-08-13 16:29:51 $
 * 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.file.collectors;

import org.opencms.file.CmsObject;
import org.opencms.file.CmsResource;
import org.opencms.file.types.CmsResourceTypeFolder;
import org.opencms.file.types.CmsResourceTypeJsp;
import org.opencms.file.types.CmsResourceTypePlain;
import org.opencms.relations.CmsCategory;
import org.opencms.relations.CmsCategoryService;
import org.opencms.test.OpenCmsTestCase;
import org.opencms.test.OpenCmsTestProperties;

import java.util.List;

import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;

/**
 * Unit test for the {@link CmsCategoryResourceCollector}.<p>
 * 
 * @author Raphael Schnuck 
 * @version $Revision: 1.3 $
 */
public class TestCategoryResourceCollectors extends OpenCmsTestCase {

    /**
     * Default JUnit constructor.<p>
     * 
     * @param arg0 JUnit parameters
     */
    public TestCategoryResourceCollectors(String arg0) {

        super(arg0);
    }

    /**
     * Initializes the resources needed for the tests.<p>
     * 
     * @param cms the cms object
     * 
     * @throws Exception if something goes wrong
     */
    public static synchronized void initResources(CmsObject cms) throws Exception {

        synchronized (cms) {
            cms.createResource("/folder1", CmsResourceTypeFolder.getStaticTypeId());
            cms.wait(100);

            // jsps
            cms.createResource("/file1", CmsResourceTypeJsp.getStaticTypeId(), null, null);
            cms.wait(100);
            cms.createResource("/folder1/file3", CmsResourceTypeJsp.getStaticTypeId(), null, null);
            cms.wait(100);
            cms.createResource("/file3", CmsResourceTypeJsp.getStaticTypeId(), null, null);
            cms.wait(100);
            cms.createResource("/folder1/file1", CmsResourceTypeJsp.getStaticTypeId(), null, null);
            cms.wait(100);
            cms.createResource("/file5", CmsResourceTypeJsp.getStaticTypeId(), null, null);
            cms.wait(100);

            // plains
            cms.createResource("/file2", CmsResourceTypePlain.getStaticTypeId(), null, null);
            cms.wait(100);
            cms.createResource("/folder1/file4", CmsResourceTypePlain.getStaticTypeId(), null, null);
            cms.wait(100);
            cms.createResource("/folder1/file2", CmsResourceTypePlain.getStaticTypeId(), null, null);
            cms.wait(100);
            cms.createResource("/file4", CmsResourceTypePlain.getStaticTypeId(), null, null);
        }
        CmsCategoryService service = CmsCategoryService.getInstance();
        CmsCategory catBusiness = service.createCategory(
            cms,
            null,
            "business",
            "business title",
            "business description");
        CmsCategory catSports = service.createCategory(cms, null, "sports", "sports title", "sports description");

        // business
        service.addResourceToCategory(cms, "/file1", catBusiness.getPath());
        service.addResourceToCategory(cms, "/file5", catBusiness.getPath());
        service.addResourceToCategory(cms, "/folder1/file3", catBusiness.getPath());
        service.addResourceToCategory(cms, "/file4", catBusiness.getPath());
        service.addResourceToCategory(cms, "/folder1/file4", catBusiness.getPath());

        // sports
        service.addResourceToCategory(cms, "/file3", catSports.getPath());
        service.addResourceToCategory(cms, "/folder1/file1", catSports.getPath());
        service.addResourceToCategory(cms, "/file2", catSports.getPath());
        service.addResourceToCategory(cms, "/folder1/file2", catSports.getPath());
    }

    /**
     * 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(TestCategoryResourceCollectors.class.getName());

        suite.addTest(new TestCategoryResourceCollectors("testCollectAllInFolderResourceType"));
        suite.addTest(new TestCategoryResourceCollectors("testCollectAllInFolderSortByCategory"));
        suite.addTest(new TestCategoryResourceCollectors("testCollectAllInFolderSortByDate"));
        suite.addTest(new TestCategoryResourceCollectors("testCollectAllResourcesResourceType"));
        suite.addTest(new TestCategoryResourceCollectors("testCollectAllResourcesSortByCategory"));
        suite.addTest(new TestCategoryResourceCollectors("testCollectAllResourcesSortByDate"));
        suite.addTest(new TestCategoryResourceCollectors("testCollectAllInFolderSubTree"));

        TestSetup wrapper = new TestSetup(suite) {

            protected void setUp() {

                CmsObject cms = setupOpenCms(null, null, false);
                try {
                    initResources(cms);
                } catch (Exception exc) {
                    exc.printStackTrace();
                    fail(exc.getMessage());
                }
            }

            protected void tearDown() {

                removeOpenCms();
            }
        };

        return wrapper;
    }

    /**
     * Test the collection of resources for a category in a given folder filtered by a resource type and no specified resource type.<p>
     * 
     * @throws Throwable if something goes wrong
     */
    public void testCollectAllInFolderResourceType() throws Throwable {

        CmsObject cms = getCmsObject();
        String resTypeIdPlain = CmsResourceTypePlain.getStaticTypeName();
        echo("Testing allInFolderResourceType resource collector");

        I_CmsResourceCollector collector = new CmsCategoryResourceCollector();

        List resources = collector.getResults(cms, "allKeyValuePairFiltered", "resource=/folder1/|resourceType="
            + resTypeIdPlain
            + "|categoryTypes=business/");

        assertEquals(1, resources.size());

        resources = collector.getResults(cms, "allKeyValuePairFiltered", "resource=/folder1/|categoryTypes=business/");

        assertEquals(2, resources.size());
    }

    /**
     * Test the collection of resources for given categories in a given folder sorted by the category.<p>
     * 
     * @throws Throwable if something goes wrong
     */
    public void testCollectAllInFolderSortByCategory() throws Throwable {

        CmsObject cms = getCmsObject();
        echo("Testing allInFolderSortByCategory resource collector");

        I_CmsResourceCollector collector = new CmsCategoryResourceCollector();

        List resources = collector.getResults(
            cms,
            "allKeyValuePairFiltered",
            "resource=/folder1/|categoryTypes=business/,sports/|sortBy=category");

        CmsResource res;

        assertEquals(4, resources.size());

        res = (CmsResource)resources.get(0);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -