GithubHelp home page GithubHelp logo

spyserver-go's Introduction

SpyServer for Go

Create simple, local test servers that records requests and responds with pre-configured results.

Why use this

Test code making http calls without having a slow, unreliable network in the way. Simplify testing when making calls to external services.

Go's httptest package is good, but this library gives you a few more benefits:

  1. You don't need to point your tests to a different URL.
  2. You can test that your client code closes the response body.
  3. You can simulate various errors that may happen with the transport.

How to use

First, create a spyserver like this:

response := &http.Response{
    StatusCode: http.StatusOK,
    Body:       body,
}
err := fmt.Errorf("error")
spy := SpyServer{response, err}

Next, set the Transport in your http client to the spyserver and call it:

client := &http.Client{
    Transport: spy,
}
client.Do(request)

You can inspect the request sent to the server in your tests:

spy.GetRequest()

You can even test that you close the response body in your production code.

body := spyserver.NewCloseDetectorFromString(jsonString)

// Use the body the response you configure with your spy server
// Then just inject the spy server as usual and call your code

body.IsClosed() // returns true if you closed the response body

spyserver-go's People

Contributors

mariusgrigoriu avatar

Watchers

 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.