Skip to content

Commit 72dfdd3

Browse files
authored
Merge pull request #130 from huntergregory/fail-fast
add fail fast option for cli/generate
2 parents 05f1e20 + abbed22 commit 72dfdd3

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

pkg/cli/generate.go

+8
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ type GenerateArgs struct {
3535
ServerNamespaces []string
3636
ServerPods []string
3737
CleanupNamespaces bool
38+
FailFast bool
3839
Include []string
3940
Exclude []string
4041
DestinationType string
@@ -72,6 +73,7 @@ func SetupGenerateCommand() *cobra.Command {
7273
command.Flags().IntVar(&args.PodCreationTimeoutSeconds, "pod-creation-timeout-seconds", 60, "number of seconds to wait for pods to create, be running and have IP addresses")
7374
command.Flags().StringVar(&args.Context, "context", "", "kubernetes context to use; if empty, uses default context")
7475
command.Flags().BoolVar(&args.CleanupNamespaces, "cleanup-namespaces", false, "if true, clean up namespaces after completion")
76+
command.Flags().BoolVar(&args.FailFast, "fail-fast", false, "if true, stop running tests after the first failure")
7577
command.Flags().StringVar(&args.DestinationType, "destination-type", "", "override to set what to direct requests at; if not specified, the tests will be left as-is; one of "+strings.Join(generator.AllProbeModes, ", "))
7678
command.Flags().IntVar(&args.JobTimeoutSeconds, "job-timeout-seconds", 10, "number of seconds to pass on to 'agnhost connect --timeout=%ds' flag")
7779

@@ -121,6 +123,7 @@ func RunGenerateCommand(args *GenerateArgs) {
121123
BatchJobs: batchJobs,
122124
IgnoreLoopback: args.IgnoreLoopback,
123125
JobTimeoutSeconds: args.JobTimeoutSeconds,
126+
FailFast: args.FailFast,
124127
}
125128
interpreter := connectivity.NewInterpreter(kubernetes, resources, interpreterConfig)
126129
printer := &connectivity.Printer{
@@ -166,6 +169,11 @@ func RunGenerateCommand(args *GenerateArgs) {
166169

167170
printer.PrintTestCaseResult(result)
168171
fmt.Printf("finished policy #%d\n", i+1)
172+
173+
if args.FailFast && !result.Passed(interpreter.Config.IgnoreLoopback) {
174+
logrus.Warn("failing fast due to failure")
175+
break
176+
}
169177
}
170178

171179
printer.PrintSummary()

pkg/connectivity/interpreter.go

+10-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ package connectivity
22

33
import (
44
"fmt"
5+
"time"
6+
57
"github.com/mattfenwick/cyclonus/pkg/connectivity/probe"
68
"github.com/mattfenwick/cyclonus/pkg/generator"
79
"github.com/mattfenwick/cyclonus/pkg/kube"
810
"github.com/mattfenwick/cyclonus/pkg/matcher"
911
"github.com/pkg/errors"
1012
"github.com/sirupsen/logrus"
1113
networkingv1 "k8s.io/api/networking/v1"
12-
"time"
1314
)
1415

1516
const (
@@ -27,6 +28,7 @@ type InterpreterConfig struct {
2728
BatchJobs bool
2829
IgnoreLoopback bool
2930
JobTimeoutSeconds int
31+
FailFast bool
3032
}
3133

3234
func (i *InterpreterConfig) PerturbationWaitDuration() time.Duration {
@@ -128,7 +130,12 @@ func (t *Interpreter) ExecuteTestCase(testCase *generator.TestCase) *Result {
128130
logrus.Infof("step %d: waiting %d seconds for perturbation to take effect", stepIndex+1, t.Config.PerturbationWaitSeconds)
129131
time.Sleep(t.Config.PerturbationWaitDuration())
130132

131-
result.Steps = append(result.Steps, t.runProbe(testCaseState, step.Probe))
133+
stepResult := t.runProbe(testCaseState, step.Probe)
134+
result.Steps = append(result.Steps, stepResult)
135+
136+
if t.Config.FailFast && !stepResult.Passed(t.Config.IgnoreLoopback) {
137+
break
138+
}
132139
}
133140

134141
return result
@@ -151,7 +158,7 @@ func (t *Interpreter) runProbe(testCaseState *TestCaseState, probeConfig *genera
151158
logrus.Infof("running kube probe on try %d", i+1)
152159
stepResult.AddKubeProbe(t.kubeRunner.RunProbeForConfig(probeConfig, testCaseState.Resources))
153160
// no differences between synthetic and kube probes? then we can stop
154-
if stepResult.LastComparison().ValueCounts(t.Config.IgnoreLoopback)[DifferentComparison] == 0 {
161+
if stepResult.Passed(t.Config.IgnoreLoopback) {
155162
break
156163
}
157164
}

pkg/connectivity/result.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func (r *Result) Features() map[string][]string {
3232

3333
func (r *Result) Passed(ignoreLoopback bool) bool {
3434
for _, step := range r.Steps {
35-
if step.LastComparison().ValueCounts(ignoreLoopback)[DifferentComparison] > 0 {
35+
if !step.Passed(ignoreLoopback) {
3636
return false
3737
}
3838
}

pkg/connectivity/stepresult.go

+4
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@ func (s *StepResult) LastComparison() *ComparisonTable {
4141
func (s *StepResult) LastKubeProbe() *probe.Table {
4242
return s.KubeProbes[len(s.KubeProbes)-1]
4343
}
44+
45+
func (s *StepResult) Passed(ignoreLoopback bool) bool {
46+
return s.LastComparison().ValueCounts(ignoreLoopback)[DifferentComparison] == 0
47+
}

0 commit comments

Comments
 (0)