Package org.springframework.data.gemfire.listener.adapter

Source Code of org.springframework.data.gemfire.listener.adapter.ContainerXmlSetupTest

/*
* Copyright 2011-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.listener.adapter;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;

import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.springframework.context.support.GenericXmlApplicationContext;
import org.springframework.data.gemfire.ForkUtil;
import org.springframework.data.gemfire.listener.ContinuousQueryListenerContainer;

import com.gemstone.gemfire.cache.Cache;
import com.gemstone.gemfire.cache.client.Pool;
import com.gemstone.gemfire.cache.query.CqQuery;

/**
* @author Costin Leau
* @author John Blum
*/
public class ContainerXmlSetupTest {

  @BeforeClass
  public static void init() {
    ForkUtil.cacheServer();
  }

  @AfterClass
  public static void cleanUp() {
    ForkUtil.sendSignal();
  }

  @Test
  public void testContainerSetup() throws Exception {
    GenericXmlApplicationContext applicationContext = new GenericXmlApplicationContext(
      "/org/springframework/data/gemfire/listener/container.xml");

    try {
      ContinuousQueryListenerContainer container = applicationContext.getBean(
        ContinuousQueryListenerContainer.class);

      assertNotNull(container);
      assertTrue(container.isRunning());

      // test getting container listener by bean ID
      ContinuousQueryListenerContainer container2 = applicationContext.getBean("testContainerId",
        ContinuousQueryListenerContainer.class);

      assertSame(container, container2);

      Cache cache = applicationContext.getBean("gemfireCache", Cache.class);
      Pool pool = applicationContext.getBean("client", Pool.class);

      CqQuery[] cqs = cache.getQueryService().getCqs();
      CqQuery[] poolCqs = pool.getQueryService().getCqs();

      assertTrue(pool.getQueryService().getCq("test-bean-1") != null);
      assertEquals(3, cqs.length);
      assertEquals(3, poolCqs.length);
    }
    finally {
      ForkUtil.sendSignal();
      applicationContext.close();
    }
  }

}
TOP

Related Classes of org.springframework.data.gemfire.listener.adapter.ContainerXmlSetupTest

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.