+ add namespace test

SGF-11
This commit is contained in:
costin
2010-08-25 20:37:36 +03:00
parent 3490e4f0e7
commit 91b38c4a78
2 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
/*
* Copyright 2010 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.assertNull;
import static org.junit.Assert.assertTrue;
import java.lang.reflect.Field;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.core.io.Resource;
import org.springframework.data.gemfire.CacheFactoryBean;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* @author Costin Leau
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("cache-ns.xml")
@DirtiesContext
public class CacheNamespaceTest {
@Autowired
private ApplicationContext context;
@Test
public void testBasicCache() throws Exception {
assertTrue(context.containsBean("cache"));
CacheFactoryBean cfb = (CacheFactoryBean) context.getBean("&cache");
assertNull(readField("cacheXml", cfb));
assertNull(readField("properties", cfb));
}
@Test
public void testNamedCache() throws Exception {
assertTrue(context.containsBean("cache-with-name"));
CacheFactoryBean cfb = (CacheFactoryBean) context.getBean("&cache-with-name");
assertNull(readField("cacheXml", cfb));
assertNull(readField("properties", cfb));
}
@Test
public void testCacheWithXml() throws Exception {
assertTrue(context.containsBean("cache-with-xml"));
CacheFactoryBean cfb = (CacheFactoryBean) context.getBean("&cache-with-xml");
Resource res = (Resource) readField("cacheXml", cfb);
assertEquals("cache.xml", res.getFilename());
assertEquals(context.getBean("props"), readField("properties", cfb));
}
private Object readField(String name, Object target) throws Exception {
Field field = target.getClass().getDeclaredField(name);
field.setAccessible(true);
return field.get(target);
}
}