alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Hibernate example source code file (DefaultConfigurationHelperTest.java)

This example Hibernate source code file (DefaultConfigurationHelperTest.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Hibernate tags/keywords

annotationinstance, annotationinstance, entity, entity, id, index, list, parent, persist, string, string, test, test, util, xmlentity

The Hibernate DefaultConfigurationHelperTest.java source code

package org.hibernate.metamodel.source.annotations.xml.mocker;

import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.SecondaryTable;
import javax.persistence.SecondaryTables;

import org.jboss.jandex.AnnotationInstance;
import org.jboss.jandex.DotName;
import org.jboss.jandex.Index;
import org.junit.Test;

import org.hibernate.metamodel.source.annotation.jaxb.XMLEntity;
import org.hibernate.metamodel.source.annotations.JPADotNames;

import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

/**
 * @author Strong Liu
 */
public class DefaultConfigurationHelperTest extends AbstractMockerTest {
	@Test
	public void applyNullDefaultToEntity() {
		XMLEntity entity = new XMLEntity();
		entity.setClazz( "Entity" );
		DefaultConfigurationHelper.INSTANCE.applyDefaults( entity, null );
		assertNull( entity.getTable() );
		assertEquals( "Entity", entity.getClazz() );
	}

	@Test
	public void applyDefaultToEntity() {
		EntityMappingsMocker.Default defaults = new EntityMappingsMocker.Default();
		defaults.setPackageName( "org.test" );
		defaults.setSchema( "schema" );
		defaults.setMetadataComplete( true );
		XMLEntity entity = new XMLEntity();
		entity.setClazz( "Entity" );
		DefaultConfigurationHelper.INSTANCE.applyDefaults( entity, defaults );
		assertNotNull( entity.getTable() );
		assertNull( entity.getTable().getSchema() );
		assertNull( entity.getTable().getCatalog() );
		assertTrue( entity.isMetadataComplete() );
		assertEquals( "org.test.Entity", entity.getClazz() );
		DefaultConfigurationHelper.INSTANCE
				.applyDefaults( new SchemaAware.TableSchemaAware( entity.getTable() ), defaults );
		assertEquals( "schema", entity.getTable().getSchema() );
		assertNull( entity.getTable().getCatalog() );
	}

	@Test
	public void testDefaultCascadePersist() {
		EntityMappingsMocker.Default defaults = new EntityMappingsMocker.Default();
		defaults.setCascadePersist( true );
		Index index = getIndex();
		Map<DotName, List annotations = new HashMap>();
		annotations.putAll( index.getClassByName( DotName.createSimple( Parent.class.getName() ) ).annotations() );
		assertEquals( 4, annotations.size() );
		assertEquals( 1, annotations.get( JPADotNames.ENTITY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ID ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ONE_TO_MANY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.MANY_TO_ONE ).size() );

		DefaultConfigurationHelper.INSTANCE.applyDefaults( annotations, defaults );

		assertEquals( 4, annotations.size() );
		assertEquals( 1, annotations.get( JPADotNames.ENTITY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ID ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ONE_TO_MANY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.MANY_TO_ONE ).size() );
		AnnotationInstance oneToMany = annotations.get( JPADotNames.ONE_TO_MANY ).get( 0 );
		String[] cascadeTypes = oneToMany.value( "cascade" ).asEnumArray();
		assertArrayEquals( new String[] { "ALL", "DETACH", "PERSIST" }, cascadeTypes );
		AnnotationInstance manyToOne = annotations.get( JPADotNames.MANY_TO_ONE ).get( 0 );
		cascadeTypes = manyToOne.value( "cascade" ).asEnumArray();
		assertArrayEquals( new String[] { "PERSIST" }, cascadeTypes );

		annotations.clear();
		annotations.putAll( index.getClassByName( DotName.createSimple( Child.class.getName() ) ).annotations() );
		assertEquals( 3, annotations.size() );
		assertEquals( 1, annotations.get( JPADotNames.ENTITY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ID ).size() );
		assertEquals( 1, annotations.get( JPADotNames.MANY_TO_ONE ).size() );

		DefaultConfigurationHelper.INSTANCE.applyDefaults( annotations, defaults );

		assertEquals( 3, annotations.size() );
		assertEquals( 1, annotations.get( JPADotNames.ENTITY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ID ).size() );
		assertEquals( 1, annotations.get( JPADotNames.MANY_TO_ONE ).size() );

		manyToOne = annotations.get( JPADotNames.MANY_TO_ONE ).get( 0 );
		cascadeTypes = manyToOne.value( "cascade" ).asEnumArray();
		assertArrayEquals( new String[] { "PERSIST", "ALL", "DETACH" }, cascadeTypes );
	}

	@Test
	public void testDefaultSchemaToAnnotationInstance() {
		EntityMappingsMocker.Default defaults = new EntityMappingsMocker.Default();
		defaults.setSchema( "hib_schema" );
		defaults.setCatalog( "hib_catalog" );
		Index index = getIndex();
		Map<DotName, List annotations = new HashMap>();
		annotations.putAll( index.getClassByName( DotName.createSimple( Parent.class.getName() ) ).annotations() );
		assertEquals( 4, annotations.size() );
		assertEquals( 1, annotations.get( JPADotNames.ENTITY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ID ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ONE_TO_MANY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.MANY_TO_ONE ).size() );
		DefaultConfigurationHelper.INSTANCE.applyDefaults( annotations, defaults );
		assertEquals( 5, annotations.size() );
		assertEquals( 1, annotations.get( JPADotNames.ENTITY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ID ).size() );
		assertEquals( 1, annotations.get( JPADotNames.ONE_TO_MANY ).size() );
		assertEquals( 1, annotations.get( JPADotNames.MANY_TO_ONE ).size() );
		assertEquals( 1, annotations.get( JPADotNames.TABLE ).size() );
		AnnotationInstance table = annotations.get( JPADotNames.TABLE ).get( 0 );
		assertEquals( "hib_schema", table.value( "schema" ).asString() );
		assertEquals( "hib_catalog", table.value( "catalog" ).asString() );

		annotations.clear();
		annotations.putAll( index.getClassByName( DotName.createSimple( Name.class.getName() ) ).annotations() );
		DefaultConfigurationHelper.INSTANCE.applyDefaults( annotations, defaults );
		assertEquals( 1, annotations.size() );
		assertEquals( 1, annotations.get( JPADotNames.SECONDARY_TABLES ).size() );
		AnnotationInstance[] secondaryTables = annotations.get( JPADotNames.SECONDARY_TABLES )
				.get( 0 )
				.value()
				.asNestedArray();
		assertEquals( 2, secondaryTables.length );
		AnnotationInstance secondaryTable = secondaryTables[0];
		String name = secondaryTable.value( "name" ).asString();
		if ( name.equals( "sec1" ) ) {
			assertSt1( secondaryTable );
			assertSt2( secondaryTables[1] );
		}
		else {
			assertSt1( secondaryTables[1] );
			assertSt2( secondaryTable );
		}


	}

	private void assertSt1(AnnotationInstance secondaryTable) {
		assertEquals( "hib_schema", secondaryTable.value( "schema" ).asString() );
		assertEquals( "sec1_catalog", secondaryTable.value( "catalog" ).asString() );
	}

	private void assertSt2(AnnotationInstance secondaryTable) {
		assertEquals( "sec2_schema", secondaryTable.value( "schema" ).asString() );
		assertEquals( "hib_catalog", secondaryTable.value( "catalog" ).asString() );
	}

	@Override
	protected Class[] getAnnotatedClasses() {
		return new Class[] { Parent.class, Child.class, Name.class };
	}

	@SecondaryTables( {
			@SecondaryTable(name = "sec1", catalog = "sec1_catalog"),
			@SecondaryTable(name = "sec2", schema = "sec2_schema")
	})
	class Name {
	}

	@Entity
	class Parent {
		@Id
		long id;
		@OneToMany(cascade = { CascadeType.ALL, CascadeType.DETACH, CascadeType.PERSIST })
		Set<Child> children = new HashSet();
		@ManyToOne
		Parent parent;


	}

	@Entity
	class Child {
		@Id
		long id;
		@ManyToOne(cascade = { CascadeType.ALL, CascadeType.DETACH })
		Parent parent;

	}

}

Other Hibernate examples (source code examples)

Here is a short list of links related to this Hibernate DefaultConfigurationHelperTest.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.