0.3.0-SNAPSHOT • Published 9 years ago

grunt-pact-js v0.3.0-SNAPSHOT

Weekly downloads
-
License
-
Repository
github
Last release
9 years ago

grunt-pact-js v0.3.0-SNAPSHOT

Generating Pact Consumer Tests with Grunt and Karma

Note that this is not an official Grunt plugin release! If you want to use this in a project, please be sure to follow the instructions for installing development versions, as outlined in the Installing Grunt guide.

Getting Started

This plugin requires Grunt

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-pact-js --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-pact-js');

The "contracttest" tasks

Run this task with the grunt contracttest command.

This plugin relies on the Ruby pact-mock_service. Please read the chapter Install the Mock Server

Install pact consumer library

For your tests you need pact-consumer-js-dsl. Install the library with bower or nodejs and make it accessible over your karmer config file.

bower install pact-consumer-js-dsl --save-dev
module.exports = function (config) {
    config.set({
        ...

        // list of files / patterns to load in the browser
        files: [
          // if you are using this example to setup your own project load pact from the node_modules directory
          // i.e. node_modules/pact-consumer-js-dsl/dist/pact-consumer-js-dsl.js
          'app/bower_components/pact-consumer-js-dsl/dist/pact-consumer-js-dsl.js',

        ],
        ...
    }
}

Install Ruby, Gem, Bundler and Pact-MockServer

OS X or Linux

This task requires you to have Ruby, Bundler and RubyGems installed. If you're on OS X or Linux you probably already have Ruby installed; test with ruby -v in your terminal. When you've confirmed you have Ruby installed, run gem install bundler.

Windows

If on Windows, please refer to the Installing pact-mock-service on Windows

Windows users must run the install command after following Wiki instructions

(This Plugin is not tested with Windows)

Install Mock Server

Depending on your use case you can use different commands.

Using the grunt plugin in a project

Run the grunt task grunt installMockService.

Developing the plugin

Execute bundle install inside the grunt pact js project folder to install pact-mock_service.

Options

If you will change some option you can do this for example with:

grunt.initConfig({
        contractTest: {
            options: {
                mockServicePort: 8181,
            }
        }
    });

If you want change all configuration you can do this with:

    grunt.initConfig({
        contractTest: {
            options: {
                mockServicePort: 8181,
                karmaConfigFile: 'test/karma.conf.js',
                pactDir: 'tmp'
            }
        },
    });

If you want add a custom Gem file for the mock service you can do this with:

    grunt.initConfig({
        installMockService: {
            options: {
                gemfile: 'your-custom-file-if-you-need'
            }
        },
    });

The current Gem file contains the follow content:

    source 'https://rubygems.org'
    gem 'pact-mock_service', '~> 0.4.1'

It is located in node_modules/grunt-pact-js/Gemfile.

Local set up

To work on this plugin locally, use the npm link feature.

Recreate README.MD

To recreate the README.MD just run grunt build-contrib.

Troubleshooting

  • Karma or any other task doesn't work!
  >> rm -rf node_modules/grunt-pact-js/node_modules/*
  >> npm install
  • Karma still doesn't work and there were errors while npm install

    Make sure python27 is installed and selected:

  >> sudo port select --set python python27
  >> npm install

References

See also:

Release History

  • 2015-03-27   v0.3.0-SNAPSHOT   fixed repo urls in package.json
  • 2015-03-20   v0.2.3   Remove grunt as devDependencies
  • 2015-03-20   v0.2.2   Fixed private flag and grunt-force-task dep
  • 2015-03-20   v0.2.1   Fixed typos in documentation
  • 2015-03-20   v0.2.0   Added config options
  • 2015-03-20   v0.1.0   initial setup

Task submitted by devbliss GmbH

This file was generated on Fri Mar 27 2015 17:48:57.