This is the base repository for Interlok. It contains the base adapter pared of all 3rd party dependencies other than open source ones. There is a single dependency (commented out) on Microsoft SQL Server JDBC provider which is not required unless you explicitly want to test JDBC against SQL Server.
#!shell
./gradlew compileJava
# You will see if you have setup your environment properly.
./gradlew test
# This will take about 10 minutes, and at the end there will be a directory that contains the test output according to the usual gradle conventions (build/reports/tests/test)
Your first build may well have errors!
Everything relies on build.properties; in the previous section you didn't make any changes, so it skipped a bunch of tests that required the optional components. You might want to enable those tests, possibly because you're working on fixing those components or well whatever. So what you will need to do is to create your own copy of build.properties which is simply a standard "properties" file with key=value entries.
Define your properties either on the gradle commandline gradle -PpropertyName=value test
etc. or in gradle.properties
Property Key | Default Value | Description | Notes |
---|---|---|---|
junit.test.classes | **/*Test* |
Standard filter so that when you run gradle test it only tests what you want to test | |
verboseTests | false | If your console mode is "plain" (org.gradle.console=plain), then this prints out each test suite before it's executed | WinGit : it is probably plain |
So, gradle -PverboseTests=true test
will print out test suite names; gradle -Pjunit.test.classes=**/metadata/**/*Test* test
will just test metadata classes.
Create a file src/test/resources/default-test.properties.template.<machinename>
. This will be imported as part of the processTestResources
step and will allow you control behaviour within individual tests such as whether or not stored procedure tests are run (or actual SFTP against a real server).
Check default-test.properties.template for specific values.
If you've made some changes, and you want to check that the downstream projects (like interlok-optional) are OK with your changes, then the easiest solution is to build the snapshot release from Jenkins. This will trigger all the downstream builds once successful (it might take a while) and you'll be able to see any impact your changes may have had.
And that's it.