org.springframework.data.gemfire.test.GemfireTestBeanPostProcessor.java Source code

Java tutorial

Introduction

Here is the source code for org.springframework.data.gemfire.test.GemfireTestBeanPostProcessor.java

Source

/*
 * Copyright 2002-2019 the original author or authors.
 *
 * 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
 *
 * https://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.springframework.data.gemfire.test;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.data.gemfire.CacheFactoryBean;
import org.springframework.data.gemfire.client.ClientCacheFactoryBean;
import org.springframework.data.gemfire.server.CacheServerFactoryBean;

/**
 * @author David Turanski
 * @author John Blum
 */
public class GemfireTestBeanPostProcessor implements BeanPostProcessor {

    private static Logger logger = LoggerFactory.getLogger(GemfireTestBeanPostProcessor.class);

    /*
     * (non-Javadoc)
     * @see org.springframework.beans.factory.config.BeanPostProcessor#postProcessBeforeInitialization(java.lang.Object, java.lang.String)
     */
    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {

        if (bean instanceof CacheFactoryBean) {

            String beanTypeName = bean.getClass().getName();

            bean = (bean instanceof ClientCacheFactoryBean
                    ? new MockClientCacheFactoryBean((ClientCacheFactoryBean) bean)
                    : new MockCacheFactoryBean((CacheFactoryBean) bean));

            logger.info("Replacing the [{}] bean definition having type [{}] with mock [{}]...", beanName,
                    beanTypeName, bean.getClass().getName());
        } else if (bean instanceof CacheServerFactoryBean) {
            ((CacheServerFactoryBean) bean).setCache(new StubCache());
        }

        return bean;
    }

    /*
     * (non-Javadoc)
     * @see org.springframework.beans.factory.config.BeanPostProcessor#postProcessAfterInitialization(java.lang.Object, java.lang.String)
     */
    @Override
    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
        return bean;
    }
}