-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#87 - Make sure models are serializable
- Loading branch information
Showing
34 changed files
with
1,126 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
141 changes: 141 additions & 0 deletions
141
...els-jandex/src/test/java/org/hibernate/models/serialization/SimpleSerializationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* Copyright: Red Hat Inc. and Hibernate Authors | ||
*/ | ||
package org.hibernate.models.serialization; | ||
|
||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
import org.hibernate.models.SerializationHelper; | ||
import org.hibernate.models.SourceModelTestHelper; | ||
import org.hibernate.models.serial.spi.StorableContext; | ||
import org.hibernate.models.spi.ClassDetails; | ||
import org.hibernate.models.spi.SourceModelBuildingContext; | ||
import org.hibernate.models.spi.SourceModelContext; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.hibernate.models.internal.SimpleClassLoading.SIMPLE_CLASS_LOADING; | ||
|
||
public class SimpleSerializationTests { | ||
protected SourceModelBuildingContext createModelContext(Class<?>... classes) { | ||
return SourceModelTestHelper.createBuildingContext( classes ); | ||
} | ||
|
||
@Test | ||
void serializeSimpleClass() { | ||
final SourceModelBuildingContext buildingContext = createModelContext( SimpleClass.class ); | ||
|
||
final ClassDetails classDetails = buildingContext.getClassDetailsRegistry().findClassDetails( SimpleClass.class.getName() ); | ||
assertThat( classDetails ).isNotNull(); | ||
|
||
final StorableContext serialContext = buildingContext.toStorableForm(); | ||
final StorableContext clonedSerialContext = SerializationHelper.clone( serialContext ); | ||
assertThat( serialContext ).isNotSameAs( clonedSerialContext ); | ||
|
||
final SourceModelContext restored = clonedSerialContext.fromStorableForm( SIMPLE_CLASS_LOADING ); | ||
assertThat( buildingContext ).isNotSameAs( restored ); | ||
assertThat( buildingContext.getClassDetailsRegistry() ).isNotSameAs( restored.getClassDetailsRegistry() ); | ||
assertThat( buildingContext.getAnnotationDescriptorRegistry() ).isNotSameAs( restored.getAnnotationDescriptorRegistry() ); | ||
|
||
final ClassDetails cloneCassDetails = restored.getClassDetailsRegistry().findClassDetails( SimpleClass.class.getName() ); | ||
assertThat( cloneCassDetails ).isNotNull(); | ||
assertThat( classDetails ).isNotSameAs( cloneCassDetails ); | ||
} | ||
|
||
@Test | ||
void serializeSimpleClassWithMembers() { | ||
final SourceModelBuildingContext buildingContext = createModelContext( SimpleClassWithMembers.class ); | ||
|
||
final ClassDetails classDetails = buildingContext.getClassDetailsRegistry().findClassDetails( SimpleClassWithMembers.class.getName() ); | ||
assertThat( classDetails ).isNotNull(); | ||
assertThat( classDetails.getFields() ).hasSize( 1 ); | ||
assertThat( classDetails.getMethods() ).hasSize( 3 ); | ||
|
||
final StorableContext serialContext = buildingContext.toStorableForm(); | ||
final StorableContext clonedSerialContext = SerializationHelper.clone( serialContext ); | ||
assertThat( serialContext ).isNotSameAs( clonedSerialContext ); | ||
|
||
final SourceModelContext restored = clonedSerialContext.fromStorableForm( SIMPLE_CLASS_LOADING ); | ||
assertThat( buildingContext ).isNotSameAs( restored ); | ||
assertThat( buildingContext.getClassDetailsRegistry() ).isNotSameAs( restored.getClassDetailsRegistry() ); | ||
assertThat( buildingContext.getAnnotationDescriptorRegistry() ).isNotSameAs( restored.getAnnotationDescriptorRegistry() ); | ||
|
||
final ClassDetails cloneCassDetails = restored.getClassDetailsRegistry().findClassDetails( SimpleClassWithMembers.class.getName() ); | ||
assertThat( cloneCassDetails ).isNotNull(); | ||
assertThat( classDetails ).isNotSameAs( cloneCassDetails ); | ||
assertThat( cloneCassDetails.getFields() ).hasSize( 1 ); | ||
assertThat( cloneCassDetails.getMethods() ).hasSize( 3 ); | ||
} | ||
|
||
@Test | ||
void serializeSimpleClassWithAnnotations() { | ||
final SourceModelBuildingContext buildingContext = createModelContext( SimpleClassWithAnnotations.class ); | ||
|
||
final ClassDetails classDetails = buildingContext.getClassDetailsRegistry().findClassDetails( SimpleClassWithAnnotations.class.getName() ); | ||
assertThat( classDetails ).isNotNull(); | ||
assertThat( classDetails.getDirectAnnotationUsages() ).hasSize( 1 ); | ||
assertThat( classDetails.getFields() ).hasSize( 1 ); | ||
assertThat( classDetails.getFields().iterator().next().getDirectAnnotationUsages() ).hasSize( 1 ); | ||
assertThat( classDetails.getMethods() ).hasSize( 1 ); | ||
assertThat( classDetails.getMethods().iterator().next().getDirectAnnotationUsages() ).hasSize( 1 ); | ||
|
||
final StorableContext serialContext = buildingContext.toStorableForm(); | ||
final StorableContext clonedSerialContext = SerializationHelper.clone( serialContext ); | ||
assertThat( serialContext ).isNotSameAs( clonedSerialContext ); | ||
|
||
final SourceModelContext restored = clonedSerialContext.fromStorableForm( SIMPLE_CLASS_LOADING ); | ||
assertThat( restored ).isNotNull(); | ||
assertThat( buildingContext ).isNotSameAs( restored ); | ||
assertThat( buildingContext.getClassDetailsRegistry() ).isNotSameAs( restored.getClassDetailsRegistry() ); | ||
assertThat( buildingContext.getAnnotationDescriptorRegistry() ).isNotSameAs( restored.getAnnotationDescriptorRegistry() ); | ||
|
||
final ClassDetails cloneCassDetails = restored.getClassDetailsRegistry().findClassDetails( SimpleClassWithAnnotations.class.getName() ); | ||
assertThat( classDetails ).isNotSameAs( cloneCassDetails ); | ||
assertThat( cloneCassDetails.getDirectAnnotationUsages() ).hasSize( 1 ); | ||
assertThat( cloneCassDetails.getFields() ).hasSize( 1 ); | ||
assertThat( cloneCassDetails.getFields().iterator().next().getDirectAnnotationUsages() ).hasSize( 1 ); | ||
assertThat( cloneCassDetails.getMethods() ).hasSize( 1 ); | ||
assertThat( cloneCassDetails.getMethods().iterator().next().getDirectAnnotationUsages() ).hasSize( 1 ); | ||
|
||
} | ||
|
||
public static class SimpleClass { | ||
} | ||
|
||
public static class SimpleClassWithMembers { | ||
public int anInt; | ||
|
||
public int getAnInt() { | ||
return anInt; | ||
} | ||
|
||
public void setAnInt(int anInt) { | ||
this.anInt = anInt; | ||
} | ||
|
||
public void doStuff() { | ||
} | ||
} | ||
|
||
@Target({ ElementType.FIELD,ElementType.METHOD,ElementType.TYPE}) | ||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface AnAnnotation { | ||
} | ||
|
||
@AnAnnotation | ||
public static class SimpleClassWithAnnotations { | ||
@AnAnnotation | ||
private int anInt; | ||
|
||
@AnAnnotation | ||
public int getAnInt() { | ||
return anInt; | ||
} | ||
|
||
} | ||
} |
Oops, something went wrong.