HHH-16833 Add test for issue

This commit is contained in:
Andrea Boriero 2023-07-10 13:18:36 +02:00 committed by Andrea Boriero
parent 566693b0a2
commit 08d3e79c72
1 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,73 @@
package org.hibernate.orm.test.version;
import java.util.UUID;
import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.JiraKey;
import org.hibernate.testing.orm.junit.SessionFactory;
import org.hibernate.testing.orm.junit.SessionFactoryScope;
import org.junit.jupiter.api.Test;
import jakarta.persistence.Entity;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.OneToOne;
import jakarta.persistence.Version;
@DomainModel(
annotatedClasses = {
VersionedBidirectionalOneToOneMergeTest.TestEntity.class,
VersionedBidirectionalOneToOneMergeTest.AnotherTestEntity.class
}
)
@SessionFactory
@JiraKey("HHH-16833")
public class VersionedBidirectionalOneToOneMergeTest {
@Test
public void testMerge(SessionFactoryScope scope) {
AnotherTestEntity anotherTestEntity = new AnotherTestEntity();
scope.inTransaction(
session -> {
session.persist( anotherTestEntity );
}
);
scope.inTransaction(
session -> {
TestEntity testEntity = new TestEntity( anotherTestEntity );
session.persist( testEntity );
}
);
}
@Entity(name = "TestEntity")
public static class TestEntity {
@Id
UUID uuid = UUID.randomUUID();
@Version
Long version;
@OneToOne
@JoinColumn(name = "OTHER_ENTITY_ID")
AnotherTestEntity anotherTestEntity;
public TestEntity() {
}
public TestEntity(AnotherTestEntity anotherTestEntity) {
this.anotherTestEntity = anotherTestEntity;
}
}
@Entity(name = "AnotherTestEntity")
public static class AnotherTestEntity {
@Id
UUID uuid = UUID.randomUUID();
@OneToOne(mappedBy = "anotherTestEntity")
TestEntity testEntity;
}
}