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

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


    public void setUp() {
        deleteAll(RuntimeTest1.class);

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


    }

    public void setUp() {
        deleteAll(RuntimeTest1.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 =
                (RuntimeTest2) 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

        pc2.setLockGroup0IntField(2);

        OpenJPAEntityManager pm3 = getPM(false, false);
        startTx(pm3);
        LockGroupPC pc3 = (LockGroupPC) pm3.find(LockGroupPC.class, oid);
        pc3.setLockGroup1RelationField(new RuntimeTest1());

        endTx(pm1);
        endEm(pm1);

        endTx(pm2);
View Full Code Here

        pc1.setLockGroup0IntField(1);

        OpenJPAEntityManager pm2 = getPM(false, false);
        startTx(pm2);
        LockGroupPC pc2 = (LockGroupPC) pm2.find(LockGroupPC.class, oid);
        pc2.setLockGroup1RelationField(new RuntimeTest1());

        endTx(pm2);
        endEm(pm2);

        endTx(pm1);
View Full Code Here

    public void setUp() {
        deleteAll(RuntimeTest1.class);
        OpenJPAEntityManager pm = getPM();
        startTx(pm);
        RuntimeTest1 rt1 = new RuntimeTest1("TestInitialValueFetching", 10);
        pm.persist(rt1);

        rt1.setDateField(new Date());
        endTx(pm);
        endEm(pm);
    }
View Full Code Here

    }

    public void testInitialValueString() {
        OpenJPAEntityManager pm = getPM();
        startTx(pm);
        RuntimeTest1 rt1 = getObject(pm);
        OpenJPAStateManager sm = getStateManager(rt1, pm);
        FieldMetaData fmd = sm.getMetaData().getField("stringField");
        assertEquals("TestInitialValueFetching",
            sm.fetchInitialField(fmd.getIndex()));
        rt1.setStringField("TestInitialValueFetching-2");
        assertEquals("TestInitialValueFetching",
            sm.fetchInitialField(fmd.getIndex()));
        endTx(pm);
        assertEquals("TestInitialValueFetching-2",
            sm.fetchInitialField(fmd.getIndex()));
View Full Code Here

    }

    public void testInitialValueInt() {
        OpenJPAEntityManager pm = getPM();
        startTx(pm);
        RuntimeTest1 rt1 = getObject(pm);
        OpenJPAStateManager sm = getStateManager(rt1, pm);
        FieldMetaData fmd = sm.getMetaData().getField("intField1");
        assertEquals(10,
            ((Integer) sm.fetchInitialField(fmd.getIndex())).intValue());
        rt1.setIntField1(11);
        assertEquals(10,
            ((Integer) sm.fetchInitialField(fmd.getIndex())).intValue());
        endTx(pm);
        assertEquals(11,
            ((Integer) sm.fetchInitialField(fmd.getIndex())).intValue());
View Full Code Here

        OpenJPAEntityManagerFactory pmf = (OpenJPAEntityManagerFactory)
            getEmf(props);

        OpenJPAEntityManager pm = (OpenJPAEntityManager)
            pmf.createEntityManager();
        RuntimeTest1 rt1 = getObject(pm);

        Date d = rt1.getDateField();
        OpenJPAStateManager sm = getStateManager(rt1, pm);
        FieldMetaData fmd = sm.getMetaData().getField("dateField");
        try {
            sm.fetchInitialField(fmd.getIndex());
            fail("should get an exception if RestoreMutableValues is false");
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.