com.msi.tough.internal.autoscale.basic.ConfigTest.java Source code

Java tutorial

Introduction

Here is the source code for com.msi.tough.internal.autoscale.basic.ConfigTest.java

Source

/*
 * TopStack (c) Copyright 2012-2013 Transcend Computing, 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 com.msi.tough.internal.autoscale.basic;

import static org.junit.Assert.assertEquals;

import org.junit.Test;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

import com.msi.tough.core.Appctx;
import com.msi.tough.internal.autoscale.AbstractBaseAutoscaleTest;

public class ConfigTest extends AbstractBaseAutoscaleTest implements ApplicationContextAware {

    @Autowired
    public String targetServer;

    @Test
    public void testSuccessfulConfigure() {
        // Executing this method means no stacktrace on config load.
        assertEquals("getBean shouldn't do anything stupid.", Appctx.instance(), Appctx.getBean("appctx"));
    }

    /* (non-Javadoc)
     * @see org.springframework.context.ApplicationContextAware#setApplicationContext(org.springframework.context.ApplicationContext)
     */
    @Override
    public void setApplicationContext(ApplicationContext appctx) throws BeansException {
        Appctx.instance().setAppctx(appctx);
    }

}