Skip to content

Latest commit

 

History

History
319 lines (184 loc) · 14.5 KB

CONTRIBUTING.md

File metadata and controls

319 lines (184 loc) · 14.5 KB

Contributing

Documentation changes

Please raise pull requests against main; the gh-pages branch is used only for publishing.

Code changes

Pull requests are most welcome, but please try to test them with the existing tests first.

Conventions

End of line style

DbFit is using Unix style end of line (LF) in source files.

Be careful with that on Windows where the default end of line style is CR+LF. If your editor or other tools don't have good support for the Unix end-of-line conventions you may consider using the help of Git's autocrlf option. If you do so, be aware that DbFit tests and VM setup scripts rely on having some files unchanged. So it's advised that you use autocrlf = input instead of autocrlf = auto.

If your tools have good support for Unix end-of-line format - it's perfectly OK to run with autocrlf unconfigured (or autocrlf = false).

Java style

The coding style conventions for Java that have been adopted by the DbFit project are those of the Java Language Specification, from Sun Microsystems (now Oracle). See the full style guide document at: http://www.oracle.com/technetwork/java/codeconvtoc-136057.html.

Fast build

The quickest way to get feedback on your code changes is to run the fast build:

$ ./gradlew clean fastbuild

This is a pure-Java build that runs the unit tests, the Derby integration tests (with Derby running embedded) and the HSQLDB integration tests (with HSQLDB running in-process, memory-only).

Integration tests

If you make changes to any database adapter, it's sufficient to make sure that the tests for only that adapter run eg if you make any changes to the Mysql adapter, you can run the Mysql integration tests:

$ ./gradlew :dbfit-java:mysql:integrationTest

If you have to make changes to core, please run all integration tests (because core changes can affect any of the adapters). You can run the integration tests with:

$ ./gradlew integrationBuild

Note that this runs the integration tests for the adaptors listed under the integrationBuild task in the main Gradle build script (build.gradle in dbfit project root directory). To exclude certain integration tests, during execution of this task, configure the Gradle property excludeIntegrationTests (in your gradle.properties in the DbFit project root directory) by giving it a value of a comma separated, lower case, list of DB type names to exclude. E.g. excludeIntegrationTests=db2,sqlserver.

Running the integration tests is most easily done from the test virtual machine.

Integration tests without a VM

You can set up an integration test environment without a VM by:

  • installing the appropriate database locally
  • executing the SQL scripts found in src/integration-test/resources of the respective DB driver

However, unlike the VM, this approach doesn't necessarily create all the users and permissions needed for the tests.

The test virtual machine

The easiest way to get a DbFit test environment is to provision a Linux virtual machine image. The instructions below describe how to do this.

The fully-built VM includes:

  • working installs of Gradle, MySQL, PostgreSQL, SQL Server, Derby and HSQLDB
  • the pre-requisites to easily install Oracle
  • the pre-requisites to easily install DB2
  • the pre-requisites to easily install Informix

The VM doesn't include:

  • a working Oracle installation (however there is a shell script to help with the installation described below)
  • a working Teradata installation (this can be created separately as a VMWare or EC2 installation)
  • a working Netezza installation (this can be created separately as a pair of VMWare machines)

Setting up the test VM

  1. You first need to install VirtualBox.

  2. Install vagrant. Versions 1.2+.

  3. Install Chef Development Kit

  4. Install vagrant plugins vagrant-berkshelf, vagrant-omnibus, vagrant-vbguest, vagrant-newdisk

     vagrant plugin install vagrant-berkshelf
     vagrant plugin install vagrant-omnibus
     vagrant plugin install vagrant-vbguest
     vagrant plugin install vagrant-newdisk
    
  5. If you want to provision Oracle database - download the setup package as described in 1st bullet of ORACLE file.

  6. If you want to provision DB2 database - download the setup package as described in 1st bullet of DB2 file.

  7. If you want to provision Informix database - download the setup package as described in 1st bullet of Informix file.

  8. Run every subsequent command from the test_vm folder:

     cd test_vm
    
  9. Provision and start the vagrant VM:

     vagrant up
    

Note: If provisioning fails, you may need to customize some settings according to the specifics of your environment. Please take a look at Vagrantfile and vagrant_config_custom.rb.sample. The latter provides instruction how Vagrantfile settings can be customized.

Setting up to build successfully

The subsequent steps need to be followed on the project folder within the VM. To get there:

  1. First, ssh into the machine:

    vagrant ssh
    
  2. The development directory is NFS-mounted under /var/dbfit. Change into it:

    cd /var/dbfit 
    

Installing Oracle XE

If you downloaded Oracle setup package before provisioning vagrant VM - the Oracle database is automatically installed and configured.

For manual setup instructions see ORACLE file.

Installing DB2 Express-C

If you downloaded DB2 setup package before provisioning vagrant VM - the DB2 database is automatically installed and configured.

For manual setup instructions see DB2 file.

IDE Integration

IntelliJ

An IntelliJ project can be created by running:

  1. $ ./gradlew idea

  2. set gradle.java.home= in $IDEA_HOME/bin/idea.properties

Eclipse

An Eclipse project can be created using gradle.

  1. On the host or guest (depending upon from where you'll run Eclipse) run:

    $ .\gradlew eclipse (Windows) $ ./gradlew eclipse (Linux)

    (Note that this also populates the gradle cache with the project dependencies)

  2. From Eclipse:

    File -> Import -> General -> Existing Projects into workspace

  3. Select the Java code root directory. E.g:

    C:\dbfit\dbfit-java (Windows)

    /dbfit/dbfit-java (Linux)

  4. Check the Search for nested projects box.

  5. Uncheck dbfit-java (parent) project from the search results.

  6. Click Finish.

  7. Ensure all of the DbFit projects are set to use the correct JDK compliance settings by right-clicking on each project

    Properties -> Java Compiler

Remote Debugging with Eclipse

Modify the test page to set the variable REMOTE_DEBUG_COMMAND. E.g. include the following line at the start of the test page

!define REMOTE_DEBUG_COMMAND {java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -cp %p %m}

Note the TCP port specified in the above example is 8000 (the default port number. Choose another value if required).

Add breakpoints to the DbFit Java source files as required.

Create a debug configuration in Eclipse:

Run -> Debug Configurations...

  • On the Connect tab
    • Project: select any of the DbFit projects.
    • Connection Type: select Standard (Socket Attach).
    • Host: enter the host name/IP of the FitNesse server process (i.e. the host or guest VM depending upon how you are working).
    • Port: enter the same TCP port number as specified for the REMOTE_DEBUG_COMMAND variable in the test page.

Run the test page via the web browser address/URL by substituting the trailing: ?test

with: ?responder=test&remote_debug=true.

The test will suspend, awaiting connection by a remote debugger process.

Start debugging in Eclipse using the debug configuration by clicking Debug.

Building

  • Clean, build, test and install to local maven repo

     dbfit-java$ ./gradlew clean check install
    
  • Build and package all java projects:

     dbfit$ ./gradlew assemble
    
  • Create release zip

     dbfit$ ./gradlew bundle
    
  • Start fitnesse as a webservice on http://localhost:8085

     dbfit$ ./gradlew start
    

Keep in mind that this runs from the transient dist folder. Any wiki page edits that you make in this mode will be wiped when the next build tasks are run.

  • Start fitnesse on top of actual source of DbFit acceptance tests (can be used to edit the tests)

     dbfit$ ./gradlew starthere
    

This will compile the source, copy the jars and resources to the dist directory and run up FitNesse with DbFit installed. Point your browser to http://localhost:8085 to access the running instance (please adjust localhost to match the host on which the instance is actually running).

Please be aware that if you change any code whilst the /.gradlew start command is running you will have to stop the command and re-run it in order to compile and pick up the changes. To stop the running instance it is preferable to point your browser to http://localhost:8085/?shutdown rather than killing it at the command line, i.e. don't do a Ctrl+C or equivalent (again adjust localhost to match the host on which the instance is actually running).

  • By default the uncommitted acceptance tests are being purged when preparing the new content of dist directory. In order to keep them, keepTests project property may be used

     dbfit$ ./gradlew starthere -PkeepTests
    

Publishing to the Sonatype Central Repository (a.k.a. Maven Central)

Uploading Development Version Snapshots
  • Create a new Sonatype user profile (https://issues.sonatype.org/secure/Signup!default.jspa).

  • Create a new support issue and register to upload DbFit (com.github.dbfit) artefacts.

  • Modify the DbFit version number string in the parent Gradle build script (in the DbFit development root directory). Ensure the version number string has the -SNAPSHOT suffix.

  • Update gradle.properties in the DbFit development root directory with your Sonatype user name (ossrhUsername) and password (ossrhPassword).

  • Upload the development version snapshot artefact to the Sonatype snapshots repository with:

      dbfit$ ./gradlew uploadArchives
    
Uploading Release Versions
  • Modify the DbFit version number string in the parent Gradle build script (in the DbFit development root directory). Ensure the version number string DOES NOT have the -SNAPSHOT suffix.

  • Create a public/private key pair for signing, cryptographically, of the build artefacts (i.e. DbFit JAR files). Follow the Sonatype guide (http://central.sonatype.org/pages/working-with-pgp-signatures.html).

  • Update gradle.properties in the DbFit development root directory with your public key, public key pass phrase and path to your secret keyring file.

  • Update gradle.properties in the DbFit development root directory with your Sonatype user name (ossrhUsername) and password (ossrhPassword).

  • Upload the release version artefact to the Sonatype staging repository:

      dbfit$ ./gradlew uploadArchives
    
Promoting Staged Release Versions
  • Log into the Sonatype dashboard, search for the DbFit project, and manually promote the staged artefacts.

Using custom libraries

If you need to use libraries which are not available on the public artifact repositories (e.g. proprietary JDBC drivers) - you may place them in custom_libs directory. This folder is configured as flat directory repository in Gradle - the typical naming format of JARs inside is <main_name>-<version>.jar.

Useful development commands

  • Logging in as root for mysql:

    mysql -u root -ppassword
    
  • Logging in as the postgres superuser for postgresql:

    sudo su postgres
    psql dbfit
    
  • Logging in as the system superuser for oracle:

    sqlplus system/oracle
    
  • Logging in as the db2inst1 superuser for db2:

    sudo su - db2inst1
    db2
    
  • Logging in as the informix superuser for informix:

    sudo su - informix
    . /informix/dbfitifserver.ksh
    /informix/bin/dbaccess dbfit
    

Installing Teradata Express Edition

For manual setup instructions see TERADATA file.

Installing and testing with IBM Netezza Emulator

For manual setup instructions see NETEZZA file.

Adding a new database adapter

Let's say that you wish to implement a DbFit driver for an as-yet-unsupported database, Newdata. Here is a broad outline of the steps that you would need to take:

  1. Implement a NewdataEnvironment class, which implements the DBEnvironment interface and is annotated with @DatabaseEnvironment. You will almost certainly want to subclass AbstractDbEnvironment, as that already does a lot of the work. Fundamentally, you will have to provide implementations for the following:
    • a mapping between the Newdata database types and java.sql datatypes
    • a query that yields all column metadata given the name of a table or view
    • a query that yields all parameters given the name of a stored procedure or function
  2. Implement a NewdataTest class which extends DatabaseTest - this is the fixture class that you will use to initialize your database code in your DbFit tests.
  3. Clone the Oracle DbFit acceptance test suites - FlowMode and StandaloneFixtures - and convert them to use the Newdata database. When these tests pass, that is the clearest indication that your implementation is working. Not all of the tests will be applicable, and can be ignored.
  4. Add any extra tests for any Newdata-specific SQL features that you may wish to use, and have to write code to provide the specific support.

When in doubt, have a look how the problem you're having is solved in one of the several other database drivers.