OPENJPA-777 committing testcase from Fay's patch

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@727530 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2008-12-17 21:59:09 +00:00
parent b3a9a1b0e0
commit ead852dc38
6 changed files with 395 additions and 0 deletions

View File

@ -0,0 +1,46 @@
/*
* 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.CascadeType;
import javax.persistence.Embeddable;
import javax.persistence.ManyToOne;
@Embeddable
public class PColl_EmbedB {
private String name;
@ManyToOne(cascade = CascadeType.PERSIST)
private PColl_EntityC m2oC;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public PColl_EntityC getM2oC() {
return m2oC;
}
public void setM2oC(PColl_EntityC m2oC) {
this.m2oC = m2oC;
}
}

View File

@ -0,0 +1,68 @@
/*
* 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 java.util.HashSet;
import java.util.Set;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.Version;
import org.apache.openjpa.persistence.PersistentCollection;
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public class PColl_EntityA {
@Id
private int id;
@PersistentCollection(elementEmbedded = true)
private Set<PColl_EmbedB> embedCollection = new HashSet<PColl_EmbedB>();
@Version
private int version;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Set<PColl_EmbedB> getEmbedCollection() {
return embedCollection;
}
public void setEmbedCollection(Set<PColl_EmbedB> embedCollection) {
this.embedCollection = embedCollection;
}
public void addEmbedElement(PColl_EmbedB element) {
this.embedCollection.add(element);
}
public String toString() {
return "PColl_EntityD<id=" + id + ",ver=" + version
+ ",embedBCollection#=" + embedCollection.size() + ">";
}
}

View File

@ -0,0 +1,68 @@
/*
* 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 java.util.HashSet;
import java.util.Set;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.Version;
import org.apache.openjpa.persistence.PersistentCollection;
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public class PColl_EntityA1 {
@Id
private int id;
@PersistentCollection(elementEmbedded = true)
private Set<PColl_EntityB> embedCollection = new HashSet<PColl_EntityB>();
@Version
private int version;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Set<PColl_EntityB> getEmbedCollection() {
return embedCollection;
}
public void setEmbedCollection(Set<PColl_EntityB> embedCollection) {
this.embedCollection = embedCollection;
}
public void addEmbedElement(PColl_EntityB element) {
this.embedCollection.add(element);
}
public String toString() {
return "PColl_EntityD<id=" + id + ",ver=" + version
+ ",embedBCollection#=" + embedCollection.size() + ">";
}
}

View File

@ -0,0 +1,46 @@
/*
* 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.CascadeType;
import javax.persistence.Entity;
import javax.persistence.ManyToOne;
@Entity
public class PColl_EntityB {
private String name;
@ManyToOne(cascade = CascadeType.PERSIST)
private PColl_EntityC m2oC;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public PColl_EntityC getM2oC() {
return m2oC;
}
public void setM2oC(PColl_EntityC m2oC) {
this.m2oC = m2oC;
}
}

View File

@ -0,0 +1,48 @@
/*
* 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.Entity;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.Version;
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public class PColl_EntityC {
@Id
private int id;
@Version
private int version;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String toString() {
return "PColl_EntityC<id=" + id + ",ver=" + version + ">";
}
}

View File

@ -0,0 +1,119 @@
/*
* 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 java.util.List;
import java.util.Set;
import javax.persistence.EntityManager;
import javax.persistence.Query;
import org.apache.openjpa.persistence.test.SingleEMFTestCase;
/**
* Test for PersistentCollection Annotation
*
* @author Albert Lee
*/
public class TestPersistentCollection extends SingleEMFTestCase {
public void setUp() {
setUp(PColl_EntityA.class, PColl_EmbedB.class, PColl_EntityC.class,
PColl_EntityA1.class, PColl_EntityB.class, CLEAR_TABLES);
}
@SuppressWarnings("unchecked")
public void testPersistentCollectionOfEmbeddables() {
try {
EntityManager em = emf.createEntityManager();
em.getTransaction().begin();
PColl_EntityC c = new PColl_EntityC();
c.setId(101);
PColl_EmbedB b01 = new PColl_EmbedB();
b01.setName("b01");
b01.setM2oC(c);
PColl_EntityA a = new PColl_EntityA();
a.setId(1);
a.getEmbedCollection().add(b01);
em.persist(a);
em.getTransaction().commit();
em.close();
em = emf.createEntityManager();
Query q = em.createQuery("SELECT o FROM PColl_EntityA o");
List<PColl_EntityA> oList = (List<PColl_EntityA>) q.getResultList();
PColl_EntityA d1 = oList.get(0);
Set<PColl_EmbedB> b1s = d1.getEmbedCollection();
PColl_EmbedB b1 = b1s.iterator().next();
PColl_EntityC c1 = b1.getM2oC();
assertEquals("b01", b1.getName());
assertEquals(101, c1.getId());
assertEquals(1, d1.getId());
em.close();
} catch (Throwable t) {
fail(t.getMessage());
}
}
@SuppressWarnings("unchecked")
public void testPersistentCollectionOfEntities() {
try {
EntityManager em = emf.createEntityManager();
em.getTransaction().begin();
PColl_EntityC c = new PColl_EntityC();
c.setId(101);
PColl_EntityB b01 = new PColl_EntityB();
b01.setName("b01");
b01.setM2oC(c);
PColl_EntityA1 a = new PColl_EntityA1();
a.setId(1);
a.getEmbedCollection().add(b01);
em.persist(a);
em.getTransaction().commit();
em.close();
em = emf.createEntityManager();
Query q = em.createQuery("SELECT o FROM PColl_EntityA1 o");
List<PColl_EntityA1> oList =
(List<PColl_EntityA1>) q.getResultList();
PColl_EntityA1 a1 = oList.get(0);
Set<PColl_EntityB> b1s = a1.getEmbedCollection();
PColl_EntityB b1 = b1s.iterator().next();
PColl_EntityC c1 = b1.getM2oC();
assertEquals("b01", b1.getName());
assertEquals(101, c1.getId());
assertEquals(1, a1.getId());
em.close();
} catch (Throwable t) {
fail(t.getMessage());
}
}
}