package httpserver

import "github.com/moby/buildkit/util/testutil/httpserver"

Index

Types

type Request

type Request struct {
	Method string
	Header http.Header
}

type Response

type Response struct {
	Content         []byte
	Etag            string
	LastModified    *time.Time
	ContentEncoding string
}

type Stat

type Stat struct {
	AllRequests, CachedRequests int
	Requests                    []Request
}

type TestServer

type TestServer struct {
	*httptest.Server
	// contains filtered or unexported fields
}

func NewTestServer

func NewTestServer(routes map[string]Response) *TestServer

func (*TestServer) ServeHTTP

func (s *TestServer) ServeHTTP(w http.ResponseWriter, r *http.Request)

func (*TestServer) SetRoute

func (s *TestServer) SetRoute(name string, resp Response)

func (*TestServer) Stats

func (s *TestServer) Stats(name string) (st Stat)

Source Files

server.go

Version
v0.15.2
Published
Aug 15, 2024
Platform
js/wasm
Imports
6 packages
Last checked
3 minutes ago

Tools for package owners.