blob: 9be9314ea66f19f3579af17a8bacd003ffe4fa56 [file] [log] [blame]
/*
* 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.openjpa.persistence.jdbc.annotations;
import javax.persistence.EntityManager;
import org.apache.openjpa.persistence.OpenJPAEntityManager;
import org.apache.openjpa.persistence.test.SingleEMFTestCase;
public class TestPropertyAccess
extends SingleEMFTestCase {
public void setUp() {
setUp(PropertyAccess1.class, CLEAR_TABLES);
}
public void testPropertyAccessBasicCreation() {
OpenJPAEntityManager em = emf.createEntityManager();
em.getTransaction().begin();
PropertyAccess1 pa1_1 = new PropertyAccess1(10);
pa1_1.setName("foo");
em.persist(pa1_1);
em.getTransaction().commit();
// getting a new EM should not be necessary once the extended PC stuff
// is complete.
em = emf.createEntityManager();
PropertyAccess1 pa1_2 = em.find(PropertyAccess1.class, 10);
assertNotSame(pa1_1, pa1_2);
assertNotNull(pa1_2);
assertEquals(10, pa1_2.getId());
assertEquals("foo", pa1_2.getName());
em.close();
}
public void testPropertyAccessBasicMutation() {
OpenJPAEntityManager em = emf.createEntityManager();
em.getTransaction().begin();
PropertyAccess1 pa1_1 = new PropertyAccess1(10);
pa1_1.setName("foo");
em.persist(pa1_1);
em.getTransaction().commit();
// getting a new EM should not be necessary once the extended PC stuff
// is complete.
em = emf.createEntityManager();
em.getTransaction().begin();
PropertyAccess1 pa1_2 = em.find(PropertyAccess1.class, 10);
pa1_2.setName(pa1_2.getName() + "bar");
em.getTransaction().commit();
em = emf.createEntityManager();
PropertyAccess1 pa1_3 = em.find(PropertyAccess1.class, 10);
assertNotSame(pa1_2, pa1_3);
assertEquals("foobar", pa1_3.getName());
em.close();
}
public void testJPQL() {
EntityManager em = emf.createEntityManager();
em.createQuery("select o from PropertyAccess1 o where " +
"o.name = 'foo'").getResultList();
em.createQuery("select o from PropertyAccess1 o order by " +
"o.name asc").getResultList();
em.close();
}
public void testJPQLWithFieldNameMismatch() {
EntityManager em = emf.createEntityManager();
em.createQuery("select o from PropertyAccess1 o where " +
"o.intValue = 0").getResultList();
em.createQuery("select o from PropertyAccess1 o order by " +
"o.intValue asc").getResultList();
em.close();
}
}