/vendor/github.com/onsi/ginkgo/config/config.go

https://github.com/backstage/backstage · Go · 187 lines · 134 code · 40 blank · 13 comment · 30 complexity · b7b63e478b77b49ce6719cd740fe008e MD5 · raw file

  1. /*
  2. Ginkgo accepts a number of configuration options.
  3. These are documented [here](http://onsi.github.io/ginkgo/#the_ginkgo_cli)
  4. You can also learn more via
  5. ginkgo help
  6. or (I kid you not):
  7. go test -asdf
  8. */
  9. package config
  10. import (
  11. "flag"
  12. "time"
  13. "fmt"
  14. )
  15. const VERSION = "1.3.1"
  16. type GinkgoConfigType struct {
  17. RandomSeed int64
  18. RandomizeAllSpecs bool
  19. RegexScansFilePath bool
  20. FocusString string
  21. SkipString string
  22. SkipMeasurements bool
  23. FailOnPending bool
  24. FailFast bool
  25. FlakeAttempts int
  26. EmitSpecProgress bool
  27. DryRun bool
  28. ParallelNode int
  29. ParallelTotal int
  30. SyncHost string
  31. StreamHost string
  32. }
  33. var GinkgoConfig = GinkgoConfigType{}
  34. type DefaultReporterConfigType struct {
  35. NoColor bool
  36. SlowSpecThreshold float64
  37. NoisyPendings bool
  38. Succinct bool
  39. Verbose bool
  40. FullTrace bool
  41. }
  42. var DefaultReporterConfig = DefaultReporterConfigType{}
  43. func processPrefix(prefix string) string {
  44. if prefix != "" {
  45. prefix = prefix + "."
  46. }
  47. return prefix
  48. }
  49. func Flags(flagSet *flag.FlagSet, prefix string, includeParallelFlags bool) {
  50. prefix = processPrefix(prefix)
  51. flagSet.Int64Var(&(GinkgoConfig.RandomSeed), prefix+"seed", time.Now().Unix(), "The seed used to randomize the spec suite.")
  52. flagSet.BoolVar(&(GinkgoConfig.RandomizeAllSpecs), prefix+"randomizeAllSpecs", false, "If set, ginkgo will randomize all specs together. By default, ginkgo only randomizes the top level Describe/Context groups.")
  53. flagSet.BoolVar(&(GinkgoConfig.SkipMeasurements), prefix+"skipMeasurements", false, "If set, ginkgo will skip any measurement specs.")
  54. flagSet.BoolVar(&(GinkgoConfig.FailOnPending), prefix+"failOnPending", false, "If set, ginkgo will mark the test suite as failed if any specs are pending.")
  55. flagSet.BoolVar(&(GinkgoConfig.FailFast), prefix+"failFast", false, "If set, ginkgo will stop running a test suite after a failure occurs.")
  56. flagSet.BoolVar(&(GinkgoConfig.DryRun), prefix+"dryRun", false, "If set, ginkgo will walk the test hierarchy without actually running anything. Best paired with -v.")
  57. flagSet.StringVar(&(GinkgoConfig.FocusString), prefix+"focus", "", "If set, ginkgo will only run specs that match this regular expression.")
  58. flagSet.StringVar(&(GinkgoConfig.SkipString), prefix+"skip", "", "If set, ginkgo will only run specs that do not match this regular expression.")
  59. flagSet.BoolVar(&(GinkgoConfig.RegexScansFilePath), prefix+"regexScansFilePath", false, "If set, ginkgo regex matching also will look at the file path (code location).")
  60. flagSet.IntVar(&(GinkgoConfig.FlakeAttempts), prefix+"flakeAttempts", 1, "Make up to this many attempts to run each spec. Please note that if any of the attempts succeed, the suite will not be failed. But any failures will still be recorded.")
  61. flagSet.BoolVar(&(GinkgoConfig.EmitSpecProgress), prefix+"progress", false, "If set, ginkgo will emit progress information as each spec runs to the GinkgoWriter.")
  62. if includeParallelFlags {
  63. flagSet.IntVar(&(GinkgoConfig.ParallelNode), prefix+"parallel.node", 1, "This worker node's (one-indexed) node number. For running specs in parallel.")
  64. flagSet.IntVar(&(GinkgoConfig.ParallelTotal), prefix+"parallel.total", 1, "The total number of worker nodes. For running specs in parallel.")
  65. flagSet.StringVar(&(GinkgoConfig.SyncHost), prefix+"parallel.synchost", "", "The address for the server that will synchronize the running nodes.")
  66. flagSet.StringVar(&(GinkgoConfig.StreamHost), prefix+"parallel.streamhost", "", "The address for the server that the running nodes should stream data to.")
  67. }
  68. flagSet.BoolVar(&(DefaultReporterConfig.NoColor), prefix+"noColor", false, "If set, suppress color output in default reporter.")
  69. flagSet.Float64Var(&(DefaultReporterConfig.SlowSpecThreshold), prefix+"slowSpecThreshold", 5.0, "(in seconds) Specs that take longer to run than this threshold are flagged as slow by the default reporter.")
  70. flagSet.BoolVar(&(DefaultReporterConfig.NoisyPendings), prefix+"noisyPendings", true, "If set, default reporter will shout about pending tests.")
  71. flagSet.BoolVar(&(DefaultReporterConfig.Verbose), prefix+"v", false, "If set, default reporter print out all specs as they begin.")
  72. flagSet.BoolVar(&(DefaultReporterConfig.Succinct), prefix+"succinct", false, "If set, default reporter prints out a very succinct report")
  73. flagSet.BoolVar(&(DefaultReporterConfig.FullTrace), prefix+"trace", false, "If set, default reporter prints out the full stack trace when a failure occurs")
  74. }
  75. func BuildFlagArgs(prefix string, ginkgo GinkgoConfigType, reporter DefaultReporterConfigType) []string {
  76. prefix = processPrefix(prefix)
  77. result := make([]string, 0)
  78. if ginkgo.RandomSeed > 0 {
  79. result = append(result, fmt.Sprintf("--%sseed=%d", prefix, ginkgo.RandomSeed))
  80. }
  81. if ginkgo.RandomizeAllSpecs {
  82. result = append(result, fmt.Sprintf("--%srandomizeAllSpecs", prefix))
  83. }
  84. if ginkgo.SkipMeasurements {
  85. result = append(result, fmt.Sprintf("--%sskipMeasurements", prefix))
  86. }
  87. if ginkgo.FailOnPending {
  88. result = append(result, fmt.Sprintf("--%sfailOnPending", prefix))
  89. }
  90. if ginkgo.FailFast {
  91. result = append(result, fmt.Sprintf("--%sfailFast", prefix))
  92. }
  93. if ginkgo.DryRun {
  94. result = append(result, fmt.Sprintf("--%sdryRun", prefix))
  95. }
  96. if ginkgo.FocusString != "" {
  97. result = append(result, fmt.Sprintf("--%sfocus=%s", prefix, ginkgo.FocusString))
  98. }
  99. if ginkgo.SkipString != "" {
  100. result = append(result, fmt.Sprintf("--%sskip=%s", prefix, ginkgo.SkipString))
  101. }
  102. if ginkgo.FlakeAttempts > 1 {
  103. result = append(result, fmt.Sprintf("--%sflakeAttempts=%d", prefix, ginkgo.FlakeAttempts))
  104. }
  105. if ginkgo.EmitSpecProgress {
  106. result = append(result, fmt.Sprintf("--%sprogress", prefix))
  107. }
  108. if ginkgo.ParallelNode != 0 {
  109. result = append(result, fmt.Sprintf("--%sparallel.node=%d", prefix, ginkgo.ParallelNode))
  110. }
  111. if ginkgo.ParallelTotal != 0 {
  112. result = append(result, fmt.Sprintf("--%sparallel.total=%d", prefix, ginkgo.ParallelTotal))
  113. }
  114. if ginkgo.StreamHost != "" {
  115. result = append(result, fmt.Sprintf("--%sparallel.streamhost=%s", prefix, ginkgo.StreamHost))
  116. }
  117. if ginkgo.SyncHost != "" {
  118. result = append(result, fmt.Sprintf("--%sparallel.synchost=%s", prefix, ginkgo.SyncHost))
  119. }
  120. if ginkgo.RegexScansFilePath {
  121. result = append(result, fmt.Sprintf("--%sregexScansFilePath", prefix))
  122. }
  123. if reporter.NoColor {
  124. result = append(result, fmt.Sprintf("--%snoColor", prefix))
  125. }
  126. if reporter.SlowSpecThreshold > 0 {
  127. result = append(result, fmt.Sprintf("--%sslowSpecThreshold=%.5f", prefix, reporter.SlowSpecThreshold))
  128. }
  129. if !reporter.NoisyPendings {
  130. result = append(result, fmt.Sprintf("--%snoisyPendings=false", prefix))
  131. }
  132. if reporter.Verbose {
  133. result = append(result, fmt.Sprintf("--%sv", prefix))
  134. }
  135. if reporter.Succinct {
  136. result = append(result, fmt.Sprintf("--%ssuccinct", prefix))
  137. }
  138. if reporter.FullTrace {
  139. result = append(result, fmt.Sprintf("--%strace", prefix))
  140. }
  141. return result
  142. }