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

https://github.com/backstage/backstage · Go · 141 lines · 116 code · 23 blank · 2 comment · 37 complexity · d6f44d041772d5b9d086165788f23ddd MD5 · raw file

  1. package main
  2. import (
  3. "fmt"
  4. "os"
  5. "os/exec"
  6. "regexp"
  7. "runtime"
  8. "strings"
  9. "github.com/onsi/ginkgo/config"
  10. "github.com/onsi/ginkgo/ginkgo/testsuite"
  11. )
  12. type Notifier struct {
  13. commandFlags *RunWatchAndBuildCommandFlags
  14. }
  15. func NewNotifier(commandFlags *RunWatchAndBuildCommandFlags) *Notifier {
  16. return &Notifier{
  17. commandFlags: commandFlags,
  18. }
  19. }
  20. func (n *Notifier) VerifyNotificationsAreAvailable() {
  21. if n.commandFlags.Notify {
  22. onLinux := (runtime.GOOS == "linux")
  23. onOSX := (runtime.GOOS == "darwin")
  24. if onOSX {
  25. _, err := exec.LookPath("terminal-notifier")
  26. if err != nil {
  27. fmt.Printf(`--notify requires terminal-notifier, which you don't seem to have installed.
  28. OSX:
  29. To remedy this:
  30. brew install terminal-notifier
  31. To learn more about terminal-notifier:
  32. https://github.com/alloy/terminal-notifier
  33. `)
  34. os.Exit(1)
  35. }
  36. } else if onLinux {
  37. _, err := exec.LookPath("notify-send")
  38. if err != nil {
  39. fmt.Printf(`--notify requires terminal-notifier or notify-send, which you don't seem to have installed.
  40. Linux:
  41. Download and install notify-send for your distribution
  42. `)
  43. os.Exit(1)
  44. }
  45. }
  46. }
  47. }
  48. func (n *Notifier) SendSuiteCompletionNotification(suite testsuite.TestSuite, suitePassed bool) {
  49. if suitePassed {
  50. n.SendNotification("Ginkgo [PASS]", fmt.Sprintf(`Test suite for "%s" passed.`, suite.PackageName))
  51. } else {
  52. n.SendNotification("Ginkgo [FAIL]", fmt.Sprintf(`Test suite for "%s" failed.`, suite.PackageName))
  53. }
  54. }
  55. func (n *Notifier) SendNotification(title string, subtitle string) {
  56. if n.commandFlags.Notify {
  57. onLinux := (runtime.GOOS == "linux")
  58. onOSX := (runtime.GOOS == "darwin")
  59. if onOSX {
  60. _, err := exec.LookPath("terminal-notifier")
  61. if err == nil {
  62. args := []string{"-title", title, "-subtitle", subtitle, "-group", "com.onsi.ginkgo"}
  63. terminal := os.Getenv("TERM_PROGRAM")
  64. if terminal == "iTerm.app" {
  65. args = append(args, "-activate", "com.googlecode.iterm2")
  66. } else if terminal == "Apple_Terminal" {
  67. args = append(args, "-activate", "com.apple.Terminal")
  68. }
  69. exec.Command("terminal-notifier", args...).Run()
  70. }
  71. } else if onLinux {
  72. _, err := exec.LookPath("notify-send")
  73. if err == nil {
  74. args := []string{"-a", "ginkgo", title, subtitle}
  75. exec.Command("notify-send", args...).Run()
  76. }
  77. }
  78. }
  79. }
  80. func (n *Notifier) RunCommand(suite testsuite.TestSuite, suitePassed bool) {
  81. command := n.commandFlags.AfterSuiteHook
  82. if command != "" {
  83. // Allow for string replacement to pass input to the command
  84. passed := "[FAIL]"
  85. if suitePassed {
  86. passed = "[PASS]"
  87. }
  88. command = strings.Replace(command, "(ginkgo-suite-passed)", passed, -1)
  89. command = strings.Replace(command, "(ginkgo-suite-name)", suite.PackageName, -1)
  90. // Must break command into parts
  91. splitArgs := regexp.MustCompile(`'.+'|".+"|\S+`)
  92. parts := splitArgs.FindAllString(command, -1)
  93. output, err := exec.Command(parts[0], parts[1:]...).CombinedOutput()
  94. if err != nil {
  95. fmt.Println("Post-suite command failed:")
  96. if config.DefaultReporterConfig.NoColor {
  97. fmt.Printf("\t%s\n", output)
  98. } else {
  99. fmt.Printf("\t%s%s%s\n", redColor, string(output), defaultStyle)
  100. }
  101. n.SendNotification("Ginkgo [ERROR]", fmt.Sprintf(`After suite command "%s" failed`, n.commandFlags.AfterSuiteHook))
  102. } else {
  103. fmt.Println("Post-suite command succeeded:")
  104. if config.DefaultReporterConfig.NoColor {
  105. fmt.Printf("\t%s\n", output)
  106. } else {
  107. fmt.Printf("\t%s%s%s\n", greenColor, string(output), defaultStyle)
  108. }
  109. }
  110. }
  111. }