var ( // TLSBundleCA is the CA PEM TLSBundleCA []byte // TLSBundleCert is the Server PEM TLSBundleCert []byte // TLSBundleKey is the Server private key PEM TLSBundleKey []byte // ClientTLSCert is the Client PEM ClientTLSCert []byte // ClientTLSKey is the Client private key PEM ClientTLSKey []byte )
func AssertJSON(t *testing.T, expect, actual string, msgAndArgs ...interface{}) bool
AssertJSON verifies that the expect json string matches the actual.
func AssertQuery(t *testing.T, expect, actual string, msgAndArgs ...interface{}) bool
AssertQuery verifies the expect HTTP query string matches the actual.
func AssertURL(t *testing.T, expect, actual string, msgAndArgs ...interface{}) bool
AssertURL verifies the expected URL is matches the actual.
func AssertXML(t *testing.T, expect, actual string, container interface{}, msgAndArgs ...interface{}) bool
AssertXML verifies that the expect xml string matches the actual.
func CleanupTLSBundleFiles(files ...string) error
CleanupTLSBundleFiles takes variadic list of files to be deleted.
func CreateClientTLSCertFiles() (cert, key string, err error)
CreateClientTLSCertFiles returns a set of temporary files for the client certificate and key files.
func CreateTLSBundleFiles() (cert, key, ca string, err error)
CreateTLSBundleFiles returns the temporary filenames for the certificate key, and CA PEM content. These files should be deleted when no longer needed. CleanupTLSBundleFiles can be used for this cleanup.
func CreateTLSServer(cert, key string, mux *http.ServeMux) (string, error)
CreateTLSServer will create the TLS server on an open port using the certificate and key. The address will be returned that the server is running on.
func DidPanic(fn func()) (bool, interface{})
DidPanic returns if the function paniced and returns true if the function paniced.
func Match(t *testing.T, regex, expected string)
Match is a testing helper to test for testing error by comparing expected with a regular expression.
func NewTLSClientCertServer(handler http.Handler) (*httptest.Server, error)
NewTLSClientCertServer creates a new HTTP test server initialize to require HTTP clients authenticate with TLS client certificates.
func PopEnv(env []string)
PopEnv takes the list of the environment values and injects them into the process's environment variable data. Clears any existing environment values that may already exist.
func SprintExpectActual(expect, actual interface{}) string
SprintExpectActual returns a string for test failure cases when the actual value is not the same as the expected.
func StashEnv(envToKeep ...string) []string
StashEnv stashes the current environment variables except variables listed in envToKeepx Returns an function to pop out old environment
DiscardAt is an io.WriteAt that discards the requested bytes to be written
type DiscardAt struct{}
func (d DiscardAt) WriteAt(p []byte, off int64) (n int, err error)
WriteAt discards the given []byte slice and returns len(p) bytes as having been written at the given offset. It will never return an error.
EndlessReader is an io.Reader that will always return that bytes have been read.
type EndlessReader struct{}
func (e EndlessReader) Read(p []byte) (int, error)
Read will report that it has read len(p) bytes in p. The content in the []byte will be unmodified. This will never return an error.
A FakeContext provides a simple stub implementation of a Context
type FakeContext struct { Error error DoneCh chan struct{} }
func (c *FakeContext) Deadline() (deadline time.Time, ok bool)
Deadline always will return not set
func (c *FakeContext) Done() <-chan struct{}
Done returns a read channel for listening to the Done event
func (c *FakeContext) Err() error
Err returns the error, is nil if not set.
func (c *FakeContext) Value(key interface{}) interface{}
Value ignores the Value and always returns nil
MockCredentialsProvider is a type that can be used to mock out credentials providers
type MockCredentialsProvider struct { RetrieveFn func(ctx context.Context) (aws.Credentials, error) InvalidateFn func() }
func (p MockCredentialsProvider) Invalidate()
Invalidate calls the InvalidateFn
func (p MockCredentialsProvider) Retrieve(ctx context.Context) (aws.Credentials, error)
Retrieve calls the RetrieveFn
ReadCloser is a io.ReadCloser for unit testing. Designed to test for leaks and whether a handle has been closed
type ReadCloser struct { Size int Closed bool FillData func(bool, []byte, int, int) // contains filtered or unexported fields }
func (r *ReadCloser) Close() error
Close sets Closed to true and returns no error
func (r *ReadCloser) Read(b []byte) (int, error)
Read will call FillData and fill it with whatever data needed. Decrements the size until zero, then return io.EOF.
SigV4Signature represents a parsed sigv4 or sigv4a signature.
type SigV4Signature struct { Preamble string // e.g. AWS4-HMAC-SHA256, AWS4-ECDSA-P256-SHA256 SigningName string // generally the service name e.g. "s3" SigningRegion string // for sigv4a this is the region-set header as-is SignedHeaders []string // list of signed headers Signature string // calculated signature }
func ParseSigV4Signature(header http.Header) *SigV4Signature
ParseSigV4Signature deconstructs a sigv4 or sigv4a signature from a set of request headers.
ZeroReader is a io.Reader which will always write zeros to the byte slice provided.
type ZeroReader struct{}
func (r *ZeroReader) Read(b []byte) (int, error)
Read fills the provided byte slice with zeros returning the number of bytes written.
Name | Synopsis |
---|---|
.. |