HHH-16123 Add test for issue
This commit is contained in:
parent
2de37ed5e3
commit
6fc3ec6901
|
@ -0,0 +1,192 @@
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Hibernate, Relational Persistence for Idiomatic Java
|
||||||
|
*
|
||||||
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
|
||||||
|
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
|
||||||
|
*/
|
||||||
|
package org.hibernate.orm.test.jpa.criteria;
|
||||||
|
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.hibernate.testing.orm.junit.DomainModel;
|
||||||
|
import org.hibernate.testing.orm.junit.SessionFactory;
|
||||||
|
import org.hibernate.testing.orm.junit.SessionFactoryScope;
|
||||||
|
import org.junit.jupiter.api.AfterAll;
|
||||||
|
import org.junit.jupiter.api.BeforeAll;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import jakarta.persistence.CascadeType;
|
||||||
|
import jakarta.persistence.Entity;
|
||||||
|
import jakarta.persistence.GeneratedValue;
|
||||||
|
import jakarta.persistence.Id;
|
||||||
|
import jakarta.persistence.Inheritance;
|
||||||
|
import jakarta.persistence.InheritanceType;
|
||||||
|
import jakarta.persistence.JoinColumn;
|
||||||
|
import jakarta.persistence.ManyToOne;
|
||||||
|
import jakarta.persistence.MappedSuperclass;
|
||||||
|
import jakarta.persistence.OneToMany;
|
||||||
|
import jakarta.persistence.criteria.CriteriaBuilder;
|
||||||
|
import jakarta.persistence.criteria.CriteriaQuery;
|
||||||
|
import jakarta.persistence.criteria.Join;
|
||||||
|
import jakarta.persistence.criteria.Root;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Marco Belladelli
|
||||||
|
*/
|
||||||
|
@SessionFactory
|
||||||
|
@DomainModel(annotatedClasses = {
|
||||||
|
TreatAbstractSuperclassTest.LongBook.class,
|
||||||
|
TreatAbstractSuperclassTest.ShortBook.class,
|
||||||
|
TreatAbstractSuperclassTest.Author.class,
|
||||||
|
TreatAbstractSuperclassTest.AuthorParticipation.class,
|
||||||
|
})
|
||||||
|
public class TreatAbstractSuperclassTest {
|
||||||
|
@BeforeAll
|
||||||
|
public void setUp(SessionFactoryScope scope) {
|
||||||
|
scope.inTransaction( session -> {
|
||||||
|
final Author author = new Author( "Frank Herbert" );
|
||||||
|
final ShortBook book = new ShortBook( "Dune" );
|
||||||
|
final AuthorParticipation participation = new AuthorParticipation( author, book );
|
||||||
|
book.getParticipations().add( participation );
|
||||||
|
session.persist( author );
|
||||||
|
session.persist( book );
|
||||||
|
session.persist( participation );
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
|
@AfterAll
|
||||||
|
public void tearDown(SessionFactoryScope scope) {
|
||||||
|
scope.inTransaction( session -> {
|
||||||
|
session.createMutationQuery( "delete from AuthorParticipation" ).executeUpdate();
|
||||||
|
session.createMutationQuery( "delete from Author" ).executeUpdate();
|
||||||
|
session.createMutationQuery( "delete from Publication" ).executeUpdate();
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testJoin(SessionFactoryScope scope) {
|
||||||
|
scope.inTransaction( session -> {
|
||||||
|
final CriteriaBuilder cb = session.getCriteriaBuilder();
|
||||||
|
final CriteriaQuery<String> criteria = cb.createQuery( String.class );
|
||||||
|
final Root<Publication> publicationRoot = criteria.from( Publication.class );
|
||||||
|
// Treat as nested abstract superclass
|
||||||
|
final Root<Book> bookRoot = cb.treat( publicationRoot, Book.class );
|
||||||
|
final Join<Book, AuthorParticipation> join = bookRoot.join( "participations" );
|
||||||
|
criteria.select( bookRoot.get( "title" ) ).where( cb.equal(
|
||||||
|
join.get( "author" ).get( "name" ),
|
||||||
|
"Frank Herbert"
|
||||||
|
) );
|
||||||
|
assertEquals( "Dune", session.createQuery( criteria ).getSingleResult() );
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSubclassJoin(SessionFactoryScope scope) {
|
||||||
|
scope.inTransaction( session -> {
|
||||||
|
final CriteriaBuilder cb = session.getCriteriaBuilder();
|
||||||
|
final CriteriaQuery<String> criteria = cb.createQuery( String.class );
|
||||||
|
final Root<Publication> publicationRoot = criteria.from( Publication.class );
|
||||||
|
// Treat as child of nested abstract superclass
|
||||||
|
final Root<ShortBook> shortBookRoot = cb.treat( publicationRoot, ShortBook.class );
|
||||||
|
final Join<ShortBook, AuthorParticipation> join = shortBookRoot.join( "participations" );
|
||||||
|
criteria.select( shortBookRoot.get( "title" ) ).where( cb.equal(
|
||||||
|
join.get( "author" ).get( "name" ),
|
||||||
|
"Frank Herbert"
|
||||||
|
) );
|
||||||
|
assertEquals( "Dune", session.createQuery( criteria ).getSingleResult() );
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
|
||||||
|
@MappedSuperclass
|
||||||
|
public static class BaseEntity {
|
||||||
|
@Id
|
||||||
|
@GeneratedValue
|
||||||
|
private long id;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity(name = "Publication")
|
||||||
|
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
|
||||||
|
public abstract static class Publication extends BaseEntity {
|
||||||
|
private String title;
|
||||||
|
|
||||||
|
public Publication() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Publication(String title) {
|
||||||
|
this.title = title;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity(name = "Book")
|
||||||
|
public static abstract class Book extends Publication {
|
||||||
|
@OneToMany(mappedBy = "book", cascade = CascadeType.REMOVE)
|
||||||
|
private List<AuthorParticipation> participations = new ArrayList<>();
|
||||||
|
|
||||||
|
public Book() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Book(String title) {
|
||||||
|
super( title );
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<AuthorParticipation> getParticipations() {
|
||||||
|
return participations;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity(name = "LongBook")
|
||||||
|
public static class LongBook extends Book {
|
||||||
|
public LongBook() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public LongBook(String title) {
|
||||||
|
super( title );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity(name = "ShortBook")
|
||||||
|
public static class ShortBook extends Book {
|
||||||
|
public ShortBook() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public ShortBook(String title) {
|
||||||
|
super( title );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity(name = "Author")
|
||||||
|
public static class Author extends BaseEntity {
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public Author() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Author(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity(name = "AuthorParticipation")
|
||||||
|
public static class AuthorParticipation extends BaseEntity {
|
||||||
|
@ManyToOne
|
||||||
|
@JoinColumn(name = "author_id", nullable = false)
|
||||||
|
private Author author;
|
||||||
|
|
||||||
|
@ManyToOne
|
||||||
|
@JoinColumn(name = "book_id", nullable = false)
|
||||||
|
private Book book;
|
||||||
|
|
||||||
|
public AuthorParticipation() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public AuthorParticipation(Author author, Book book) {
|
||||||
|
this.author = author;
|
||||||
|
this.book = book;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue