npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pact-js-dsl

v0.0.4

Published

DSL to write pact tests in Javascript

Downloads

69

Readme

Pact Consumer Javascript DSL

This DSL is in very early stages of development, please bear with us as we give it some polish. Please raise any problems you have in the github issues. Check out the Development Roadmap to see where we are headed.

This codebase provides a Javascript DSL for creating pacts. If you are new to Pact, please read the Pact README first.

This DSL relies on the Ruby pact-mock_service gem to provide the mock service for the Javascript tests. If you do not want to use Ruby in your project, please read about using a standalone Pact mock service here.

Getting Help

  • Please see the wiki for documentation (eg. using CORS, using the DSL on Windows).
  • Google users group: https://groups.google.com/forum/#!forum/pact-support
  • Twitter: @pact_up

Getting Started (with Karma, Jasmine and the pact-mock_service gem)

  1. Install the pact-mock_service ruby gem

    The easiest way is to add gem 'pact-mock_service', '~> 0.2.3.pre.rc1' to your Gemfile and run bundle install

  2. Install and configure Karma with Jasmine

  3. Create a package.json if you don't have one already - use npm init if you don't

  4. Install Karma using their installation instructions

This basically consists of running,

* `npm install karma --save-dev`
* `npm install karma-jasmine karma-chrome-launcher --save-dev`
* `npm install -g karma-cli`
  1. Initialise and configure Karma
Run `karma init`. Answer **jasmine** for *testing framework* and **no** for *use require.js*.
  1. Add pact-consumer-js-dsl to your project by running npm install DiUS/pact-consumer-js-dsl#X.Y.Z --save-dev, where X.Y.Z is the latest stable version, according to the releases page.

  2. Tell Karma about pact-consumer-js-dsl.js in karma.conf.js. In the files: [] section add a new entry for node_modules/pact-consumer-js-dsl/dist/pact-consumer-js-dsl.js.

  3. Allow tests to load resources from pact mock server. One way to do this is in the karma.conf.js, change browsers: ['Chrome'], or browsers: ['PhantomJS'], to,

    ````
    browsers: ['Chrome_without_security'],
    customLaunchers: {
       Chrome_without_security: {
           base: 'Chrome',
           flags: ['--disable-web-security']
       }
    }
         
    or:
         
    browsers: ['PhantomJS_without_security'],
    customLaunchers: {
       PhantomJS_without_security: {
         base: 'PhantomJS',
         flags: ['--web-security=false']
       }
    }
    ````         

Note that running your tests across multiple browsers with one pact mock server will probably conflict with each other. You will need to either run them sequentially or start multiple pact mock servers. To run them sequentially make multiple calls to karma from the command line with the different browsers passed with the --browser option.

  1. Write a Jasmine unit test similar to the following,

     describe("Client", function(done) {
    
         var client, helloProvider;
    
         beforeEach(function() {
    
           client = new ProviderClient('http://localhost:1234');
           helloProvider = MockService.create(
             consumer: 'Hello Consumer',
             provider: 'Hello Provider',
             port: 1234,
             pactDir: '.');
         });
    
         it("should say hello", function() {
    
             helloProvider
               .uponReceiving("a request for hello")
               .withRequest("get", "/sayHello")
               .willRespondWith(200, {
                 "Content-Type": "application/json"
               }, {
                 reply: "Hello"
               });
    
               helloProvider.run(function(runComplete) {
                 expect(client.sayHello()).toEqual("Hello");
                 runComplete(done);
               });
         });
      });

    See the spec in the example directory for examples of asynchronous callbacks, how to expect error responses, and how to use query params.

    Make sure the source and test files are included by Karma in the karma.conf.js in the files array.

  2. Let's run that bad boy!

    • start the pact mock server with bundle exec pact-mock-service -p 1234 -l /tmp/pact.logs
    • run karma start (in another terminal window)
    • inspect the pact file that has been written to "hello_consumer-hello_provider.json"

Example

Have a look at the example folder. Ensure you have Google Chrome installed.

$ cd example
$ npm install
$ script/test.sh

Contributing

Please read CONTRIBUTING.md