/* * JBoss, Home of Professional Open Source * Copyright 2010, Red Hat Middleware LLC, and individual contributors * by the @authors tag. 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.container.reloaded.embedded_1; import java.lang.reflect.Method; import org.jboss.arquillian.spi.TestEnricher; import org.jboss.arquillian.spi.core.Instance; import org.jboss.arquillian.spi.core.annotation.Inject; import org.jboss.beans.info.spi.BeanAccessMode; import org.jboss.beans.metadata.plugins.builder.BeanMetaDataBuilderFactory; import org.jboss.beans.metadata.spi.builder.BeanMetaDataBuilder; import org.jboss.bootstrap.api.mc.server.MCServer; import org.jboss.kernel.spi.dependency.KernelController; /** * {@link TestEnricher} implementation which provides all injection * and service features of the Microcontainer to the test instance * by installing it into MC. * * @author <a href="mailto:andrew.rubinger@jboss.org">ALR</a> * @version $Revision: $ */ public class ReloadedTestEnricher implements TestEnricher { //-------------------------------------------------------------------------------------|| // Class Members ----------------------------------------------------------------------|| //-------------------------------------------------------------------------------------|| /** * MC Bind name under which the test will be installed * TODO: Should be private, this wider access is needed by the {@link ReloadedContainer} * @see http://community.jboss.org/thread/150796?tstart=0 */ static final String BIND_NAME_TEST = "org.jboss.arquillian.CurrentTest"; //-------------------------------------------------------------------------------------|| // Instance Members -------------------------------------------------------------------|| //-------------------------------------------------------------------------------------|| @Inject private Instance<MCServer> mcServer; //-------------------------------------------------------------------------------------|| // Required Implementations -----------------------------------------------------------|| //-------------------------------------------------------------------------------------|| /** * {@inheritDoc} * @see org.jboss.arquillian.spi.TestEnricher#enrich(org.jboss.arquillian.spi.Context, java.lang.Object) */ public void enrich(final Object testCase) { // Obtain the server as set from the container final MCServer server = mcServer.get(); assert server != null : "MC Server was not set by the container"; // Get the Controller final KernelController controller = server.getKernel().getController(); // Install the test instance itself into MC (so injections may be honored) final BeanMetaDataBuilder bmdb = BeanMetaDataBuilderFactory.createBuilder(BIND_NAME_TEST, testCase.getClass().getName()).setAccessMode(BeanAccessMode.ALL); try { controller.install(bmdb.getBeanMetaData(), testCase); } catch (final Throwable e) { throw new RuntimeException("Could not enrich " + testCase + " by installing the instance into MC", e); } } /** * {@inheritDoc} * @see org.jboss.arquillian.spi.TestEnricher#resolve(java.lang.reflect.Method) */ public Object[] resolve(final Method method) { return new Object[method.getParameterTypes().length]; } }