/* * Licensed to the Apache Software Foundation (ASF) under one or more contributor license * agreements. See the NOTICE file distributed with this work for additional information regarding * copyright ownership. The ASF licenses this file to You 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.apache.geode.internal.datasource; import static org.apache.geode.distributed.ConfigurationProperties.*; import static org.junit.Assert.*; import java.sql.Connection; import java.util.Properties; import javax.naming.Context; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.junit.experimental.categories.Category; import org.apache.geode.cache.Cache; import org.apache.geode.cache.CacheFactory; import org.apache.geode.distributed.DistributedSystem; import org.apache.geode.test.junit.categories.IntegrationTest; import org.apache.geode.util.test.TestUtil; @Category(IntegrationTest.class) public class DataSourceFactoryJUnitTest { private static Properties props = null; private static DistributedSystem ds1 = null; private static Cache cache = null; @Before public void setUp() { props = new Properties(); props.setProperty(MCAST_PORT, "0"); String path = TestUtil.getResourcePath(DataSourceFactoryJUnitTest.class, "/jta/cachejta.xml"); props.setProperty(CACHE_XML_FILE, path); ds1 = DistributedSystem.connect(props); cache = CacheFactory.create(ds1); } @After public void tearDown() { ds1.disconnect(); } @Test public void testGetSimpleDataSource() throws Exception { Context ctx = cache.getJNDIContext(); GemFireBasicDataSource ds = (GemFireBasicDataSource) ctx.lookup("java:/SimpleDataSource"); Connection conn = ds.getConnection(); if (conn == null) fail( "DataSourceFactoryJUnitTest-testGetSimpleDataSource() Error in creating the GemFireBasicDataSource"); } @Test public void testGetPooledDataSource() throws Exception { Context ctx = cache.getJNDIContext(); GemFireConnPooledDataSource ds = (GemFireConnPooledDataSource) ctx.lookup("java:/PooledDataSource"); Connection conn = ds.getConnection(); if (conn == null) fail( "DataSourceFactoryJUnitTest-testGetPooledDataSource() Error in creating the GemFireConnPooledDataSource"); } @Test public void testGetTranxDataSource() throws Exception { Context ctx = cache.getJNDIContext(); GemFireTransactionDataSource ds = (GemFireTransactionDataSource) ctx.lookup("java:/XAPooledDataSource"); // DataSourceFactory dsf = new DataSourceFactory(); // GemFireTransactionDataSource ds = // (GemFireTransactionDataSource)dsf.getTranxDataSource(map); Connection conn = ds.getConnection(); if (conn == null) fail( "DataSourceFactoryJUnitTest-testGetTranxDataSource() Error in creating the getTranxDataSource"); } }