Skip to content

Commit f010b65

Browse files
committedMay 21, 2024·
Add --slience-skips and --force-newlines
--silence-skips makes it easier to declutter test debugging sessions where only a single spec is being run --force-newlines ensures a newline character appears after every spec. this may help some CI systems flush their output.
1 parent 42013d6 commit f010b65

File tree

4 files changed

+54
-8
lines changed

4 files changed

+54
-8
lines changed
 

‎docs/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -2697,6 +2697,8 @@ These mechanisms can all be used in concert. They combine with the following ru
26972697
- Programmatic filters always apply and result in a non-zero exit code. Any additional CLI filters only apply to the subset of specs selected by the programmatic filters.
26982698
- When multiple CLI filters (`--label-filter`, `--focus-file/--skip-file`, `--focus/--skip`) are provided they are all ANDed together. The spec must satisfy the label filter query **and** any location-based filters **and** any description based filters.
26992699

2700+
If you have a large test suite and would like to avoid printing out all the `S` skip delimiters you can run with `--silence-skips` to suppress them.
2701+
27002702
#### Avoiding filtering out all tests
27012703

27022704
Especially for CI it is useful to fail when all tests were filtered out by accident (either via skip or typo in label filter).
@@ -3717,6 +3719,8 @@ Here's why:
37173719

37183720
If running on Github actions: `--github-output` will make the output more readable in the Github actions console.
37193721

3722+
If your CI system will only flush if a newline character is seen you may want to set `--force-newlines` to ensure that the output is flushed correctly.
3723+
37203724
### Supporting Custom Suite Configuration
37213725

37223726
There are contexts where you may want to change some aspects of a suite's behavior based on user-provided configuration. There are two widely adopted means of doing this: environment variables and command-line flags.

‎reporters/default_reporter.go

+9-1
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,11 @@ func (r *DefaultReporter) DidRun(report types.SpecReport) {
202202
v := r.conf.Verbosity()
203203
inParallel := report.RunningInParallel
204204

205+
//should we completely omit this spec?
206+
if report.State.Is(types.SpecStateSkipped) && r.conf.SilenceSkips {
207+
return
208+
}
209+
205210
header := r.specDenoter
206211
if report.LeafNodeType.Is(types.NodeTypesForSuiteLevelNodes) {
207212
header = fmt.Sprintf("[%s]", report.LeafNodeType)
@@ -278,9 +283,12 @@ func (r *DefaultReporter) DidRun(report types.SpecReport) {
278283
}
279284
}
280285

281-
// If we have no content to show, jsut emit the header and return
286+
// If we have no content to show, just emit the header and return
282287
if !reportHasContent {
283288
r.emit(r.f(highlightColor + header + "{{/}}"))
289+
if r.conf.ForceNewlines {
290+
r.emit("\n")
291+
}
284292
return
285293
}
286294

‎reporters/default_reporter_test.go

+35-7
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ func S(options ...interface{}) types.SpecReport {
167167
return report
168168
}
169169

170-
type ConfigFlag uint8
170+
type ConfigFlag uint16
171171

172172
const (
173173
Succinct ConfigFlag = 1 << iota
@@ -177,6 +177,8 @@ const (
177177
FullTrace
178178
ShowNodeEvents
179179
GithubOutput
180+
SilenceSkips
181+
ForceNewlines
180182

181183
Parallel //used in the WillRun => DidRun specs to capture behavior when running in parallel
182184
)
@@ -208,6 +210,12 @@ func (cf ConfigFlag) String() string {
208210
if cf.Has(GithubOutput) {
209211
out = append(out, "github-output")
210212
}
213+
if cf.Has(SilenceSkips) {
214+
out = append(out, "silence-skips")
215+
}
216+
if cf.Has(ForceNewlines) {
217+
out = append(out, "force-newlines")
218+
}
211219
return strings.Join(out, "|")
212220
}
213221

@@ -231,6 +239,8 @@ func C(flags ...ConfigFlag) types.ReporterConfig {
231239
FullTrace: f.Has(FullTrace),
232240
ShowNodeEvents: f.Has(ShowNodeEvents),
233241
GithubOutput: f.Has(GithubOutput),
242+
SilenceSkips: f.Has(SilenceSkips),
243+
ForceNewlines: f.Has(ForceNewlines),
234244
}
235245
}
236246

@@ -572,7 +582,10 @@ var _ = Describe("DefaultReporter", func() {
572582
S(CLS(cl0, cl1), CTS("A", "B"), "C", cl2),
573583
Case(Succinct, Normal, Succinct|Parallel, Normal|Parallel,
574584
"{{green}}"+DENOTER+"{{/}}"),
575-
Case(Verbose,
585+
Case(Succinct|ForceNewlines, Normal|ForceNewlines, Succinct|Parallel|ForceNewlines, Normal|Parallel|ForceNewlines,
586+
"{{green}}"+DENOTER+"{{/}}",
587+
""),
588+
Case(Verbose, Verbose|ForceNewlines,
576589
DELIMITER,
577590
"{{/}}A {{gray}}B {{/}}{{bold}}C{{/}}",
578591
"{{gray}}cl2.go:80{{/}}",
@@ -694,7 +707,10 @@ var _ = Describe("DefaultReporter", func() {
694707
),
695708
Case(Succinct, Normal, Succinct|Parallel, Normal|Parallel,
696709
spr("{{green}}%s{{/}}", DENOTER)),
697-
Case(Verbose, VeryVerbose,
710+
Case(Succinct|ForceNewlines, Normal|ForceNewlines, Succinct|Parallel|ForceNewlines, Normal|Parallel|ForceNewlines,
711+
spr("{{green}}%s{{/}}", DENOTER),
712+
""),
713+
Case(Verbose, VeryVerbose, Verbose|ForceNewlines, VeryVerbose|ForceNewlines,
698714
DELIMITER,
699715
"{{/}}{{bold}}A{{/}}",
700716
"{{gray}}cl0.go:12{{/}}",
@@ -722,7 +738,7 @@ var _ = Describe("DefaultReporter", func() {
722738
S(types.NodeTypeIt, "A", cl0,
723739
RE("my entry", cl1),
724740
),
725-
Case(Succinct, Normal, Succinct|Parallel, Normal|Parallel,
741+
Case(Succinct, Normal, Succinct|Parallel, Normal|Parallel, Succinct|ForceNewlines, Normal|ForceNewlines, Succinct|Parallel|ForceNewlines, Normal|Parallel|ForceNewlines,
726742
DELIMITER,
727743
spr("{{green}}%s [1.000 seconds]{{/}}", DENOTER),
728744
"{{green}}{{bold}}A{{/}}",
@@ -733,7 +749,7 @@ var _ = Describe("DefaultReporter", func() {
733749
" {{gray}}<< Report Entries{{/}}",
734750
DELIMITER,
735751
""),
736-
Case(Verbose, VeryVerbose,
752+
Case(Verbose, VeryVerbose, Verbose|ForceNewlines, VeryVerbose|ForceNewlines,
737753
DELIMITER,
738754
"{{/}}{{bold}}A{{/}}",
739755
"{{gray}}cl0.go:12{{/}}",
@@ -800,6 +816,9 @@ var _ = Describe("DefaultReporter", func() {
800816
),
801817
Case(Succinct, Normal, Succinct|Parallel, Normal|Parallel, Succinct|ShowNodeEvents, Normal|ShowNodeEvents,
802818
spr("{{green}}%s{{/}}", DENOTER)),
819+
Case(Succinct|ForceNewlines, Normal|ForceNewlines, Succinct|Parallel|ForceNewlines, Normal|Parallel|ForceNewlines, Succinct|ShowNodeEvents|ForceNewlines, Normal|ShowNodeEvents|ForceNewlines,
820+
spr("{{green}}%s{{/}}", DENOTER),
821+
""),
803822
Case(Verbose, VeryVerbose, //nothing to see here since things are emitted while streaming, which we don't simulate
804823
DELIMITER,
805824
"{{/}}{{bold}}A{{/}}",
@@ -873,7 +892,10 @@ var _ = Describe("DefaultReporter", func() {
873892
S(types.NodeTypeIt, "A", types.SpecStateSkipped, cl0),
874893
Case(Succinct, Normal, Succinct|Parallel, Normal|Parallel, Verbose, Verbose|Parallel,
875894
"{{cyan}}S{{/}}"),
876-
Case(VeryVerbose,
895+
Case(Succinct|ForceNewlines, Normal|ForceNewlines, Succinct|Parallel|ForceNewlines, Normal|Parallel|ForceNewlines, Verbose|ForceNewlines, Verbose|Parallel|ForceNewlines,
896+
"{{cyan}}S{{/}}",
897+
""),
898+
Case(VeryVerbose, VeryVerbose|ForceNewlines,
877899
"{{cyan}}S [SKIPPED]{{/}}",
878900
"{{cyan}}{{bold}}A{{/}}",
879901
"{{gray}}cl0.go:12{{/}}",
@@ -886,6 +908,7 @@ var _ = Describe("DefaultReporter", func() {
886908
"{{gray}}cl0.go:12{{/}}",
887909
DELIMITER,
888910
""),
911+
Case(Succinct|SilenceSkips, Normal|SilenceSkips, Succinct|Parallel|SilenceSkips, Normal|Parallel|SilenceSkips, Verbose|SilenceSkips, Verbose|Parallel|SilenceSkips, VeryVerbose|SilenceSkips, VeryVerbose|Parallel|SilenceSkips, ""),
889912
),
890913
Entry("a user-skipped test",
891914
S(types.NodeTypeIt, "A", types.SpecStateSkipped, cl0,
@@ -931,6 +954,7 @@ var _ = Describe("DefaultReporter", func() {
931954
" {{gray}}<< Timeline{{/}}",
932955
DELIMITER,
933956
""),
957+
Case(Succinct|SilenceSkips, Normal|SilenceSkips, Succinct|Parallel|SilenceSkips, Normal|Parallel|SilenceSkips, Verbose|SilenceSkips, Verbose|Parallel|SilenceSkips, VeryVerbose|SilenceSkips, VeryVerbose|Parallel|SilenceSkips, ""),
934958
),
935959
Entry("a user-skipped test with timeline content",
936960
S(types.NodeTypeIt, "A", types.SpecStateSkipped, cl0,
@@ -983,12 +1007,16 @@ var _ = Describe("DefaultReporter", func() {
9831007
DELIMITER,
9841008
"",
9851009
),
1010+
Case(Succinct|SilenceSkips, Normal|SilenceSkips, Succinct|Parallel|SilenceSkips, Normal|Parallel|SilenceSkips, Verbose|SilenceSkips, Verbose|Parallel|SilenceSkips, VeryVerbose|SilenceSkips, VeryVerbose|Parallel|SilenceSkips, ""),
9861011
),
9871012
Entry("a pending test",
9881013
S(types.NodeTypeIt, "C", types.SpecStatePending, cl2, CTS("A", "B"), CLS(cl0, cl1)),
9891014
Case(Succinct, Succinct|Parallel,
9901015
"{{yellow}}P{{/}}"),
991-
Case(Normal, Normal|Parallel, Verbose|Parallel,
1016+
Case(Succinct|ForceNewlines, Succinct|Parallel|ForceNewlines,
1017+
"{{yellow}}P{{/}}",
1018+
""),
1019+
Case(Normal, Normal|Parallel, Verbose|Parallel, Normal|ForceNewlines, Normal|Parallel|ForceNewlines, Verbose|Parallel|ForceNewlines,
9921020
DELIMITER,
9931021
"{{yellow}}P [PENDING]{{/}}",
9941022
"{{/}}A {{gray}}B {{yellow}}{{bold}}C{{/}}",

‎types/config.go

+6
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ type ReporterConfig struct {
9191
FullTrace bool
9292
ShowNodeEvents bool
9393
GithubOutput bool
94+
SilenceSkips bool
95+
ForceNewlines bool
9496

9597
JSONReport string
9698
JUnitReport string
@@ -337,6 +339,10 @@ var ReporterConfigFlags = GinkgoFlags{
337339
Usage: "If set, default reporter prints node > Enter and < Exit events when specs fail"},
338340
{KeyPath: "R.GithubOutput", Name: "github-output", SectionKey: "output",
339341
Usage: "If set, default reporter prints easier to manage output in Github Actions."},
342+
{KeyPath: "R.SilenceSkips", Name: "silence-skips", SectionKey: "output",
343+
Usage: "If set, default reporter will not print out skipped tests."},
344+
{KeyPath: "R.ForceNewlines", Name: "force-newlines", SectionKey: "output",
345+
Usage: "If set, default reporter will ensure a newline appears after each test."},
340346

341347
{KeyPath: "R.JSONReport", Name: "json-report", UsageArgument: "filename.json", SectionKey: "output",
342348
Usage: "If set, Ginkgo will generate a JSON-formatted test report at the specified location."},

0 commit comments

Comments
 (0)
Please sign in to comment.