HHH-16543 Add test for issue

This commit is contained in:
Marco Belladelli 2023-05-22 12:24:22 +02:00
parent e6eef252e4
commit 46974a9c1e
No known key found for this signature in database
GPG Key ID: D1D0C3030AE3AA35
1 changed files with 100 additions and 0 deletions

View File

@ -0,0 +1,100 @@
/*
* 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.hql;
import java.util.List;
import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.Jira;
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.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import jakarta.persistence.MappedSuperclass;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Marco Belladelli
*/
@SessionFactory
@DomainModel( annotatedClasses = {
MappedSuperclassAttributeQueryTest.AbstractSuperclass.class,
MappedSuperclassAttributeQueryTest.EntityA.class,
MappedSuperclassAttributeQueryTest.EntityB.class,
MappedSuperclassAttributeQueryTest.EntityC.class,
} )
@Jira( "https://hibernate.atlassian.net/browse/HHH-16543" )
public class MappedSuperclassAttributeQueryTest {
@BeforeAll
public void setUp(SessionFactoryScope scope) {
scope.inTransaction( session -> {
final EntityA entityA = new EntityA();
entityA.setData( "data" );
session.persist( entityA );
} );
}
@AfterAll
public void tearDown(SessionFactoryScope scope) {
scope.inTransaction( session -> session.createMutationQuery(
String.format( "delete from %s", AbstractSuperclass.class.getName() )
).executeUpdate() );
}
@Test
public void testQuery(SessionFactoryScope scope) {
scope.inTransaction( session -> {
final List<AbstractSuperclass> resultList = session.createQuery(
String.format( "select t from %s t where t.data = 'data'", AbstractSuperclass.class.getName() ),
AbstractSuperclass.class
).getResultList();
assertThat( resultList ).hasSize( 1 );
assertThat( resultList.get( 0 ) ).isInstanceOf( EntityA.class );
assertThat( resultList.get( 0 ).getData() ).isEqualTo( "data" );
} );
}
@MappedSuperclass
public abstract static class AbstractSuperclass {
@Id
@GeneratedValue
private Integer id;
private String data;
public Integer getId() {
return id;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
}
@Entity( name = "EntityA" )
public static class EntityA extends AbstractSuperclass {
}
@Entity( name = "EntityB" )
public static class EntityB extends AbstractSuperclass {
}
@Entity( name = "EntityC" )
public static class EntityC extends AbstractSuperclass {
}
}