Skip to content

Instantly share code, notes, and snippets.

@gbadner
Created January 27, 2014 13:22
Show Gist options
  • Save gbadner/8648491 to your computer and use it in GitHub Desktop.
Save gbadner/8648491 to your computer and use it in GitHub Desktop.
"Integration" failures due to replacing org.hibernate.metamodel
org.hibernate.test.cid.CompositeIdWithGeneratorTest fails in master because new metamodel cannot handle an IdentityGenerator w/ more than one column. (was changed to IdentifierGenerator on metamodel branch).
org.hibernate.test.propertyref.basic.BasicPropertiesTest fails on master; not in metamodel branch.
Tests that extend BaseUnitTestCase (and not BaseCoreFunctionalTestCase) that explicitly build Configuration (requires merging changes to testing code from metamodel branch). For now, they throw NotYetImplementedException:
- org.hibernate.test.annotations.access.xml.XmlAccessTest
- org.hibernate.test.annotations.id.JoinColumnOverrideTest
- org.hibernate.test.annotations.id.sequences.JoinColumnOverrideTest
- org.hibernate.test.annotations.uniqueconstraint.UniqueConstraintValidationTest
- org.hibernate.test.cfg.cache.CacheConfigurationTest
- org.hibernate.test.nationalized.SimpleNationalizedTest
- org.hibernate.test.naturalid.inheritance.spread.SpreadNaturalIdTest
- org.hibernate.test.type.AttributeConverterTest
- org.hibernate.serialization.SessionFactorySerializationTest
Don't know why the following are passing with new metamodel (they are marked @FailureExpected in both metamodel and master branches):
- org.hibernate.test.collection.set.PersistentSetNonLazyTest.testLoadChildCheckParentContainsChildCache
Don't know why the following are passing after integration into master (they are marked @FailureExpectedWithNewMetamodel in metamodel branch):
- org.hibernate.test.instrument.runtime.JavassistInstrumentationTest.testLazy()
- org.hibernate.test.instrument.runtime.JavassistInstrumentationTest.testLazyManyToOne
- org.hibernate.test.instrument.runtime.JavassistInstrumentationTest.testManyToOneProxy
- org.hibernate.test.instrument.runtime.JavassistInstrumentationTest.testSharedPKOneToOne
BeanValidation is not working:
- org.hibernate.test.annotations.beanvalidation.BeanValidationAutoTest
- org.hibernate.test.annotations.beanvalidation.BeanValidationGroupsTest
- org.hibernate.test.annotations.beanvalidation.BeanValidationProvidedFactoryTest
- org.hibernate.test.annotations.beanvalidation.DDLTest
- org.hibernate.test.annotations.beanvalidation.DDLWithoutCallbackTest
- org.hibernate.test.annotations.beanvalidation.HibernateTraversableResolverTest
<key-many-to-one on-delete="..."> not supported (need to rebuild xsd) (introduced by HHH-7807):
- org.hibernate.test.hql.BulkManipulationTest
- org.hibernate.test.idprops.IdentifierPropertyReferencesTest
- org.hibernate.test.immutable.ImmutableTest
- org.hibernate.test.keymanytoone.bidir.component.EagerKeyManyToOneTest
- org.hibernate.test.keymanytoone.bidir.component.LazyKeyManyToOneTest
- org.hibernate.test.keymanytoone.bidir.embedded.KeyManyToOneTest
- org.hibernate.test.keymanytoone.bidir.ondelete.KeyManyToOneCascadeDeleteTest
- org.hibernate.test.keymanytoone.unidir.ondelete.KeyManyToOneCascadeDeleteTest
- org.hibernate.test.loadplans.process.NonEncapsulatedCompositeIdResultSetProcessorTest
- org.hibernate.test.loadplans.walking.KeyManyToOneWalkingTest
- org.hibernate.test.onetoone.formula.OneToOneFormulaTest
EntityMode.MAP not working:
- org.hibernate.test.entitymode.map.basic.DynamicClassTest
- org.hibernate.test.entitymode.map.subclass.SubclassDynamicMapTest
- org.hibernate.test.legacy.MapTest
- org.hibernate.test.onetoone.nopojo.DynamicMapOneToOneTest
- org.hibernate.test.tm.CMTTest
Discriminators for joined subclasses has wrong type sometimes:
- org.hibernate.test.joinedsubclass.JoinedSubclassWithImplicitDiscriminatorTest.metadataAssertions()
- org.hibernate.test.joinedsubclass.JoinedSubclassWithExplicitDiscriminatorTest.metadataAssertions()
- org.hibernate.test.collection.lazynocascade.LazyAssociationNoCascadeTest
Default index type when @MapKeyColumn is used:
- org.hibernate.test.collection.map.PersistentMapTest
New metamodel does not support a registered default tuplizer:
- org.hibernate.test.dynamicentity.tuplizer2.ImprovedTuplizerDynamicEntityTest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment