Package org.springframework.data.gemfire.config

Source Code of org.springframework.data.gemfire.config.InvalidRegionExpirationAttributesNamespaceTest

/*
* Copyright 2010-2013 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
*
*       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.springframework.data.gemfire.config;

import static org.junit.Assert.assertTrue;

import org.junit.Test;
import org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.support.GenericXmlApplicationContext;
import org.springframework.data.gemfire.test.GemfireTestBeanPostProcessor;
import org.xml.sax.SAXParseException;

/**
* The InvalidRegionExpirationAttributesNamespaceTest class is a test suite of test cases testing the proper syntax
* of declaring "custom" expiration attributes on a Region.
*
* @author John Blum
* @see org.junit.Test
* @see org.springframework.context.ConfigurableApplicationContext
* @see org.springframework.context.support.GenericXmlApplicationContext
* @see org.springframework.data.gemfire.test.GemfireTestBeanPostProcessor
* @since 1.5.0
*/
public class InvalidRegionExpirationAttributesNamespaceTest {

  protected String contextConfigLocation() {
    return getClass().getName().replaceAll("\\.", "/").concat("-context.xml");
  }

  protected ConfigurableApplicationContext createApplicationContext() {
    return new GenericXmlApplicationContext();
  }

  protected ConfigurableApplicationContext configureContext(ConfigurableApplicationContext applicationContext) {
    applicationContext.getBeanFactory().addBeanPostProcessor(new GemfireTestBeanPostProcessor());
    return applicationContext;
  }

  protected ConfigurableApplicationContext initializeApplicationContext(ConfigurableApplicationContext applicationContext) {
    assertTrue(applicationContext instanceof GenericXmlApplicationContext);
    ((GenericXmlApplicationContext) applicationContext).load(contextConfigLocation());
    applicationContext.registerShutdownHook();
    applicationContext.refresh();
    return applicationContext;
  }

  @Test(expected = XmlBeanDefinitionStoreException.class)
  public void testInvalidXmlSyntax() {
    try {
      initializeApplicationContext(configureContext(createApplicationContext()));
    }
    catch (XmlBeanDefinitionStoreException expected) {
      assertTrue(expected.getCause() instanceof SAXParseException);
      assertTrue(expected.getMessage().contains("Invalid content was found starting with element 'bean'"));
      throw expected;
    }
  }

}
TOP

Related Classes of org.springframework.data.gemfire.config.InvalidRegionExpirationAttributesNamespaceTest

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.