net.sf.ehcache.loader.CompositeLoaderTest.java Source code

Java tutorial

Introduction

Here is the source code for net.sf.ehcache.loader.CompositeLoaderTest.java

Source

/**
 *  Copyright 2003-2007 Luck Consulting Pty Ltd
 *
 *  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 net.sf.ehcache.loader;

import junit.framework.TestCase;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * ComponentA is composed of ComponentB and some other fields. Tests the interactions between two loaders, where the first component's
 *  loader loads component B by using getWithLoader, which in turn invokes component B's loader.
 * @author <a href="mailto:gluck@gregluck.com">Greg Luck</a>
 * @version $Id: CompositeLoaderTest.java 562 2007-11-19 03:20:05Z gregluck $
 */
public class CompositeLoaderTest extends TestCase {

    private static final Log LOG = LogFactory.getLog(CompositeLoaderTest.class);

    /**
     * Sets up the fixture, for example, open a network connection.
     * This method is called before a test is executed.
     */
    protected void setUp() throws Exception {
        CacheHelper.init();
    }

    /**
     * Tears down the fixture, for example, close a network connection.
     * This method is called after a test is executed.
     */
    protected void tearDown() throws Exception {
        CacheHelper.shutdown();
    }

    /**
     * This test reproduces a deadlock found in 1.4-beta1 around loading interactions and getWithLoader. Now fixed.
     */
    public void testCompositeLoad() {
        LOG.info("Getting from cache");
        ComponentA compA = (ComponentA) CacheHelper.get("ehcache-loaderinteractions.xml", "ACache", "key1");
        LOG.info(compA);

    }

}