Package org.apache.openjpa.persistence.kernel.common.apps

Examples of org.apache.openjpa.persistence.kernel.common.apps.RuntimeTest1


            TrackingSavepointManager.class.getName() + "(AllowFlush=false)");
        OpenJPAEntityManagerFactory pmf = getEmf(props);
        OpenJPAEntityManager pm = pmf.createEntityManager();

        startTx(pm);
        pm.persist(new RuntimeTest1());
        pm.flush();
        try {
            pm.setSavepoint("a");
            fail("should have failed.");
        } catch (Exception e) {
View Full Code Here


            TrackingSavepointManager.class.getName() + "(AllowFlush=true)");
        OpenJPAEntityManagerFactory pmf = getEmf(props);
        OpenJPAEntityManager pm = pmf.createEntityManager();

        startTx(pm);
        pm.persist(new RuntimeTest1());
        pm.setSavepoint("a");
        try {
            pm.flush();
        } catch (Exception e) {
            fail("allows flush.");
View Full Code Here

            TrackingSavepointManager.class.getName() + "(AllowFlush=true)");
        OpenJPAEntityManagerFactory pmf = getEmf(props);
        OpenJPAEntityManager pm = pmf.createEntityManager();

        startTx(pm);
        pm.persist(new RuntimeTest1());
        pm.flush();
        try {
            pm.setSavepoint("a");
        } catch (Exception e) {
            fail("allows flush.");
View Full Code Here

    public void setUp() throws Exception {
        super.setUp(RuntimeTest1.class, RuntimeTest2.class, RuntimeTest3.class);

        pm = getPM(true, false);
        startTx(pm);
        a = new RuntimeTest1("foo", 10);
        pm.persist(a);
        oid = pm.getObjectId(a);
    }
View Full Code Here

        super.setUp(RuntimeTest1.class, RuntimeTest2.class, RuntimeTest3.class);

        // create some instances to query on
        OpenJPAEntityManager pm = getPM();
        startTx(pm);
        pm.persist(new RuntimeTest1("RuntimeTest1-instance", 2));
        pm.persist(new RuntimeTest2("RuntimeTest2-instance", 3));
        pm.persist(new RuntimeTest3("RuntimeTest3-instance", 4));
        endTx(pm);
        endEm(pm);
    }
View Full Code Here

    public void testOptimisticLockGivesCorrectError() {
        EntityManager pm1 = currentEntityManager();
        EntityManager pm2 = currentEntityManager();

        RuntimeTest1 a1 = new RuntimeTest1("foo", 10);
        startTx(pm1);
        pm1.persist(a1);
        endTx(pm1);

        RuntimeTest1 a2 = (RuntimeTest1) pm2.find(RuntimeTest1.class, 10);
        startTx(pm2);
        a2.setStringField("foobar");
        startTx(pm2);

        startTx(pm1);
        a1.setStringField("foobarbaz");
        try {
View Full Code Here

    }

    public void setUp() throws Exception {
        super.setUp(RuntimeTest1.class, RuntimeTest2.class, RuntimeTest3.class);

        RuntimeTest1 test1 = new RuntimeTest1();
        test1.setIntField(1);
        RuntimeTest2 test2 = new RuntimeTest2();
        test2.setIntField(2);
        test2.setIntField2(2);
        RuntimeTest3 test3 = new RuntimeTest3();
        test3.setIntField(3);
View Full Code Here

        assertEquals(1, test2Count);
        assertEquals(1, test3Count);
    }

    public void testContainsNewlyPersisted() {
        RuntimeTest1 test1 = new RuntimeTest1();
        RuntimeTest1 test2 = new RuntimeTest2();

        OpenJPAEntityManager pm = getPM();

        // pcl: 14 Oct 2003: default in 3.0 is now true, but this test
        // assumes false somewhere.
View Full Code Here

        startTx(pm);
        try {
            RuntimeTest2 test2 =
                pm.find(RuntimeTest2.class, _oid2);
            pm.remove(test2);
            RuntimeTest1 test1 = new RuntimeTest1();
            pm.persist(test1);
            pm.remove(test1);

            Extent ext = pm.createExtent(RuntimeTest1.class, true);
            boolean foundOid1 = false;
View Full Code Here

    }

    public void setUp() throws Exception {
        super.setUp(RuntimeTest1.class);

        RuntimeTest1 pc = new RuntimeTest1();
        pc.setIntField(1);
        pc.setIntField1(1);
        _oid = persist(pc);
    }
View Full Code Here

TOP

Related Classes of org.apache.openjpa.persistence.kernel.common.apps.RuntimeTest1

Copyright © 2018 www.massapicom. 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.