package awstesting
import "github.com/aws/aws-sdk-go-v2/internal/awstesting"
Index ¶
- Variables
- func AssertJSON(t *testing.T, expect, actual string, msgAndArgs ...interface{}) bool
- func AssertQuery(t *testing.T, expect, actual string, msgAndArgs ...interface{}) bool
- func AssertURL(t *testing.T, expect, actual string, msgAndArgs ...interface{}) bool
- func AssertXML(t *testing.T, expect, actual string, container interface{}, msgAndArgs ...interface{}) bool
- func CleanupTLSBundleFiles(files ...string) error
- func CreateTLSBundleFiles() (cert, key, ca string, err error)
- func CreateTLSServer(cert, key string, mux *http.ServeMux) (string, error)
- func DidPanic(fn func()) (bool, interface{})
- func Match(t *testing.T, regex, expected string)
- func NewClient(cfg aws.Config) *aws.Client
- func PopEnv(env []string)
- func SortedKeys(m map[string]interface{}) []string
- func SprintExpectActual(expect, actual interface{}) string
- func StashEnv() []string
- type FakeContext
- func (c *FakeContext) Deadline() (deadline time.Time, ok bool)
- func (c *FakeContext) Done() <-chan struct{}
- func (c *FakeContext) Err() error
- func (c *FakeContext) Value(key interface{}) interface{}
- type MockCredentialsProvider
- func (p MockCredentialsProvider) Invalidate()
- func (p MockCredentialsProvider) Retrieve() (aws.Credentials, error)
- type ReadCloser
- type ZeroReader
Variables ¶
var ( TLSBundleCA = []byte("" /* 942 byte string literal not displayed */) TLSBundleCert = []byte("" /* 792 byte string literal not displayed */) TLSBundleKey = []byte("" /* 889 byte string literal not displayed */) )
Cert generation steps
# Create the CA key openssl genrsa -des3 -out ca.key 1024
Create the CA Cert
openssl req -new -sha256 -x509 -days 3650 \ -subj "/C=GO/ST=Gopher/O=Testing ROOT CA" \ -key ca.key -out ca.crt
# Create config cat > csr_details.txt <<-EOF
[req] default_bits = 1024 prompt = no default_md = sha256 req_extensions = SAN distinguished_name = dn
[ dn ] C=GO ST=Gopher O=Testing Certificate OU=Testing IP
[SAN] subjectAltName = IP:127.0.0.1 EOF
Create certificate signing request
openssl req -new -sha256 -nodes -newkey rsa:1024 \ -config <( cat csr_details.txt ) \ -keyout ia.key -out ia.csr
Create a signed certificate
openssl x509 -req -days 3650 \ -CAcreateserial \ -extfile <( cat csr_details.txt ) \ -extensions SAN \ -CA ca.crt -CAkey ca.key -in ia.csr -out ia.crt
# Verify openssl req -noout -text -in ia.csr openssl x509 -noout -text -in ia.crt
Functions ¶
func AssertJSON ¶
AssertJSON verifies that the expect json string matches the actual.
func AssertQuery ¶
AssertQuery verifies the expect HTTP query string matches the actual.
func AssertURL ¶
AssertURL verifies the expected URL is matches the actual.
func AssertXML ¶
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 ¶
CleanupTLSBundleFiles takes variadic list of files to be deleted.
func CreateTLSBundleFiles ¶
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 ¶
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 ¶
func DidPanic(fn func()) (bool, interface{})
DidPanic returns if the function paniced and returns true if the function paniced.
func Match ¶
Match is a testing helper to test for testing error by comparing expected with a regular expression.
func NewClient ¶
NewClient creates and initializes a generic service client for testing.
func PopEnv ¶
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 SortedKeys ¶
SortedKeys returns a sorted slice of keys of a map.
func SprintExpectActual ¶
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 ¶
func StashEnv() []string
StashEnv stashes the current environment variables and returns an array of all environment values as key=val strings.
Types ¶
type FakeContext ¶
type FakeContext struct { Error error DoneCh chan struct{} }
A FakeContext provides a simple stub implementation of a Context
func (*FakeContext) Deadline ¶
func (c *FakeContext) Deadline() (deadline time.Time, ok bool)
Deadline always will return not set
func (*FakeContext) Done ¶
func (c *FakeContext) Done() <-chan struct{}
Done returns a read channel for listening to the Done event
func (*FakeContext) Err ¶
func (c *FakeContext) Err() error
Err returns the error, is nil if not set.
func (*FakeContext) Value ¶
func (c *FakeContext) Value(key interface{}) interface{}
Value ignores the Value and always returns nil
type MockCredentialsProvider ¶
type MockCredentialsProvider struct { RetrieveFn func() (aws.Credentials, error) InvalidateFn func() }
MockCredentialsProvider is a type that can be used to mock out credentials providers
func (MockCredentialsProvider) Invalidate ¶
func (p MockCredentialsProvider) Invalidate()
Invalidate calls the InvalidateFn
func (MockCredentialsProvider) Retrieve ¶
func (p MockCredentialsProvider) Retrieve() (aws.Credentials, error)
Retrieve calls the RetrieveFn
type ReadCloser ¶
type ReadCloser struct { Size int Closed bool FillData func(bool, []byte, int, int) // contains filtered or unexported fields }
ReadCloser is a io.ReadCloser for unit testing. Designed to test for leaks and whether a handle has been closed
func (*ReadCloser) Close ¶
func (r *ReadCloser) Close() error
Close sets Closed to true and returns no error
func (*ReadCloser) Read ¶
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.
type ZeroReader ¶
type ZeroReader struct{}
ZeroReader is a io.Reader which will always write zeros to the byte slice provided.
func (*ZeroReader) Read ¶
func (r *ZeroReader) Read(b []byte) (int, error)
Read fills the provided byte slice with zeros returning the number of bytes written.
Source Files ¶
assert.go client.go custom_ca_bundle.go util.go
Directories ¶
Path | Synopsis |
---|---|
internal/awstesting/cmd | |
internal/awstesting/cmd/op_crawler | |
internal/awstesting/integration | |
internal/awstesting/integration/customizations | |
internal/awstesting/integration/customizations/s3 | |
internal/awstesting/integration/customizations/s3/s3manager | |
internal/awstesting/mock | |
internal/awstesting/unit | Package unit performs initialization and validation for unit tests |
- Version
- v0.3.0
- Published
- Mar 8, 2018
- Platform
- js/wasm
- Imports
- 17 packages
- Last checked
- 36 minutes ago –
Tools for package owners.