Package org.springframework.data.gemfire.config

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

/*
* 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.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;

import javax.annotation.Resource;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.data.gemfire.test.GemfireTestApplicationContextInitializer;
import org.springframework.data.gemfire.wan.GatewayReceiverFactoryBean;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.util.StringUtils;

import com.gemstone.gemfire.cache.wan.GatewayReceiver;

/**
* The GatewayReceiverAutoStartNamespaceTest class is a test suite of test cases testing the contract
* and functionality of Gateway Receiver configuration in Spring Data GemFire using the XML namespace (XSD).
* This test class tests the auto start configuration of the GatewayReceiver Gemfire Component in SDG.
*
* @author John Blum
* @see org.junit.Test
* @see org.junit.runner.RunWith
* @see org.springframework.data.gemfire.test.GemfireTestApplicationContextInitializer
* @see org.springframework.data.gemfire.wan.GatewayReceiverFactoryBean
* @see org.springframework.test.context.ActiveProfiles
* @see org.springframework.test.context.ContextConfiguration
* @see org.springframework.test.context.junit4.SpringJUnit4ClassRunner
* @see com.gemstone.gemfire.cache.wan.GatewayReceiver
* @since 1.5.0
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(value = "GatewayReceiverNamespaceTest-context.xml",
  initializers = GemfireTestApplicationContextInitializer.class)
@ActiveProfiles("autoStart")
@SuppressWarnings("unused")
public class GatewayReceiverAutoStartNamespaceTest {

  @Resource(name = "&Auto")
  private GatewayReceiverFactoryBean autoGatewayReceiverFactory;

  @Test
  public void testAuto() throws Exception {
    assertNotNull("The 'Auto' GatewayReceiverFactoryBean was not properly configured and initialized!",
      autoGatewayReceiverFactory);
    assertTrue(autoGatewayReceiverFactory.isAutoStartup());

    GatewayReceiver autoGatewayReceiver = autoGatewayReceiverFactory.getObject();

    try {
      assertNotNull(autoGatewayReceiver);
      assertTrue(StringUtils.isEmpty(autoGatewayReceiver.getBindAddress()));
      assertEquals("neo", autoGatewayReceiver.getHost());
      assertEquals(15500, autoGatewayReceiver.getStartPort());
      assertEquals(25500, autoGatewayReceiver.getEndPort());
      assertEquals(10000, autoGatewayReceiver.getMaximumTimeBetweenPings());
      assertTrue(autoGatewayReceiver.isRunning());
      assertEquals(16384, autoGatewayReceiver.getSocketBufferSize());
    }
    finally {
      autoGatewayReceiver.stop();
    }
  }

}
TOP

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

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.