Skip to content

Instantly share code, notes, and snippets.

@bethesque

bethesque/1.md Secret

Last active December 5, 2019 10:37
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bethesque/c858e5c15649ae525ef0cc5264b8477c to your computer and use it in GitHub Desktop.
Save bethesque/c858e5c15649ae525ef0cc5264b8477c to your computer and use it in GitHub Desktop.
Draft of non-jvm message pact

Consumer

  1. User declares contract between consumer and provider. Pact builder object is created.
builder {
      serviceConsumer 'MessageConsumer'
      hasPactWith 'MessageProvider'
    }
  1. Using builder object, user sets up expectation of message using Pact DSL (message class is a Pact library object)
given:
    builder {
      given 'the provider has data for a message'
      expectsToReceive 'a confirmation message for a group order'
      withMetaData(contentType: 'application/json')
      withContent {
        name 'Bob'
        date = '2000-01-01'
        status 'bad'
        age 100
      }
  1. User executes tests showing that the consumer can handle the message correctly
builder.run { Message message ->
      def content = new JsonSlurper().parse(message.contentsAsBytes())
      // do something here that handles message
    }

    then:
    true
  1. Builder merges message into pact file using provider state and description as the key (potentially call to pact ruby CLI to convert the simple ruby pact JSON into the proper message format?)

Q. What triggers the writing of the message?

Provider

  1. Iterate through each message a) set up state b) invoke provider code that is expected to produce the message (argument is the message description) c) perform matching of expected/actual d) tear down state

  2. Pass/fail based on overall state

Potential itermediate solution until we switch to Rust

Reuse pact-provider-verifier. Instead of user providing HTTP endpoints for the verifications and the state set up, they provide scripts.

eg.

pact-provider-verifier consumer-provider.json --provider-script provider.js --setup-script setup.js

Argument to the provider-script would be the message description. Argument to the setup-script would be either piped JSON (Q is this possible across platforms?) or key value pairs.

@basickarl
Copy link

@bethesque Absolutely!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment