HHH-16725 Add a test case to reproduce the issue

This commit is contained in:
marko-bekhta 2023-05-30 19:47:31 +02:00 committed by Andrea Boriero
parent 2060ac0a9a
commit 9a94af1eb4
1 changed files with 179 additions and 0 deletions

View File

@ -0,0 +1,179 @@
/*
* 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.annotations.cid;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import static org.assertj.core.api.Assertions.assertThat;
import org.hibernate.cfg.AvailableSettings;
import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.JiraKey;
import org.hibernate.testing.orm.junit.ServiceRegistry;
import org.hibernate.testing.orm.junit.SessionFactory;
import org.hibernate.testing.orm.junit.SessionFactoryScope;
import org.hibernate.testing.orm.junit.Setting;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.IdClass;
import jakarta.persistence.ManyToOne;
import jakarta.persistence.OneToMany;
@DomainModel(
annotatedClasses = {
CompositeIdWithOrderedUpdatesTest.ModelWithSelfChildren.class
}
)
@ServiceRegistry(
settings = {
@Setting(name = AvailableSettings.ORDER_UPDATES, value = "true")
}
)
@SessionFactory
@JiraKey("HHH-16725")
public class CompositeIdWithOrderedUpdatesTest {
@AfterEach
public void tearDown(SessionFactoryScope scope) {
scope.inTransaction(
session -> {
session.createQuery( "delete from ModelWithSelfChildren" ).executeUpdate();
}
);
}
@Test
public void testSuccessfulPersist(SessionFactoryScope scope) {
scope.inTransaction(
session -> {
ModelWithSelfChildren m = new ModelWithSelfChildren();
m.setStringProperty( "a" );
session.persist( m );
ModelWithSelfChildren m2 = new ModelWithSelfChildren();
m2.setStringProperty( "b" );
session.persist( m2 );
}
);
scope.inTransaction(
session -> {
assertThat(
session.createQuery( "from ModelWithSelfChildren", ModelWithSelfChildren.class )
.getResultList()
).hasSize( 2 );
}
);
}
@Entity(name = "ModelWithSelfChildren")
@IdClass(ModelWithSelfChildrenId.class)
public static class ModelWithSelfChildren {
@Id
private String stringProperty;
@Id
private int integerProperty;
@ManyToOne
private ModelWithSelfChildren parent;
@OneToMany(mappedBy = "parent")
private List<ModelWithSelfChildren> children = new ArrayList<>();
public String getStringProperty() {
return stringProperty;
}
public void setStringProperty(String stringProperty) {
this.stringProperty = stringProperty;
}
public int getIntegerProperty() {
return integerProperty;
}
public void setIntegerProperty(int integerProperty) {
this.integerProperty = integerProperty;
}
public ModelWithSelfChildren getParent() {
return parent;
}
public void setParent(ModelWithSelfChildren parent) {
this.parent = parent;
}
public List<ModelWithSelfChildren> getChildren() {
return children;
}
public void setChildren(List<ModelWithSelfChildren> children) {
this.children = children;
}
}
public static class ModelWithSelfChildrenId implements Serializable {
private String stringProperty;
private int integerProperty;
public String getStringProperty() {
return stringProperty;
}
public void setStringProperty(String stringProperty) {
this.stringProperty = stringProperty;
}
public int getIntegerProperty() {
return integerProperty;
}
public void setIntegerProperty(int integerProperty) {
this.integerProperty = integerProperty;
}
@Override
public boolean equals(Object o) {
if ( this == o ) {
return true;
}
if ( o == null || getClass() != o.getClass() ) {
return false;
}
ModelWithSelfChildrenId that = (ModelWithSelfChildrenId) o;
return integerProperty == that.integerProperty && Objects.equals( stringProperty, that.stringProperty );
}
@Override
public int hashCode() {
return Objects.hash( stringProperty, integerProperty );
}
@Override
public String toString() {
return "Id{" +
"string='" + stringProperty + '\'' +
", integer=" + integerProperty +
'}';
}
}
}