Package org.jboss.arquillian.spring.deployer.client

Source Code of org.jboss.arquillian.spring.deployer.client.SpringDeployerConfigurationProducerTestCase

/*
* JBoss, Home of Professional Open Source
* Copyright 2012, 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.spring.deployer.client;

import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor;
import org.jboss.arquillian.core.api.Instance;
import org.jboss.arquillian.core.api.InstanceProducer;
import org.jboss.arquillian.spring.deployer.configuration.SpringDeployerConfiguration;
import org.jboss.arquillian.spring.deployer.utils.TestReflectionHelper;
import org.jboss.arquillian.test.spi.event.suite.BeforeSuite;
import org.jboss.shrinkwrap.descriptor.api.Descriptors;
import org.junit.Before;
import org.junit.Test;
import org.mockito.ArgumentCaptor;

import java.io.File;
import java.io.FileInputStream;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

/**
* <p>Tests {@link SpringDeployerConfigurationProducer} class.</p>
*
* @author <a href="mailto:jmnarloch@gmail.com">Jakub Narloch</a>
*/
public class SpringDeployerConfigurationProducerTestCase {

    /**
     * <p>Represents the instance of tested class.</p>
     */
    private SpringDeployerConfigurationProducer instance;

    /**
     * <p>Sets up the test environment.</p>
     */
    @Before
    public void setUp() {

        instance = new SpringDeployerConfigurationProducer();
    }

    /**
     * <p>Tests {@link SpringDeployerConfigurationProducer#initConfiguration(BeforeSuite)} method.</p>
     *
     * @throws Exception if any error occurs
     */
    @Test
    public void testInitConfigurationDefault() throws Exception {

        BeforeSuite event = new BeforeSuite();

        ArquillianDescriptor descriptor = Descriptors.create(ArquillianDescriptor.class);

        injectDescriptor(descriptor);

        InstanceProducer<SpringDeployerConfiguration> mockProducer = mock(InstanceProducer.class);
        TestReflectionHelper.setFieldValue(instance, "deployerConfiguration", mockProducer);

        instance.initConfiguration(event);

        ArgumentCaptor<SpringDeployerConfiguration> argument =
                ArgumentCaptor.forClass(SpringDeployerConfiguration.class);
        verify(mockProducer).set(argument.capture());

        assertNotNull("The result was null.", argument.getValue());
        assertTrue("Invalid autopackage property.", argument.getValue().isAutoPackaging());
        assertTrue("Invalid enableCache property.", argument.getValue().isEnableCache());
        assertFalse("Invalid useMavenOffline property.", argument.getValue().isUseMavenOffline());
        assertFalse("Invalid includeSnowdrop property.", argument.getValue().isIncludeSnowdrop());
        assertNull("Invalid springVersion property.", argument.getValue().getSpringVersion());
        assertNull("Invalid cglibVersion property.", argument.getValue().getCglibVersion());
        assertNull("Invalid snowdropVersion property.", argument.getValue().getSnowdropVersion());
    }

    /**
     * <p>Tests {@link SpringDeployerConfigurationProducer#initConfiguration(BeforeSuite)} method.</p>
     *
     * @throws Exception if any error occurs
     */
    @Test
    public void testInitConfiguration() throws Exception {

        BeforeSuite event = new BeforeSuite();

        ArquillianDescriptor descriptor = Descriptors.importAs(ArquillianDescriptor.class)
                .fromFile((new File("src/test/resources", "arquillian.xml")));

        injectDescriptor(descriptor);

        InstanceProducer<SpringDeployerConfiguration> mockProducer = mock(InstanceProducer.class);
        TestReflectionHelper.setFieldValue(instance, "deployerConfiguration", mockProducer);

        instance.initConfiguration(event);

        ArgumentCaptor<SpringDeployerConfiguration> argument =
                ArgumentCaptor.forClass(SpringDeployerConfiguration.class);
        verify(mockProducer).set(argument.capture());

        assertNotNull("The result was null.", argument.getValue());
        assertFalse("Invalid autopackage property.", argument.getValue().isAutoPackaging());
        assertFalse("Invalid enableCache property.", argument.getValue().isEnableCache());
        assertTrue("Invalid includeSnowdrop property.", argument.getValue().isIncludeSnowdrop());
        assertTrue("Invalid useMavenOffline property.", argument.getValue().isUseMavenOffline());
        assertEquals("Invalid springVersion property.", "3.1.1.RELEASE", argument.getValue().getSpringVersion());
        assertEquals("Invalid cglibVersion property.", "2.2.2", argument.getValue().getCglibVersion());
        assertEquals("Invalid snowdropVersion property.", "2.0.3.Final", argument.getValue().getSnowdropVersion());
    }

    /**
     * <p>Initialize the arquillian descriptor.</p>
     *
     * @param descriptor the arquillian descriptor
     *
     * @throws IllegalAccessException if any error occurs
     * @throws NoSuchFieldException   if any error occurs
     */
    private void injectDescriptor(ArquillianDescriptor descriptor) throws IllegalAccessException, NoSuchFieldException {
        Instance<ArquillianDescriptor> mockDescriptorInstance = mock(Instance.class);
        when(mockDescriptorInstance.get()).thenReturn(descriptor);
        TestReflectionHelper.setFieldValue(instance, "descriptor", mockDescriptorInstance);
    }
}
TOP

Related Classes of org.jboss.arquillian.spring.deployer.client.SpringDeployerConfigurationProducerTestCase

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.