blob: bbf0384243d24171c01dc75c2f237582705e6f2a [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.annotations;
import javax.persistence.*;
import org.apache.openjpa.persistence.annotations.common.apps.annotApp.annotype.*;
import junit.framework.*;
import org.apache.openjpa.persistence.common.utils.*;
import org.apache.openjpa.persistence.OpenJPAEntityManager;
/**
* Test for 1-1
*
* @author Steve Kim
*/
public class TestOneToOne extends AnnotationTestCase
{
public TestOneToOne(String name)
{
super(name, "annotationcactusapp");
}
public void setUp() {
deleteAll(AnnoTest1.class);
deleteAll(AnnoTest2.class);
}
public void testOneToOne() {
OpenJPAEntityManager em =(OpenJPAEntityManager) currentEntityManager();
startTx(em);
AnnoTest1 pc = new AnnoTest1(5);
AnnoTest2 pc2 = new AnnoTest2(15, "foo");
pc.setOneOne(pc2);
em.persist(pc);
em.persist(pc2);
endTx(em);
endEm(em);
em =(OpenJPAEntityManager) currentEntityManager();
pc = em.find(AnnoTest1.class, em.getObjectId(pc));
pc2 = pc.getOneOne();
assertNotNull(pc2);
assertEquals(15, pc2.getPk1());
assertEquals("foo", pc2.getPk2());
endEm(em);
}
public void testSelfOneToOne() {
OpenJPAEntityManager em =(OpenJPAEntityManager) currentEntityManager();
startTx(em);
AnnoTest1 pc = new AnnoTest1(5);
AnnoTest1 pc2 = new AnnoTest1(15);
pc.setSelfOneOne(pc2);
em.persist(pc);
em.persist(pc2);
endTx(em);
endEm(em);
em =(OpenJPAEntityManager) currentEntityManager();
pc = em.find(AnnoTest1.class, em.getObjectId(pc));
pc2 = pc.getSelfOneOne();
assertNotNull(pc2);
assertEquals(new Long(15), pc2.getPk());
endEm(em);
}
public void testPKJoinSelfOneToOne() {
OpenJPAEntityManager em =(OpenJPAEntityManager) currentEntityManager();
startTx(em);
AnnoTest1 pc = new AnnoTest1(5);
AnnoTest1 pc2 = new AnnoTest1(15);
pc.setSelfOneOne(pc2);
em.persist(pc);
em.persist(pc2);
endTx(em);
endEm(em);
em =(OpenJPAEntityManager) currentEntityManager();
pc = em.find(AnnoTest1.class, em.getObjectId(pc));
pc2 = pc.getSelfOneOne();
assertNotNull(pc2);
assertEquals(new Long(15), pc2.getPk());
endEm(em);
}
public void testOtherTableOneToOne() {
OpenJPAEntityManager em =(OpenJPAEntityManager) currentEntityManager();
startTx(em);
AnnoTest1 pc = new AnnoTest1(5);
AnnoTest2 pc2 = new AnnoTest2(15, "foo");
pc.setOtherTableOneOne(pc2);
em.persist(pc);
em.persist(pc2);
endTx(em);
endEm(em);
em =(OpenJPAEntityManager) currentEntityManager();
pc = em.find(AnnoTest1.class, em.getObjectId(pc));
pc2 = pc.getOtherTableOneOne();
assertNotNull(pc2);
assertEquals(15, pc2.getPk1());
assertEquals("foo", pc2.getPk2());
endEm(em);
}
public void testInverseOneToOne() {
OpenJPAEntityManager em =(OpenJPAEntityManager) currentEntityManager();
startTx(em);
AnnoTest1 pc = new AnnoTest1(5);
AnnoTest2 pc2 = new AnnoTest2(15, "foo");
pc2.setInverseOneOne(pc);
em.persist(pc);
em.persist(pc2);
endTx(em);
endEm(em);
em =(OpenJPAEntityManager) currentEntityManager();
pc = em.find(AnnoTest1.class, em.getObjectId(pc));
pc2 = pc.getInverseOwnerOneOne();
assertNotNull(pc2);
assertEquals(15, pc2.getPk1());
assertEquals("foo", pc2.getPk2());
assertEquals(pc, pc2.getInverseOneOne());
endEm(em);
}
}