Documentation ¶
Index ¶
- Constants
- func LoadObject(text string) (runtime.Object, error)
- type Diagnostics
- type E2ESuite
- func (s *E2ESuite) AfterTest(_, _ string)
- func (s *E2ESuite) BeforeTest(_, _ string)
- func (s *E2ESuite) GetServiceAccountToken() (string, error)
- func (s *E2ESuite) Given() *Given
- func (s *E2ESuite) Run(name string, f func(t *testing.T))
- func (s *E2ESuite) SetupSuite()
- func (s *E2ESuite) TearDownSuite()
- type Env
- type Given
- func (g *Given) CronWorkflow(text string) *Given
- func (g *Given) RunCli(args []string, block func(*testing.T, string, error)) *Given
- func (g *Given) When() *When
- func (g *Given) Workflow(text string) *Given
- func (g *Given) WorkflowName(name string) *Given
- func (g *Given) WorkflowTemplate(text string) *Given
- type Persistence
- type Then
- func (t *Then) Expect(...) *Then
- func (t *Then) ExpectAuditEvents(block func(*testing.T, *apiv1.EventList)) *Then
- func (t *Then) ExpectCron(block func(t *testing.T, cronWf *wfv1.CronWorkflow)) *Then
- func (t *Then) ExpectWorkflowList(listOptions metav1.ListOptions, ...) *Then
- func (t *Then) RunCli(args []string, block func(t *testing.T, output string, err error)) *Then
- type When
- func (w *When) CreateCronWorkflow() *When
- func (w *When) CreateWorkflowTemplates() *When
- func (w *When) DeleteWorkflow() *When
- func (w *When) SubmitWorkflow() *When
- func (w *When) Then() *Then
- func (w *When) Wait(timeout time.Duration) *When
- func (w *When) WaitForWorkflow(timeout time.Duration) *When
- func (w *When) WaitForWorkflowCondition(test func(wf *wfv1.Workflow) bool, condition string, timeout time.Duration) *When
- func (w *When) WaitForWorkflowToStart(timeout time.Duration) *When
Constants ¶
View Source
const Namespace = "argo"
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Diagnostics ¶
type Diagnostics struct {
// contains filtered or unexported fields
}
func (*Diagnostics) Logf ¶
func (d *Diagnostics) Logf(format string, args ...interface{})
func (*Diagnostics) Print ¶
func (d *Diagnostics) Print()
type E2ESuite ¶
type E2ESuite struct { suite.Suite Env Diagnostics *Diagnostics Persistence *Persistence RestConfig *rest.Config KubeClient kubernetes.Interface // contains filtered or unexported fields }
func (*E2ESuite) BeforeTest ¶
func (*E2ESuite) GetServiceAccountToken ¶
func (*E2ESuite) SetupSuite ¶
func (s *E2ESuite) SetupSuite()
func (*E2ESuite) TearDownSuite ¶
func (s *E2ESuite) TearDownSuite()
type Given ¶
type Given struct {
// contains filtered or unexported fields
}
func (*Given) CronWorkflow ¶
func (*Given) Workflow ¶
creates a workflow based on the parameter, this may be:
1. A file name if it starts with "@" 2. Raw YAML.
func (*Given) WorkflowName ¶
func (*Given) WorkflowTemplate ¶
type Persistence ¶
type Persistence struct {
// contains filtered or unexported fields
}
func (*Persistence) Close ¶
func (s *Persistence) Close()
func (*Persistence) DeleteEverything ¶
func (s *Persistence) DeleteEverything()
func (*Persistence) IsEnabled ¶
func (s *Persistence) IsEnabled() bool
type Then ¶
type Then struct {
// contains filtered or unexported fields
}
func (*Then) Expect ¶
func (t *Then) Expect(block func(t *testing.T, metadata *metav1.ObjectMeta, status *wfv1.WorkflowStatus)) *Then
func (*Then) ExpectAuditEvents ¶
func (*Then) ExpectCron ¶
func (*Then) ExpectWorkflowList ¶
func (t *Then) ExpectWorkflowList(listOptions metav1.ListOptions, block func(t *testing.T, wfList *wfv1.WorkflowList)) *Then
type When ¶
type When struct {
// contains filtered or unexported fields
}
func (*When) CreateCronWorkflow ¶
func (*When) CreateWorkflowTemplates ¶
func (*When) DeleteWorkflow ¶
func (*When) SubmitWorkflow ¶
func (*When) WaitForWorkflowCondition ¶
Click to show internal directories.
Click to hide internal directories.