Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HHH-19312 BytecodeProviderImpl throwing java.lang.IndexOutOfBoundsException #9952

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
package org.hibernate.orm.test.bytecode.enhancement.lazy.proxy.index_out_of_bounds;

import org.hibernate.orm.test.bytecode.enhancement.lazy.proxy.index_out_of_bounds.base.EmbeddableType;
import org.hibernate.orm.test.bytecode.enhancement.lazy.proxy.index_out_of_bounds.derived.TestEntity;
import org.hibernate.testing.bytecode.enhancement.EnhancementOptions;
import org.hibernate.testing.bytecode.enhancement.extension.BytecodeEnhanced;
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 static org.assertj.core.api.Assertions.assertThat;

@DomainModel(
annotatedClasses = {
TestEntity.class
}
)
@SessionFactory
@BytecodeEnhanced
@EnhancementOptions(lazyLoading = true, inlineDirtyChecking = true)
@JiraKey( "HHH-19312" )
public class BytecodeProviderIndexOutOfBoundsTest {

@Test
public void testIt(SessionFactoryScope scope) {
// Just a smoke test; the original failure happened during bytecode enhancement.
Long id = scope.fromTransaction( s -> {
TestEntity testEntity = new TestEntity();
EmbeddableType embedded = new EmbeddableType();
embedded.setField( "someValue" );
testEntity.setEmbeddedField( embedded );
s.persist( testEntity );
return testEntity.getId();
} );
scope.inTransaction( s -> {
TestEntity testEntity = s.find( TestEntity.class, id );
assertThat( testEntity.getEmbeddedField().getField() ).isEqualTo( "someValue" );
} );
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
package org.hibernate.orm.test.bytecode.enhancement.lazy.proxy.index_out_of_bounds.base;

import jakarta.persistence.Embedded;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import jakarta.persistence.MappedSuperclass;

@MappedSuperclass
public abstract class BaseEntity {

private Long id;

protected EmbeddableType embeddedField;

private Long dummyField;

@Id
@GeneratedValue
public Long getId() {
return id;
}

public void setId(final Long id) {
this.id = id;
}

@Embedded
public EmbeddableType getEmbeddedField() {
return embeddedField;
}

public void setEmbeddedField(final EmbeddableType embeddedField) {
this.embeddedField = embeddedField;
}

public Long getDummyField() {
return dummyField;
}

void setDummyField(Long dummyField) {
this.dummyField = dummyField;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
package org.hibernate.orm.test.bytecode.enhancement.lazy.proxy.index_out_of_bounds.base;

import jakarta.persistence.Column;
import jakarta.persistence.Embeddable;

@Embeddable
public class EmbeddableType {

@Column
private String field;

public String getField() {
return field;
}

public void setField(final String field) {
this.field = field;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
package org.hibernate.orm.test.bytecode.enhancement.lazy.proxy.index_out_of_bounds.derived;

import jakarta.persistence.Access;
import jakarta.persistence.AccessType;
import jakarta.persistence.Entity;
import org.hibernate.orm.test.bytecode.enhancement.lazy.proxy.index_out_of_bounds.base.BaseEntity;

@Entity
@Access(AccessType.PROPERTY)
public class TestEntity extends BaseEntity {

}