blob: 213536c0641f7fa65f07abfa664a6f07e5c3c7c8 [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.enhance.identity;
import java.util.List;
import javax.persistence.EntityManager;
import org.apache.openjpa.persistence.test.SingleEMFTestCase;
/**
* Tests entities that use compound keys that includes entity relationship at
* more than one level.
*
* Page has a compound identity to Book which itself uses a compound identity to
* Library.
*
* Test case and domain classes were originally part of the reported issue <A
* href="https://issues.apache.org/jira/browse/OPENJPA-207">OPENJPA-207</A>
*
* @author Jeffrey Blattman
* @author Pinaki Poddar
*
*/
public class TestMultipleLevelDerivedIdentity extends SingleEMFTestCase {
private static String LIBRARY_NAME = "LIB";
private static String BOOK_NAME = "foo";
private static int NUM_PAGES = 3;
public void setUp() throws Exception {
super.setUp(CLEAR_TABLES, Library.class, Book.class, Page.class,
"openjpa.RuntimeUnenhancedClasses", "unsupported");
create();
}
// public void tearDown() throws Exception {
//
// }
public void testPersist() {
create();
}
public void testQueryRootLevel() {
EntityManager em = emf.createEntityManager();
List<Library> list = em.createQuery("SELECT p FROM Library p")
.getResultList();
assertFalse(list.isEmpty());
Library lib = (Library) list.get(0);
assertNotNull(lib.getBook(BOOK_NAME));
assertNotNull(lib.getBook(BOOK_NAME).getPage(1));
}
public void testQueryIntermediateLevel() {
EntityManager em = emf.createEntityManager();
List<Book> list = em.createQuery("SELECT p FROM Book p")
.getResultList();
assertFalse(list.isEmpty());
Book book = list.get(0);
Library lib = book.getLibrary();
for (int i=1; i<=NUM_PAGES; i++) {
Page page = book.getPage(i);
assertNotNull(page);
assertEquals(book, page.getBook());
assertEquals(lib, page.getBook().getLibrary());
assertEquals(page, page.getBook().getPage(page.getNumber()));
}
}
public void testQueryLeafLevel() {
EntityManager em = emf.createEntityManager();
List<Page> list = em.createQuery("SELECT p FROM Page p")
.getResultList();
assertFalse(list.isEmpty());
Book book = list.get(0).getBook();
Library lib = book.getLibrary();
for (Page page : list) {
assertEquals(book, page.getBook());
assertEquals(lib, page.getBook().getLibrary());
assertEquals(page, page.getBook().getPage(page.getNumber()));
}
}
public void testFindRootNode() {
EntityManager em = emf.createEntityManager();
Library lib = em.find(Library.class, LIBRARY_NAME);
assertNotNull(lib);
assertNotNull(lib.getBook(BOOK_NAME));
assertNotNull(lib.getBook(BOOK_NAME).getPage(1));
}
public void testFindIntermediateNode() {
EntityManager em = emf.createEntityManager();
BookId bookId = new BookId();
bookId.setLibrary(LIBRARY_NAME);
bookId.setName(BOOK_NAME);
Book book = em.find(Book.class, bookId);
assertNotNull(book);
}
public void testFindLeafNode() {
EntityManager em = emf.createEntityManager();
BookId bookId = new BookId();
bookId.setLibrary(LIBRARY_NAME);
bookId.setName(BOOK_NAME);
PageId pageId = new PageId();
pageId.setBook(bookId);
pageId.setNumber(2);
Page page = em.find(Page.class, pageId);
assertNotNull(page);
}
public void testUpdate() {
EntityManager em = emf.createEntityManager();
em.getTransaction().begin();
BookId bookId = new BookId();
bookId.setLibrary(LIBRARY_NAME);
bookId.setName(BOOK_NAME);
Book book = em.find(Book.class, bookId);
assertNotNull(book);
book.setAuthor("modifiy Author");
em.getTransaction().commit();
}
public void testDelete() {
EntityManager em = emf.createEntityManager();
em.getTransaction().begin();
Library lib = em.find(Library.class, LIBRARY_NAME);
em.remove(lib);
em.getTransaction().commit();
assertEquals(0, count(Library.class));
assertEquals(0, count(Book.class));
assertEquals(0, count(Page.class));
}
/**
* Create a Library with a Book and three Pages.
*/
public void create() {
if (count(Library.class) > 0)
return;
EntityManager em = null;
em = emf.createEntityManager();
em.getTransaction().begin();
Library lib = new Library();
lib.setName(LIBRARY_NAME);
Book book = new Book();
book.setName(BOOK_NAME);
lib.addBook(book);
for (int i = 1; i <= NUM_PAGES; i++) {
Page page = new Page();
page.setNumber(i);
book.addPage(page);
}
em.persist(lib);
em.getTransaction().commit();
em.clear();
}
}