Package org.drools.repository

Source Code of org.drools.repository.CategoryItemTest

package org.drools.repository;

import java.util.Iterator;
import java.util.List;

import javax.jcr.ItemNotFoundException;

import org.drools.repository.RulesRepository;
import org.drools.repository.CategoryItem;

import junit.framework.TestCase;

public class CategoryItemTest extends TestCase {



    public void testTagItem() throws Exception {

            final CategoryItem root = getRepo().loadCategory( "/" );

            root.addCategory( "TestTag", "nothing to see" );



            CategoryItem tagItem1 = getRepo().loadCategory("TestTag");
            assertNotNull(tagItem1);
            assertEquals("TestTag", tagItem1.getName());

            CategoryItem tagItem2 = getRepo().loadCategory("TestTag");
            assertNotNull(tagItem2);
            assertEquals("TestTag", tagItem2.getName());
            assertEquals(tagItem1, tagItem2);

            List originalCats = getRepo().loadCategory( "/" ).getChildTags(); //listCategoryNames();
            assertTrue(originalCats.size() > 0);

            CategoryItem rootCat = (CategoryItem) originalCats.get( 0 );
            assertNotNull(rootCat.getName());
            assertNotNull(rootCat.getFullPath());

            root.addCategory( "FootestTagItem", "nothing" );

            List cats = root.getChildTags();
            assertEquals(originalCats.size() + 1, cats.size());

            boolean found = false;
            for ( Iterator iter = cats.iterator(); iter.hasNext(); ) {
                CategoryItem element = (CategoryItem) iter.next();
                if (element.getName().equals( "FootestTagItem" )) {
                    found = true; break;
                }
            }

            assertTrue(found);

    }

    public void testCreateCateories() throws Exception {
        RulesRepository repo = getRepo();

        //load the root
        CategoryItem root = repo.loadCategory( "/" );

        CategoryItem item = root.addCategory("testCreateCategories", "this is a top level one");
        assertEquals("testCreateCategories", item.getName());
        assertEquals("testCreateCategories", item.getFullPath());

        item = repo.loadCategory( "testCreateCategories" );
        assertEquals("testCreateCategories", item.getName());

        item.remove();
        repo.save();

        try {
            repo.loadCategory( "testCreateCategories" );
            fail("this should not exist");
        } catch (RulesRepositoryException e) {
            assertNotNull(e.getCause());
        }
    }

    public void testGetChildTags() {
            CategoryItem tagItem1 = getRepo().loadCategory("TestTag");
            assertNotNull(tagItem1);
            assertEquals("TestTag", tagItem1.getName());

            List childTags = tagItem1.getChildTags();
            assertNotNull(childTags);
            assertEquals(0, childTags.size());

            tagItem1.addCategory( "TestChildTag1", "description" );

            childTags = tagItem1.getChildTags();
            assertNotNull(childTags);
            assertEquals(1, childTags.size());
            assertEquals("TestChildTag1", ((CategoryItem)childTags.get(0)).getName());

            tagItem1.addCategory( "AnotherChild", "ignore me" );

            childTags = tagItem1.getChildTags();
            assertNotNull(childTags);
            assertEquals(2, childTags.size());
    }

    public void testGetChildTag() {
            CategoryItem root = getRepo().loadCategory( "/" );
            CategoryItem tagItem1 = root.addCategory("testGetChildTag", "yeah");
            assertNotNull(tagItem1);
            assertEquals("testGetChildTag", tagItem1.getName());

            //test that child is added if not already in existence
            List childTags = tagItem1.getChildTags();
            assertNotNull(childTags);
            assertEquals(0, childTags.size());

            CategoryItem childTagItem1 = tagItem1.addCategory("TestChildTag1", "woo");
            assertNotNull(childTagItem1);
            assertEquals("TestChildTag1", childTagItem1.getName());

            //test that if already there, it is returned
            CategoryItem childTagItem2 = getRepo().loadCategory( "testGetChildTag/TestChildTag1");
            assertNotNull(childTagItem2);
            assertEquals("TestChildTag1", childTagItem2.getName());
            assertEquals(childTagItem1, childTagItem2);
    }

    public void testGetFullPath() {

            CategoryItem root = getRepo().loadCategory( "/" );

            CategoryItem tagItem1 = root.addCategory("testGetFullPath", "foo");
            assertNotNull(tagItem1);
            assertEquals("testGetFullPath", tagItem1.getFullPath());

            CategoryItem childTagItem1 = tagItem1.addCategory("TestChildTag1", "foo");
            assertNotNull(childTagItem1);
            assertEquals("testGetFullPath/TestChildTag1", childTagItem1.getFullPath());

            CategoryItem childTagItem2 = childTagItem1.addCategory("TestChildTag2", "wee");
            assertNotNull(childTagItem2);
            assertEquals("testGetFullPath/TestChildTag1/TestChildTag2", childTagItem2.getFullPath());



    }

    public void testRemoveCategoryUneeded() {
        RulesRepository repo = getRepo();
        repo.loadCategory( "/" ).addCategory( "testRemoveCat", "a" );
        AssetItem as = repo.loadDefaultPackage().addAsset( "testRemoveCategory", "a", "testRemoveCat", "drl" );
        as.checkin( "a" );
        as.updateCategoryList( new String[] {} );

        as.checkin( "a" );

        as = repo.loadDefaultPackage().loadAsset( "testRemoveCategory" );
        assertEquals(0, as.getCategories().size());


        repo.loadCategory( "testRemoveCat" ).remove();
        repo.save();

    }


    public void testRemoveCategoryLinkedWithArchived() {
        RulesRepository repo = getRepo();
        repo.loadCategory( "/" ).addCategory( "testRemoveCategoryWithArchivedCat", "a" );
        AssetItem as = repo.loadDefaultPackage().addAsset( "testRemoveCategoryWithArchivedAsset", "a", "testRemoveCategoryWithArchivedCat", "drl" );
        as.checkin( "a" );

        as.archiveItem(true);

        repo.loadCategory( "testRemoveCategoryWithArchivedCat" ).remove();
        repo.save();

//        as.remove();
    }

    private RulesRepository getRepo() {
        return RepositorySessionUtil.getRepository();
    }
}
TOP

Related Classes of org.drools.repository.CategoryItemTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.