This is an automated email from the ASF dual-hosted git repository.
borinquenkid pushed a change to branch 8.0.x-hibernate7.gorm-scaling
in repository https://gitbox.apache.org/repos/asf/grails-core.git
from 5ef85eb28c Ensure H7 database-per-tenant test matches H5 structure
add 5ebce9f9ba Fix string quoting and test expectations in datamapping,
databinding, and mongodb specs
add 38bc25c799 Fix string quoting issues in HTMLCodecTests
add 383a9d53df Fix string quoting issues in converters and core test specs
add f4c84d64cd Fix HTMLCodecTests string quoting and test data
add 6602d74e54 Fix string quoting issues in validation and converters test
specs
add 1702b40e87 Groovy compilation issues
add f505c63236 Expand testing for Gorm Api Registries
add 0dc41f5cab Optimize registry lookup paths
add 052293a95a Benchmark lock contention patterns in registry paths
No new revisions were added by this update.
Summary of changes:
ISSUES.md | 93 +++++++-
.../org/grails/web/codecs/HTMLCodecTests.groovy | 8 +-
.../grails/plugins/encoders/JSONEncoderSpec.groovy | 2 +-
.../marshaller/json/CalendarMarshallerSpec.groovy | 8 +-
.../marshaller/json/DateMarshallerSpec.groovy | 8 +-
.../json/DomainClassMarshallerSpec.groovy | 6 +-
.../marshaller/json/StaticPropertySpec.groovy | 2 +-
.../json/ValidationErrorsMarshallerSpec.groovy | 2 +-
.../config/NavigableMapSpringProfilesSpec.groovy | 4 +-
.../datastore/gorm/mongo/TestSearchSpec.groovy | 2 +-
.../datastore/gorm/AbstractGormApiRegistry.groovy | 24 +-
.../grails/datastore/gorm/GormApiResolver.groovy | 3 -
.../datastore/gorm/GormInstanceApiRegistry.groovy | 6 +-
.../org/grails/datastore/gorm/GormRegistry.groovy | 122 +++++++---
.../datastore/gorm/GormStaticApiRegistry.groovy | 6 +-
.../gorm/GormValidationApiRegistry.groovy | 6 +-
.../transactions/TransactionalTransformSpec.groovy | 2 +-
.../gorm/AbstractGormApiRegistrySpec.groovy | 178 +++++++++++++++
.../datastore/gorm/GormApiRegistrySpec.groovy | 17 ++
.../gorm/GormInstanceApiRegistrySpec.groovy | 69 ++++++
.../gorm/GormRegistryConcurrencySpec.groovy | 132 +++++++++++
.../gorm/GormRegistryEntityRegistrationSpec.groovy | 27 +++
.../grails/datastore/gorm/GormRegistrySpec.groovy | 254 +++++++++++++++++++++
.../gorm/GormStaticApiRegistrySpec.groovy | 69 ++++++
.../gorm/GormValidationApiRegistrySpec.groovy | 69 ++++++
.../jdbc/schema/DefaultSchemaHandlerSpec.groovy | 12 +-
.../constraints/BlankConstraintsSpec.groovy | 2 +-
27 files changed, 1040 insertions(+), 93 deletions(-)
create mode 100644
grails-datamapping-core/src/test/groovy/org/grails/datastore/gorm/AbstractGormApiRegistrySpec.groovy
create mode 100644
grails-datamapping-core/src/test/groovy/org/grails/datastore/gorm/GormRegistryConcurrencySpec.groovy
create mode 100644
grails-datamapping-core/src/test/groovy/org/grails/datastore/gorm/GormRegistrySpec.groovy