...

Package httptest

import "github.com/google/go-containerregistry/internal/httptest"
Overview
Index

Overview ▾

Package httptest provides a method for testing a TLS server a la net/http/httptest.

func NewTLSServer

func NewTLSServer(domain string, handler http.Handler) (*httptest.Server, error)

NewTLSServer returns an httptest server, with an http client that has been configured to send all requests to the returned server. The TLS certs are generated for the given domain. If you need a transport, Client().Transport is correctly configured.