Package org.jboss.arquillian.extension.byteman.impl.common

Source Code of org.jboss.arquillian.extension.byteman.impl.common.ExtractScriptUtil

/*
* JBoss, Home of Professional Open Source
* Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* 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.jboss.arquillian.extension.byteman.impl.common;

import org.jboss.arquillian.extension.byteman.api.BMRule;
import org.jboss.arquillian.extension.byteman.api.BMRules;
import org.jboss.arquillian.test.spi.event.suite.ClassLifecycleEvent;
import org.jboss.arquillian.test.spi.event.suite.TestLifecycleEvent;

/**
* ExtractScriptUtil
*
* @author <a href="mailto:aslak@redhat.com">Aslak Knutsen</a>
* @version $Revision: $
*/
public final class ExtractScriptUtil
{
    public static String extract(ClassLifecycleEvent event)
    {
        BMRule rule = event.getTestClass().getAnnotation(BMRule.class);
        BMRules rules = event.getTestClass().getAnnotation(BMRules.class);

        return createRules(rule, rules);
    }

    public static String extract(TestLifecycleEvent event)
    {
        BMRule rule = event.getTestMethod().getAnnotation(BMRule.class);
        BMRules rules = event.getTestMethod().getAnnotation(BMRules.class);

        return createRules(rule, rules);
    }

    private static String createRules(BMRule rule, BMRules rules)
    {
        if(rule != null || rules != null)
        {
           return GenerateScriptUtil.constructScriptText(toRuleArray(rule, rules));
        }
        return null;
    }

    private static BMRule[] toRuleArray(BMRule rule, BMRules rules)
    {
       if(rule != null)
       {
          return new BMRule[] {rule};
       }
       return rules.value();
    }
}
TOP

Related Classes of org.jboss.arquillian.extension.byteman.impl.common.ExtractScriptUtil

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.