This is a fork of Hibernate ORM (http://github.com/hibernate/hibernate-orm) V5.6.5.Final
to allow testing of NuoDB’s Hibernate 5 dialect. The tests of interest are the matrix tests (which allow testing against multiple databases). Unfortunately the section on Matrix testing (in the original README below) is yet to be written (since at least 2018, so probably never will be).
To run the matrix tests for NuoDB:
-
You must have Java JDK 8 installed. Java 11 won’t work.
-
Next, make sure you have our Hibernate 5 dialect jar available:
-
Run
mvn install
- see [project README](https://github.com/nuodb/HibernateDialect5/blob/master/README.md) -
Check the version in the POM - it will be of the form
2x.x.x-hib5
.-
You will need to set
DIALECT_VERSION
to match - see below.
-
-
This project’s
gradle
build file assumes you have your maven repository in the default location (.m2
in your home directory). If so, skip this step.Otherwise you must tell
gradle
where this dependency can be found. For example suppose you usem2
instead of.m2
:# Linux/MacOS export ADDITIONAL_REPO=~/m2/repository/com/nuodb/hibernate/nuodb-hibernate/22.0.5-hib5 # Windows set ADDITIONAL_REPO=c:\Users\yourname\m2\repository\com\nuodb\hibernate\nuodb-hibernate\22.0.5-hib5
-
Set the Hibernate dialect - this must match the Hibernate 5 dialect you installed earlier.
-
Note: the value you set need not have
-hib5
in the end:export DIALECT_VERSION=22.0.5-hib5 (Linux/MacOS) set DIALECT_VERSION=22.0.5-hib5 (Windows)
-
Alternatively, non-Windows users may prepend it to any command:
DIALECT_VERSION=22.x.x ./gradlew …
-
-
You need a database called
hibernate_orm_test
running locally on your machine with username and password alsohibernate_orm_test
. Here are two options using Docker:-
To use docker compose, clone http://github.com/nuodb/nuodb-compose and (per the
README
):-
cd nuodb
andcp env_default
to.env
. -
Edit
.env
and setDB_NAME
,DB_USER
andDB_PASSWORD
tohibernate_orm_test
. Also (last line) setEXTERNAL_ADDRESS=127.0.0.1
. -
Run:
docker compose -p hib -f monolith.yaml up -d
-
Run:
docker exec -it hib-monolith-1 nuocmd show domain
-
-
Or, setup a local database by running
setup.sh
insideenv
folder. This script will create a NuoDB env with an admin service, a Storage Manager (SM) and a Transaction Engine (TE) to run the tests against.
-
-
You need
gradle
installed. To setup gradle, see originalREADME
content below. -
To run the matrix test-suite using NuoDB as the database, execute:
-
Windows (using
gradlew.bat
):set TEST_PLAN=green gradlew --rerun-tasks clean hibernate-core:matrix_nuodb
-
MacOS/Linux
TEST_PLAN=green ./gradlew --rerun-tasks clean hibernate-core:matrix_nuodb
-
Expected output is something like:
10389 tests completed, 0 failed, 2141 skipped
-
Warnings:
-
If you run the tests without the
clean
option you may get a weird internal error in the compiler. -
Not all tests clean up after themselves so you may need to restart your environment:
-
If using docker compose, run
docker restart <container-name>
-
If using the setup script, simply rerun
env/setup.sh
-
-
Test execution takes ~10-20m on average with a live database … and ~3m without!
-
The tests will keep running, and failing even if the database is not available.
-
If the tests run quickly, that’s the hint that your database isn’t running!
-
-
-
-
Run individual tests
-
Example commands:
./gradlew clean :hibernate-core:matrix_nuodb --tests org.hibernate.jpa.test.packaging.PackagedEntityManagerTest ./gradlew clean :hibernate-core:matrix_nuodb --tests *.PackagedEntityManagerTest ./gradlew clean :hibernate-core:matrix_nuodb --tests org.hibernate.jpa.test.packaging.*
NOTE: Not all tests are against NuoDB and actually some are explicitly skipped due to timeout and locks. Those tests have the special annotation
@SkipForDialect(value = NuoDBDialect.class)
-
-
Pull Jar from Sonatype
-
Once our jar is put up at Sonatype, its URL is something like https://oss.sonatype.org/content/repositories/comnuodb-NNNN/com/nuodb/hibernate/nuodb-hibernate/22.0.5-hib5/nuodb-hibernate-22.0.5-hib5.jar.
-
Note the build number - NNNN (a 4 digit number such as 1050). To use this dependency run as follows:
SONATYPE_VERSION=NNNN gradle clean ... (Linux) set SONATYPE_VERSION=NNNN (Windows) gradle clean ...
-
Please note that even if a NuoDB database is not available, 4588 tests complete, 2823 fail, and 840 are skipped. So many tests pass without using the database because the tests are intended for testing Hibernate not the underlying database. We are just piggybacking on them for convenience.
-
If the Hibernate dialect has a new version number:
-
Update the environment variable:
SET DIALECT_VERSION=22.x.x
-
The JAR version is required in three places.
-
build.gradle
-
Contains a "smart" class
NuodbHibernateVersion
which either picks upDIALECT_VERSION
or looks in the local Maven repo to find the latest version of the JAR in there. If you have just built and installed a new version of the JAR, it should find it. -
The class sets variable
nuodbHibernatejarversion
to the version it has found.
-
-
databases/nuodb/matrix.gradle
- references${nuodbHibernatejarversion}
. -
hibernate-core/hibernate-core.gradle
- also references${nuodbHibernatejarversion}
.
-
This must be changed manually in two places:
-
databases/nuodb/matrix.gradle
:jdbcDependency "com.nuodb.jdbc:nuodb-jdbc:24.0.0"
-
hibernate-core/hibernate-core.gradle
:testRuntime( "com.nuodb.jdbc:nuodb-jdbc:24.0.0" )
To use NuoDB
-
Added
databases/nuodb
to define dependencies and configuration required to use NuoDB. -
Added references to the NuoDB dialect and/or NuoDB JDBC jars to:
-
build.gradle
-
databases/nuodb/matrix.gradle
-
hibernate-core/hibernate-core.gradle
-
To configure NuoDB
-
Set the versions of NuoDB’s JDBC and Dialect Jars in [
databases/nuodb/matrix.gradle
](databases/nuodb/matrix.gradle) -
To configure the NuoDB data source modify [
databases/nuodb/resources/hibernate.properties
](databases/nuodb/resources/hibernate.properties) -
Make same modifications to [
hibernate-core/src/test/resources/hibernate.properties
](hibernate-core/src/test/resources/hibernate.properties) - this is the one that actually gets used.
It is possible to run the tests in IntelliJ (Eclipse’s gradle support can’t handle this project).
Open as a gradle project in IntelliJ in the usual way.
To force it to use NuoDB: cp databases/nuodb/resources/hibernate.properties hibernate-core/out/test/resources/hibernate.properties
.
Hibernate ORM is a library providing Object/Relational Mapping (ORM) support to applications, libraries, and frameworks.
It also provides an implementation of the JPA specification, which is the standard Java specification for ORM.
This is the repository of its source code: see [Hibernate.org](https://hibernate.org/orm/) for additional information.
[![Build Status](https://ci.hibernate.org/job/hibernate-orm-main-h2-main/badge/icon)](https://ci.hibernate.org/job/hibernate-orm-main-h2-main/) [![Language grade: Java](https://img.shields.io/lgtm/grade/java/g/hibernate/hibernate-orm.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/hibernate/hibernate-orm/context:java)
The build requires a Java 8 JDK as JAVA_HOME.
You will need [Git](https://git-scm.com/) to obtain the [source](https://github.com/hibernate/hibernate-orm/).
Hibernate uses [Gradle](https://gradle.org) as its build tool. See the Gradle Primer section below if you are new to Gradle.
Contributors should read the [Contributing Guide](CONTRIBUTING.md).
See the guides for setting up [IntelliJ](https://hibernate.org/community/contribute/intellij-idea/) or [Eclipse](https://hibernate.org/community/contribute/eclipse-ide/) as your development environment.
Check out the Getting Started section in CONTRIBUTING.md for getting started working on Hibernate source.
Hibernate makes use of [Jenkins](https://jenkins-ci.org) for its CI needs. The project is built continuous on each push to the upstream repository. Overall there are a few different jobs, all of which can be seen at [https://ci.hibernate.org/view/ORM/](https://ci.hibernate.org/view/ORM/)
This section describes some of the basics developers and contributors new to Gradle might need to know to get productive quickly. The Gradle documentation is very well done; 2 in particular that are indispensable:
-
[Gradle User Guide](https://docs.gradle.org/current/userguide/userguide_single.html) is a typical user guide in that it follows a topical approach to describing all of the capabilities of Gradle.
-
[Gradle DSL Guide](https://docs.gradle.org/current/dsl/index.html) is unique and excellent in quickly getting up to speed on certain aspects of Gradle.
For contributors who do not otherwise use Gradle and do not want to install it, Gradle offers a very cool
feature called the wrapper. It lets you run Gradle builds without a previously installed Gradle distro in
a zero-conf manner. Hibernate configures the Gradle wrapper for you. If you would rather use the wrapper and
not install Gradle (or to make sure you use the version of Gradle intended for older builds) you would just use
the command gradlew
(or gradlew.bat
) rather than gradle
(or gradle.bat
) in the following discussions.
Note that gradlew
is only available in the project’s root dir, so depending on your working directory you may
need to adjust the path to gradlew
as well.
Examples use the gradle
syntax, but just swap gradlew
(properly relative) for gradle
if you wish to use
the wrapper.
Another reason to use gradlew
is that it uses the exact version of Gradle that the build is defined to work with.
Gradle uses the concept of build tasks (equivalent to Ant targets or Maven phases/goals). You can get a list of
available tasks via gradle tasks
.
To execute a task across all modules, simply perform that task from the root directory. Gradle will visit each sub-project and execute that task if the sub-project defines it. To execute a task in a specific module you can either:
-
cd
into that module directory and execute the task -
name the "task path". For example, to run the tests for the hibernate-core module from the root directory you could say
gradle hibernate-core:test
-
build - Assembles (jars) and tests this project
-
buildDependents - Assembles and tests this project and all projects that depend on it. So think of running this in hibernate-core, Gradle would assemble and test hibernate-core as well as hibernate-envers (because envers depends on core)
-
classes - Compiles the main classes
-
testClasses - Compiles the test classes
-
compile (Hibernate addition) - Performs all compilation tasks including staging resources from both main and test
-
jar - Generates a jar archive with all the compiled classes
-
test - Runs the tests
-
publish - Think Maven deploy
-
publishToMavenLocal - Installs the project jar to your local maven cache (aka ~/.m2/repository). Note that Gradle never uses this, but it can be useful for testing your build with other local Maven-based builds.
-
eclipse - Generates an Eclipse project
-
idea - Generates an IntelliJ/IDEA project (although the preferred approach is to use IntelliJ’s Gradle import).
-
clean - Cleans the build directory
Testing against a specific database can be achieved in 2 different ways:
The Hibernate build defines several database testing "profiles" in databases.gradle
. These
profiles can be activated by name using the db
build property which can be passed either as
a JVM system prop (-D
) or as a Gradle project property (-P
). Examples below use the Gradle
project property approach.
gradle clean build -Pdb=pgsql
To run a test from your IDE, you need to ensure the property expansions happen. Use the following command:
gradle clean compile -Pdb=pgsql
Note
|
If you are running tests against a JDBC driver that is not available via Maven central be sure to add these drivers to your local Maven repo cache (~/.m2/repository) or (better) add it to a personal Maven repo server. |
You can run any test on any particular database that is configured in a databases.gradle
profile.
All you have to do is run the following command:
gradlew setDataBase -Pdb=pgsql
or you can use the shortcut version:
gradlew sDB -Pdb=pgsql
You can do this from the module which you are interested in testing or from the hibernate-orm
root folder.
Afterward, just pick any test from the IDE and run it as usual.
Hibernate will pick the database configuration from the hibernate.properties
file that was set up by the setDataBase
Gradle task.
You don’t have to install all databases locally to be able to test against them in case you have docker available.
The script docker_db.sh
allows you to start a pre-configured database which can be used for testing.
All you have to do is run the following command:
./docker_db.sh postgresql_9_5
-
Omitting the argument will print a list of possible options.
When the database is properly started, you can run tests with special profiles that are suffixed with _ci
for example, pgsql_ci
for PostgreSQL.
By using the system property dbHost
you can configure the IP address of your docker host.
The command for running tests could look like the following:
gradlew test -Pdb=pgsql_ci "-DdbHost=192.168.99.100"