ruleadministratortest.java

来自「jboss规则引擎」· Java 代码 · 共 91 行

JAVA
91
字号
package org.drools.jsr94.rules.admin;

/*
 * 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.
 */

import javax.rules.admin.LocalRuleExecutionSetProvider;
import javax.rules.admin.RuleAdministrator;
import javax.rules.admin.RuleExecutionSetDeregistrationException;
import javax.rules.admin.RuleExecutionSetProvider;
import javax.rules.admin.RuleExecutionSetRegisterException;

import org.drools.jsr94.rules.RuleEngineTestBase;

/**
 * Test the RuleRuntime implementation.
 *
 * @author N. Alex Rupp (n_alex <at>codehaus.org)
 * @author <a href="mailto:thomas.diesler@softcon-itec.de">thomas diesler </a>
 */
public class RuleAdministratorTest extends RuleEngineTestBase {
    private RuleAdministrator ruleAdministrator;

    /**
     * Obtain an instance of <code>RuleAdministrator</code>.
     */
    protected void setUp() throws Exception {
        super.setUp();
        this.ruleAdministrator = this.ruleServiceProvider.getRuleAdministrator();
    }

    /**
     * Test getRuleExecutionSetProvider.
     */
    public void testRuleExecutionSetProvider() throws Exception {
        final RuleExecutionSetProvider ruleExecutionSetProvider = this.ruleAdministrator.getRuleExecutionSetProvider( null );
        assertNotNull( "cannot obtain RuleExecutionSetProvider",
                       ruleExecutionSetProvider );
    }

    /**
     * Test getLocalRuleExecutionSetProvider.
     */
    public void testLocalRuleExecutionSetProvider() throws Exception {
        final LocalRuleExecutionSetProvider localRuleExecutionSetProvider = this.ruleAdministrator.getLocalRuleExecutionSetProvider( null );
        assertNotNull( "cannot obtain LocalRuleExecutionSetProvider",
                       localRuleExecutionSetProvider );
    }

    /**
     * Test registerRuleExecutionSet.
     */
    public void testRegisterRuleExecutionSet() throws Exception {
        try {
            // that it works is tested elsewhere
            this.ruleAdministrator.registerRuleExecutionSet( "test URI",
                                                             null,
                                                             null );
            fail( "RuleExecutionSetRegisterException expected" );
        } catch ( final RuleExecutionSetRegisterException ex ) {
            // ignore exception
        }
    }

    /**
     * Test deregisterRuleExecutionSet.
     */
    public void testDeregisterRuleExecutionSet() throws Exception {
        try {
            // that it works is tested else where
            this.ruleAdministrator.deregisterRuleExecutionSet( "test URI",
                                                               null );
            fail( "RuleExecutionSetUnregisterException expected" );
        } catch ( final RuleExecutionSetDeregistrationException ex ) {
            // ignore exception
        }
    }
}

⌨️ 快捷键说明

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