HHH-16175 Test entity graphs when including either all attributes or no attributes

This commit is contained in:
Yoann Rodière 2023-02-13 12:01:47 +01:00 committed by Christian Beikov
parent f10d3e6841
commit 5589583ca6
1 changed files with 215 additions and 0 deletions

View File

@ -0,0 +1,215 @@
package org.hibernate.orm.test.entitygraph;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.ArrayList;
import java.util.List;
import org.hibernate.Hibernate;
import org.hibernate.graph.GraphSemantic;
import org.hibernate.testing.TestForIssue;
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.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import jakarta.persistence.CascadeType;
import jakarta.persistence.Entity;
import jakarta.persistence.FetchType;
import jakarta.persistence.Id;
import jakarta.persistence.ManyToOne;
import jakarta.persistence.NamedEntityGraph;
import jakarta.persistence.OneToMany;
import jakarta.persistence.OneToOne;
@DomainModel(
annotatedClasses = {
IncludeAllOrNoneGraphTest.RootEntity.class,
IncludeAllOrNoneGraphTest.ContainedEntity.class
}
)
@SessionFactory
@TestForIssue(jiraKey = "HHH-16175")
public class IncludeAllOrNoneGraphTest {
@BeforeEach
void init(SessionFactoryScope scope) {
scope.inTransaction( session -> {
for ( long i = 0; i < 3; ++i ) {
RootEntity entity = new RootEntity( i * 100 );
ContainedEntity containedEager = new ContainedEntity( i * 100 + 1 );
entity.setContainedEager( containedEager );
containedEager.setContainingEager( entity );
session.persist( containedEager );
session.persist( entity );
ContainedEntity containedLazy = new ContainedEntity( i * 100 + 2 );
entity.getContainedLazy().add( containedLazy );
containedLazy.setContainingLazy( entity );
session.persist( containedLazy );
}
} );
}
@AfterEach
void cleanUp(SessionFactoryScope scope) {
scope.inTransaction( session -> {
List<ContainedEntity> containedList = session.createQuery(
"select c from ContainedEntity c", ContainedEntity.class ).list();
for ( ContainedEntity entity : containedList ) {
entity.setContainingLazy( null );
}
} );
scope.inTransaction( session -> {
session.createMutationQuery( "delete RootEntity" ).executeUpdate();
session.createMutationQuery( "delete ContainedEntity" ).executeUpdate();
} );
}
@Test
void includeAll_fetchGraph(SessionFactoryScope scope) {
// Before HHH-16175 gets fixed, this leads to AssertionError in StandardEntityGraphTraversalStateImpl.traverse
testLoadingWithGraph(scope, RootEntity.GRAPH_INCLUDE_ALL, GraphSemantic.FETCH,
true, true );
}
@Test
void includeAll_loadGraph(SessionFactoryScope scope) {
// Before HHH-16175 gets fixed, this leads to AssertionError in StandardEntityGraphTraversalStateImpl.traverse
testLoadingWithGraph(scope, RootEntity.GRAPH_INCLUDE_ALL, GraphSemantic.LOAD,
true, true );
}
@Test
void includeNone_fetchGraph(SessionFactoryScope scope) {
testLoadingWithGraph(scope, RootEntity.GRAPH_INCLUDE_NONE, GraphSemantic.FETCH,
false, false );
}
@Test
void includeNone_loadGraph(SessionFactoryScope scope) {
testLoadingWithGraph(scope, RootEntity.GRAPH_INCLUDE_NONE, GraphSemantic.LOAD,
true, false );
}
private void testLoadingWithGraph(SessionFactoryScope scope, String graphName, GraphSemantic graphSemantic,
boolean expectContainedEagerInitialized, boolean expectContainedLazyInitialized) {
scope.inTransaction( session -> {
assertThat( session.createQuery( "select e from RootEntity e where id in (:ids)", RootEntity.class )
.applyGraph( session.getEntityGraph( graphName ), graphSemantic )
.setFetchSize( 100 )
.setParameter( "ids", List.of( 0L, 100L, 200L ) )
.list() )
.isNotEmpty()
.allSatisfy( loaded -> assertThat( Hibernate.isInitialized( loaded.getContainedEager() ) )
.as( "Hibernate::isInitialized for .getContainedEager() on %s", loaded )
.isEqualTo( expectContainedEagerInitialized ) )
.allSatisfy( loaded -> assertThat( Hibernate.isInitialized( loaded.getContainedLazy() ) )
.as( "Hibernate::isInitialized for .getContainedLazy() on %s", loaded )
.isEqualTo( expectContainedLazyInitialized ) );
} );
}
@Entity(name = "RootEntity")
@NamedEntityGraph(
name = RootEntity.GRAPH_INCLUDE_ALL,
includeAllAttributes = true
)
@NamedEntityGraph(
name = RootEntity.GRAPH_INCLUDE_NONE
)
static class RootEntity {
public static final String GRAPH_INCLUDE_ALL = "graph-include-all";
public static final String GRAPH_INCLUDE_NONE = "graph-include-none";
@Id
private Long id;
@OneToOne(fetch = FetchType.EAGER, cascade = CascadeType.PERSIST)
private ContainedEntity containedEager;
@OneToMany(mappedBy = "containingLazy", fetch = FetchType.LAZY, cascade = CascadeType.PERSIST)
private List<ContainedEntity> containedLazy = new ArrayList<>();
public RootEntity() {
}
public RootEntity(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public ContainedEntity getContainedEager() {
return containedEager;
}
public void setContainedEager(ContainedEntity containedEager) {
this.containedEager = containedEager;
}
public List<ContainedEntity> getContainedLazy() {
return containedLazy;
}
public void setContainedLazy(List<ContainedEntity> containedLazy) {
this.containedLazy = containedLazy;
}
}
@Entity(name = "ContainedEntity")
static class ContainedEntity {
@Id
private Long id;
@OneToOne(mappedBy = "containedEager")
private RootEntity containingEager;
@ManyToOne
private RootEntity containingLazy;
public ContainedEntity() {
}
public ContainedEntity(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public RootEntity getContainingEager() {
return containingEager;
}
public void setContainingEager(RootEntity containingEager) {
this.containingEager = containingEager;
}
public RootEntity getContainingLazy() {
return containingLazy;
}
public void setContainingLazy(RootEntity containingLazy) {
this.containingLazy = containingLazy;
}
}
}