Skip to content

KevinGlinski/golangmockserver

Repository files navigation

Documentation Go Report Card license Release

Golang MockServer is a wrapper around httptest.Server and provides helpers to mock out HTTP request/responses

see Examples_test.go for example usage

// Create a new mock http server and pass in the methods you want it to match
mockServer := NewMockServer([]*MockServerRequest{
    {
        Uri:      "/foo",
        Method:   "GET",
    },
})
defer mockServer.Close()

//Make request to the mock server
// uses mockServer.BaseUrl() to make the call to the localhost server
request, _ := http.NewRequest("GET", mockServer.BaseUrl() + "/foo", nil)
client := &http.Client {}

response, _ := client.Do(request)

//validate responses
assert.Equal(t, 200, response.StatusCode)

Inspired by: https://www.mock-server.com

About

Wrapper around httptest.Server and provides helpers to mock out HTTP request/responses

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages