Documentation ¶
Index ¶
- Constants
- func AddSinkToContext(ctx context.Context, sinks ...EventSink) context.Context
- func AddTestLabelsToMap(m map[string]string)
- func CRDForGVK(gvk metav1.GroupVersionKind) *apiextensions.CustomResourceDefinition
- func CompareGoldenFile(t *testing.T, p string, got string, normalizers ...func(s string) string)
- func CompareGoldenObject(t *testing.T, path string, got []byte)
- func EnsureObjectExists(t *testing.T, obj *unstructured.Unstructured, c client.Client)
- func EnsureObjectsExist(t *testing.T, objs []*unstructured.Unstructured, c client.Client)
- func Equals(t *testing.T, o1, o2 interface{}) bool
- func FakeCRDs() []*apiextensions.CustomResourceDefinition
- func FakeCRDsWithHierarchicalResources() []*apiextensions.CustomResourceDefinition
- func FakeServiceMappings() []v1alpha1.ServiceMapping
- func FakeServiceMappingsWithHierarchicalResources() []v1alpha1.ServiceMapping
- func FromContext(ctx context.Context) *testing.T
- func IgnoreLeadingComments(s string) string
- func MustReadFile(t *testing.T, p string) []byte
- func NewBarUnstructured(name, ns string, readyStatus corev1.ConditionStatus) *unstructured.Unstructured
- func NewFolderUnstructured(name, folderID string, readyStatus corev1.ConditionStatus) *unstructured.Unstructured
- func NewIAMServiceAccountUnstructured(name, namespace string) *unstructured.Unstructured
- func NewProjectUnstructured(name, projectID string, readyStatus corev1.ConditionStatus) *unstructured.Unstructured
- func NewSecretUnstructured(name, ns string, stringData map[string]interface{}) *unstructured.Unstructured
- func NewUnstructuredWithObservedState(name, ns string, readyStatus corev1.ConditionStatus) *unstructured.Unstructured
- func StringMatchesRegexList(t *testing.T, regexesToMatch []string, targetString string) bool
- func ToUnstruct(t *testing.T, bytes []byte) *unstructured.Unstructured
- func ToUnstructWithNamespace(t *testing.T, b []byte, namespace string) *unstructured.Unstructured
- func TrimLicenseHeaderFromTF(yaml string) string
- func TrimLicenseHeaderFromYaml(yaml string) string
- func WithContext(ctx context.Context, t *testing.T) context.Context
- type DirectoryEventSink
- type EventSink
- type HTTPRecorder
- type JSONMutator
- type LogEntries
- type LogEntry
- type MemoryEventSink
- type Request
- type Response
- type Type
Constants ¶
const Namespace = "namespace-1"
Variables ¶
This section is empty.
Functions ¶
func AddSinkToContext ¶ added in v1.114.0
AddSinkToContext attaches the sinks to the returned context.
func AddTestLabelsToMap ¶
AddTestLabelsToMap adds test labels to a map directly.
func CRDForGVK ¶ added in v1.95.0
func CRDForGVK(gvk metav1.GroupVersionKind) *apiextensions.CustomResourceDefinition
func CompareGoldenFile ¶ added in v1.114.0
CompareGoldenFile performs a file comparison for a golden test.
func CompareGoldenObject ¶ added in v1.116.0
func EnsureObjectExists ¶
func EnsureObjectExists(t *testing.T, obj *unstructured.Unstructured, c client.Client)
func EnsureObjectsExist ¶
func EnsureObjectsExist(t *testing.T, objs []*unstructured.Unstructured, c client.Client)
func FakeCRDs ¶
func FakeCRDs() []*apiextensions.CustomResourceDefinition
func FakeCRDsWithHierarchicalResources ¶
func FakeCRDsWithHierarchicalResources() []*apiextensions.CustomResourceDefinition
FakeCRDsWithHierarchicalResources returns a CRD list which includes hierarchical resources to allow for the testing of resources that reference hierarchical resources (e.g. "Project")
func FakeServiceMappings ¶
func FakeServiceMappings() []v1alpha1.ServiceMapping
func FakeServiceMappingsWithHierarchicalResources ¶
func FakeServiceMappingsWithHierarchicalResources() []v1alpha1.ServiceMapping
FakeServiceMappingsWithHierarchicalResources returns a ServiceMapping list which includes hierarchical resources to allow for the testing of resources that reference hierarchical resources (e.g. "Project")
func IgnoreLeadingComments ¶ added in v1.114.0
IgnoreLeadingComments is a normalizer function that strips comments. It will stop when it finds the first non-comment line. It is intended to be used with CompareGoldenFile.
func MustReadFile ¶ added in v1.112.0
MustReadFile reads the specified file, failing the test on error.
func NewBarUnstructured ¶
func NewBarUnstructured(name, ns string, readyStatus corev1.ConditionStatus) *unstructured.Unstructured
func NewFolderUnstructured ¶
func NewFolderUnstructured(name, folderID string, readyStatus corev1.ConditionStatus) *unstructured.Unstructured
func NewIAMServiceAccountUnstructured ¶
func NewIAMServiceAccountUnstructured(name, namespace string) *unstructured.Unstructured
func NewProjectUnstructured ¶
func NewProjectUnstructured(name, projectID string, readyStatus corev1.ConditionStatus) *unstructured.Unstructured
func NewSecretUnstructured ¶
func NewSecretUnstructured(name, ns string, stringData map[string]interface{}) *unstructured.Unstructured
func NewUnstructuredWithObservedState ¶ added in v1.114.1
func NewUnstructuredWithObservedState(name, ns string, readyStatus corev1.ConditionStatus) *unstructured.Unstructured
func StringMatchesRegexList ¶
StringMatchesRegexList is a test utility that returns true if the string matches any regex in a list of strings.
if a regex fails to compile, the test will fail.
func ToUnstruct ¶
func ToUnstruct(t *testing.T, bytes []byte) *unstructured.Unstructured
func ToUnstructWithNamespace ¶
func ToUnstructWithNamespace(t *testing.T, b []byte, namespace string) *unstructured.Unstructured
func TrimLicenseHeaderFromTF ¶
TrimLicenseHeaderFromTF trims the license header in the tf string.
func TrimLicenseHeaderFromYaml ¶
TrimLicenseHeaderFromYaml trims the license header in the yaml string.
Types ¶
type DirectoryEventSink ¶ added in v1.114.0
type DirectoryEventSink struct {
// contains filtered or unexported fields
}
func NewDirectoryEventSink ¶ added in v1.114.0
func NewDirectoryEventSink(outputDir string) *DirectoryEventSink
func (*DirectoryEventSink) AddHTTPEvent ¶ added in v1.114.0
func (r *DirectoryEventSink) AddHTTPEvent(ctx context.Context, entry *LogEntry)
type EventSink ¶ added in v1.114.0
An EventSink listens for various events we are able to capture during tests, currently just http requests/responses.
func EventSinksFromContext ¶ added in v1.114.0
EventSinksFromContext gets the EventSink listeners attached to the passed context.
type HTTPRecorder ¶ added in v1.96.0
type HTTPRecorder struct {
// contains filtered or unexported fields
}
func NewHTTPRecorder ¶ added in v1.96.0
func NewHTTPRecorder(inner http.RoundTripper, eventSinks ...EventSink) *HTTPRecorder
type JSONMutator ¶ added in v1.114.0
type LogEntries ¶ added in v1.114.1
type LogEntries []*LogEntry
func (LogEntries) FormatHTTP ¶ added in v1.114.1
func (s LogEntries) FormatHTTP() string
func (LogEntries) KeepIf ¶ added in v1.114.1
func (s LogEntries) KeepIf(pred func(e *LogEntry) bool) LogEntries
func (*LogEntries) PrettifyJSON ¶ added in v1.114.1
func (s *LogEntries) PrettifyJSON(mutators ...JSONMutator)
func (*LogEntries) RemoveHTTPResponseHeader ¶ added in v1.114.1
func (s *LogEntries) RemoveHTTPResponseHeader(key string)
type LogEntry ¶ added in v1.96.0
type LogEntry struct { Timestamp time.Time `json:"timestamp,omitempty"` Request Request `json:"request,omitempty"` Response Response `json:"response,omitempty"` Error string `json:"error,omitempty"` }
func (*LogEntry) FormatHTTP ¶ added in v1.114.0
func (*LogEntry) PrettifyJSON ¶ added in v1.114.0
func (e *LogEntry) PrettifyJSON(mutators ...JSONMutator)
type MemoryEventSink ¶ added in v1.114.0
type MemoryEventSink struct { HTTPEvents []*LogEntry `json:"httpEvents,omitempty"` // contains filtered or unexported fields }
MemoryEventSink is an EventSink that stores events in memory
func NewMemoryEventSink ¶ added in v1.114.0
func NewMemoryEventSink() *MemoryEventSink
func (*MemoryEventSink) AddHTTPEvent ¶ added in v1.114.0
func (s *MemoryEventSink) AddHTTPEvent(ctx context.Context, entry *LogEntry)
type Request ¶ added in v1.96.0
type Request struct { Method string `json:"method,omitempty"` URL string `json:"url,omitempty"` Header http.Header `json:"header,omitempty"` Body string `json:"body,omitempty"` }
func (*Request) FormatHTTP ¶ added in v1.114.0
func (*Request) PrettifyJSON ¶ added in v1.114.0
func (r *Request) PrettifyJSON(mutators ...JSONMutator)
func (*Request) RemoveHeader ¶ added in v1.114.0
type Response ¶ added in v1.96.0
type Response struct { Status string `json:"status,omitempty"` StatusCode int `json:"statusCode,omitempty"` Header http.Header `json:"header,omitempty"` Body string `json:"body,omitempty"` }
func (*Response) FormatHTTP ¶ added in v1.114.0
func (*Response) PrettifyJSON ¶ added in v1.114.0
func (r *Response) PrettifyJSON(mutators ...JSONMutator)
func (*Response) RemoveHeader ¶ added in v1.114.0
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
testsconstants contains constants used in tests.
|
testsconstants contains constants used in tests. |