Package org.apache.jdo.tck.api.persistencemanagerfactory.config

Source Code of org.apache.jdo.tck.api.persistencemanagerfactory.config.Jdoconfig

/*
* 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.jdo.tck.api.persistencemanagerfactory.config;

import java.util.HashMap;
import javax.jdo.JDOHelper;
import javax.jdo.PersistenceManager;
import javax.jdo.PersistenceManagerFactory;
import javax.jdo.Transaction;
import org.apache.jdo.tck.JDO_Test;
import org.apache.jdo.tck.pc.mylib.PCPoint;
import org.apache.jdo.tck.util.BatchTestRunner;

/**
*<B>Title:</B>Close of PersistenceManagerFactory 
*<BR/>
*<B>Keywords:</B> persistencemanagerfactory, jdoconfig.xml
*<BR/>
*<B>Assertion IDs:</B> A11.1.2-1
*<BR/>
*<B>Assertion Description: </B>
* Users can access a PersistenceManagerFactory by creating a jdoconfig.xml file
* and making it available on the class path as META-INF/jdoconfig.xml.
*/
public class Jdoconfig extends JDO_Test {

    /** Creates a new instance of Jdoconfig */
    public Jdoconfig() {
    }
    /** */
    private static final String ASSERTION_FAILED =
            "Assertion A11.1.2-1 failed: ";
    private static final String ANONYMOUS_PMF_NAME = "";
    // Do not use superclass pmf, pm
    private PersistenceManagerFactory privatePmf = null;
    private PersistenceManager privatePm = null;
    private HashMap overrides = new HashMap();

    /**
     * The <code>main</code> is called when the class
     * is directly executed from the command line.
     * @param args The arguments passed to the program.
     */
    public static void main(String[] args) {
        BatchTestRunner.run(Jdoconfig.class);
    }
   
        /**
     * @see JDO_Test#localSetUp()
     */
    protected void localSetUp() {
        /* Instance can be persisted ONLY if javax.jdo.mapping.Schema
         *   is overriden with
         *   JDOHelper.getPersistenceManagerFactory(Map overrides, ...).
         *   The value depends on identity type so can only be known at runtime.
         */
        if (isTestToBePerformed()) {
            overrides.put("javax.jdo.mapping.Schema", schemaname);
        }
    }

    /** */
    public void testGetPMFNoArgs() {
        privatePmf = JDOHelper.getPersistenceManagerFactory();
        checkIsOpen(ANONYMOUS_PMF_NAME);
    }

    /** */
    public void testGetPMFEmptyString() {
        String name = "";
        privatePmf = JDOHelper.getPersistenceManagerFactory(name);
        checkIsOpen(ANONYMOUS_PMF_NAME);
    }

    /** */
    public void testGetPMFNull() {
        String name = null;
        privatePmf = JDOHelper.getPersistenceManagerFactory(name);
        checkIsOpen(ANONYMOUS_PMF_NAME);
    }

    /** */
    public void testGetPMFStringSpace() {
        String name = " ";
        privatePmf = JDOHelper.getPersistenceManagerFactory(name);
        checkIsOpen(ANONYMOUS_PMF_NAME);
    }

    /** */
    public void testGetPMFNamed() {
        String name = "namedPMF0";
        privatePmf = JDOHelper.getPersistenceManagerFactory(name);
        assertEquals("Incorrect value for RestoreValues",
                privatePmf.getRestoreValues(), false);
        checkIsOpen(name);
    }

    /** */
    public void testGetPMFEmptyStringOverrides() {
        String name = "";
        privatePmf = JDOHelper.getPersistenceManagerFactory(overrides, name);
        checkPersistent(ANONYMOUS_PMF_NAME);
    }

    /** */
    public void testGetPMFNullOverrides() {
        String name = null;
        privatePmf = JDOHelper.getPersistenceManagerFactory(overrides, name);
        checkPersistent(ANONYMOUS_PMF_NAME);
    }

    /** */
    public void testGetPMFStringSpaceOverrides() {
        String name = " ";
        privatePmf = JDOHelper.getPersistenceManagerFactory(overrides, name);
        checkPersistent(ANONYMOUS_PMF_NAME);
    }

    /** */
    public void testGetPMFNamedOverrides() {
        String name = "namedPMF0";
        privatePmf = JDOHelper.getPersistenceManagerFactory(overrides, name);
        assertEquals("Incorrect value for RestoreValues",
                privatePmf.getRestoreValues(), false);
        checkPersistent(name);
    }

    /** */
    public void testGetPMFNamedSpacesOverrides() {
        String name = "namedPMF1";
        privatePmf = JDOHelper.getPersistenceManagerFactory(overrides,
                " \t" + name + " \n");
        assertEquals("Incorrect value for RestoreValues",
                privatePmf.getRestoreValues(), true);
        checkPersistent(name);
    }

    /** */
    public void checkIsOpen(String name) {
        assertEquals("Incorrect PMF name", name, privatePmf.getName());
        if (privatePmf.isClosed()) {
            fail(ASSERTION_FAILED,
                    "PMF.isClosed() returned true on an open pmf");
        }
        privatePmf.close();
        // have next invocation of getPMF() get a new pmf
        privatePmf = null;
    }

    /**
     * Checks if instance can be persisted. Can be used if
     *    javax.jdo.mapping.Schema is overriden with the correct value
     *    with JDOHelper.getPersistenceManagerFactory(Map overrides, ...).
     */
    public void checkPersistent(String name) {
        assertEquals("Incorrect PMF name", name, privatePmf.getName());

        makePersistent();

        privatePmf.close();
        if (!privatePmf.isClosed()) {
            fail(ASSERTION_FAILED,
                    "PMF.isClosed() returned false on a closed pmf");
        }
        // have next invocation of getPMF() get a new pmf
        privatePmf = null;
    }

    protected void makePersistent() {
        addTearDownClass(PCPoint.class);
        privatePm = privatePmf.getPersistenceManager();
        Transaction tx = privatePm.currentTransaction();
        tx.begin();
        PCPoint comp = new PCPoint(1, 2);
        privatePm.makePersistent(comp);
        tx.commit();
    }
}
TOP

Related Classes of org.apache.jdo.tck.api.persistencemanagerfactory.config.Jdoconfig

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.