Git Product home page Git Product logo

mockserver-client-go's Introduction

mockserver-client-go

The mockserver client is a golang client for use with the fantastic http://www.mock-server.com/ HTTP mock server.

Usage:

  • Import the library import "github.com/sandvikcode/mockserver-client-go/pkg/mockclient"

  • Add following constraint to Gopkg.toml then run dep ensure -v instead of running dep ensure -v -add

[[constraint]]
  name = "github.com/sandvikcode/mockserver-client-go"
  version = "0.0.5"

Create an expectation example:

mockServer := mockclient.Client{
    T: t,
    BaseURL: os.Getenv("MOCKSERVER_HOST"),
}

mockServer.AddExpectation(
    mockclient.CreateExpectation(
        mockclient.WhenRequestPath("/(.*)"),
        mockclient.ThenResponseStatus(http.StatusOK),
    ))

defer mockServer.Clear("/(.*)")

Create a verification example:

mockServer := mockclient.Client{
    T: t,
    BaseURL: os.Getenv("MOCKSERVER_HOST"),
}

mockServer.AddVerification(
    mockclient.CreateVerification(
        mockclient.WhenRequestPath("/v1/jobs/(.*)"),
        mockclient.ThenAtLeastCalls(2),
        mockclient.ThenAtMostCalls(4),
    ))

Create a verification sequence example:

mockServer := mockclient.Client{
    T: t,
    BaseURL: os.Getenv("MOCKSERVER_HOST"),
}

mockServer.AddVerificationSequence(
    mockclient.CreateVerification(
        mockclient.WhenRequestPath("/a"),
    ),
    mockclient.CreateVerification(
        mockclient.WhenRequestPath("/b(.*)"),
    ),
    mockclient.CreateVerification(
        mockclient.WhenRequestPath("/c"),
        mockclient.WhenRequestMethod("POST"),
    ),
)

Expectation defaults:

  • unlimited calls will respond to a match
  • calls are not delayed
  • status of matched calls is 200 OK
  • body of matched calls is empty

Verification defaults:

  • matched request occurs once i.e. at 1 least call and at most 1 call

Verification sequence notes:

  • the order of the requests matters as the requests form a sequence to be verified
  • only the request part is used for matching the sequence i.e. request count is not applicable

Links:

mockserver-client-go's People

Contributors

jun2016 avatar nabam avatar sfro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.