Package org.drools.guvnor.server.contenthandler.drools

Source Code of org.drools.guvnor.server.contenthandler.drools.ContentHandlerIntegrationTest

/*
* Copyright 2005 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.drools.guvnor.server.contenthandler.drools;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;

import org.drools.guvnor.client.common.AssetFormats;
import org.drools.guvnor.client.rpc.BuilderResult;
import org.drools.guvnor.server.test.GuvnorIntegrationTest;
import org.drools.guvnor.server.contenthandler.ContentManager;
import org.drools.guvnor.server.contenthandler.DefaultContentHandler;
import org.drools.guvnor.server.contenthandler.ModelContentHandler;
import org.drools.ide.common.client.modeldriven.dt52.GuidedDecisionTable52;
import org.drools.ide.common.server.util.GuidedDTXMLPersistence;
import org.drools.repository.AssetItem;
import org.drools.repository.ModuleItem;
import org.drools.repository.RulesRepository;
import org.junit.Test;

public class ContentHandlerIntegrationTest extends GuvnorIntegrationTest {

    @Test
    public void testContentFormat() {
        assertTrue( ContentManager.getHandler( AssetFormats.DRL ) instanceof DRLFileContentHandler );
        assertTrue( ContentManager.getHandler( AssetFormats.DSL ) instanceof DSLDefinitionContentHandler );
        assertTrue( ContentManager.getHandler( AssetFormats.DSL_TEMPLATE_RULE ) instanceof DSLRuleContentHandler );
        assertTrue( ContentManager.getHandler( AssetFormats.BUSINESS_RULE ) instanceof BRLContentHandler );
        assertTrue( ContentManager.getHandler( AssetFormats.DECISION_SPREADSHEET_XLS ) instanceof DecisionTableXLSHandler );
        assertTrue( ContentManager.getHandler( AssetFormats.ENUMERATION ) instanceof EnumerationContentHandler );
        assertTrue( ContentManager.getHandler( AssetFormats.DECISION_TABLE_GUIDED ) instanceof GuidedDTContentHandler );
        assertTrue( ContentManager.getHandler( AssetFormats.DRL_MODEL ) instanceof FactModelContentHandler );

        assertTrue( ContentManager.getHandler( "XXX" ) instanceof DefaultContentHandler );

    }

    @Test
    public void testRuleAssetType() {
        assertTrue( ContentManager.getHandler( AssetFormats.DRL ).isRuleAsset() );
        assertTrue( ContentManager.getHandler( AssetFormats.DSL_TEMPLATE_RULE ).isRuleAsset() );
        assertTrue( ContentManager.getHandler( AssetFormats.BUSINESS_RULE ).isRuleAsset() );
        assertTrue( ContentManager.getHandler( AssetFormats.DECISION_SPREADSHEET_XLS ).isRuleAsset() );
        assertTrue( ContentManager.getHandler( AssetFormats.DECISION_TABLE_GUIDED ).isRuleAsset() );

        assertFalse( ContentManager.getHandler( AssetFormats.DRL_MODEL ).isRuleAsset() );
        assertFalse( ContentManager.getHandler( AssetFormats.DSL ).isRuleAsset() );
        assertFalse( ContentManager.getHandler( AssetFormats.MODEL ).isRuleAsset() );
        assertFalse( ContentManager.getHandler( AssetFormats.ENUMERATION ).isRuleAsset() );
    }

    @Test
    public void testValidating() throws Exception {

        RulesRepository repo = rulesRepository;

        ModuleItem pkg = repo.loadDefaultModule();
        AssetItem asset = pkg.addAsset( "testValidatingEnum",
                                        "" );
        asset.updateFormat( AssetFormats.ENUMERATION );
        asset.updateContent( "'Person.age' : [1, 2, 3]" );

        EnumerationContentHandler ch = new EnumerationContentHandler();
        BuilderResult result =  ch.validateAsset( asset );
        assertNotNull(result);
        assertEquals(0, result.getLines().size());

        asset.updateContent( "goober boy" );
        result = ch.validateAsset( asset );
        assertFalse(result.getLines().size() == 0);
        assertEquals(asset.getName(), result.getLines().get( 0 ).getAssetName());
        assertEquals(asset.getFormat(), result.getLines().get( 0 ).getAssetFormat());
        assertNotNull(result.getLines().get( 0 ).getMessage());
        assertEquals(asset.getUUID(), result.getLines().get( 0 ).getUuid());

    }

    @Test
    public void testEmptyDT() throws Exception {

        RulesRepository repo = rulesRepository;

        ModuleItem pkg = repo.loadDefaultModule();
        AssetItem asset = pkg.addAsset( "testEmptyDT",
                                        "" );
        asset.updateFormat( AssetFormats.DECISION_TABLE_GUIDED );
        GuidedDecisionTable52 gt = new GuidedDecisionTable52();
        asset.updateContent( GuidedDTXMLPersistence.getInstance().marshal( gt ) );
        asset.checkin( "" );

        GuidedDTContentHandler ch = new GuidedDTContentHandler();
        ch.compile( null,
                    asset,
                    null );

    }

    @Test
    public void testNameConvertion() {
        assertEquals( "com.foo.Bar",
                      ModelContentHandler.convertPathToName( "com/foo/Bar.class" ) );
    }

}
TOP

Related Classes of org.drools.guvnor.server.contenthandler.drools.ContentHandlerIntegrationTest

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.