UNPKG

@pact-foundation/karma-pact

Version:
84 lines (58 loc) 3.76 kB
# Karma Pact [![Build Status](https://travis-ci.org/pact-foundation/karma-pact.svg?branch=master)](https://travis-ci.org/pact-foundation/karma-pact) [![Known Vulnerabilities](https://snyk.io/test/github/pact-foundation/karma-pact/badge.svg?targetFile=package.json)](https://snyk.io/test/github/pact-foundation/karma-pact?targetFile=package.json) Implementation of a Karma Plugin to launch a [Pact Mock Server](https://github.com/pact-foundation/pact-node) before executing your [Pact tests](https://github.com/pact-foundation/pact-js) on the browser. From the [Pact website](http://docs.pact.io/): >The Pact family of frameworks provide support for [Consumer Driven Contracts](http://martinfowler.com/articles/consumerDrivenContracts.html) testing. >A Contract is a collection of agreements between a client (Consumer) and an API (Provider) that describes the interactions that can take place between them. >Consumer Driven Contracts is a pattern that drives the development of the Provider from its Consumers point of view. >Pact is a testing tool that guarantees those Contracts are satisfied. Read [Getting started with Pact](http://dius.com.au/2016/02/03/microservices-pact/) for more information on how to get going. ## Installation First install the package from NPM: ``` npm install --save-dev @pact-foundation/karma-pact @pact-foundation/pact-node ``` Pact-node must be installed as a peer dependency of karma-pact, as to allow developers to have more freedom to use any version of pact-node. Then, on your Karma Configuration file, add the below: ```javascript module.exports = function (config) { config.set({ // in here we are simply telling to use Jasmine with Pact frameworks: ['jasmine', 'pact'], // the Pact options will go here, you can start // as many providers as you need pact: [{ port: 1234, consumer: "some-consumer", provider: "some-provider", dir: "pact/files/go/here", log: "log/files/go/here" }], // ensure Pact and default karma plugins are loaded plugins: [ 'karma-*', '@pact-foundation/karma-pact', ], }); }; ``` The `pact` option can be configured using a single object to spin up a single service, or can be passed an array of objects which will spin up multiple pact services, representing each of your various provider services. Please be sure not to have the same port number between options as they will conflict with each other. All options are passed directly into [Pact Node](https://github.com/pact-foundation/pact-node#create-pact-mock-server), which has the full list of available options. It is recommended, however, to specify the port number, consumer and provider at a minimum to prevent common issues. ## Examples Check the `karma` folder under [Pact JS](https://github.com/pact-foundation/pact-js) for examples with Mocha and Jasmine. ## Running multiple Pact Mock Servers In some situations it may be useful to run multiple Pact Mock Servers. For instance, when running tests with karma, if a consumer defines contracts for several providers, the generated Pact contracts may be mixed up. A solution to solve this is to run one Pact Mock Server per provider. ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request The vision is to have a compatible `Pact` implementation in all the commonly used languages, your help would be greatly appreciated! ## Questions? Please search for potential answers or post question on our [official Pact StackOverflow](https://stackoverflow.com/questions/tagged/pact), or join us on [Slack](https://slack.pact.io)