-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add post-run-command notify implementation for linux
- Loading branch information
1 parent
1497b37
commit e7e66e9
Showing
8 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
notify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
GO = go | ||
INSTALL = install | ||
|
||
ICONS = icons/test-pass.svg icons/test-fail.svg | ||
ICONDIR = $(HOME)/.icons # or /usr/share/icons | ||
|
||
build: | ||
$(GO) build | ||
|
||
install: $(ICONS) | ||
$(GO) install | ||
$(INSTALL) -d $(ICONDIR) | ||
$(INSTALL) $^ $(ICONDIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<a href="https://www.vecteezy.com/free-vector/pass-fail">Pass Fail Vectors by Vecteezy</a> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"os" | ||
"os/exec" | ||
"strconv" | ||
) | ||
|
||
func main() { | ||
total := envInt("TOTAL") | ||
skipped := envInt("SKIPPED") | ||
failed := envInt("FAILED") | ||
errors := envInt("ERRORS") | ||
|
||
icon := "test-pass" | ||
title := "Passed" | ||
switch { | ||
case errors > 0: | ||
icon = "dialog-warning" | ||
title = "Errored" | ||
case failed > 0: | ||
icon = "test-fail" | ||
title = "Failed" | ||
case skipped > 0: | ||
title = "Passed with skipped" | ||
} | ||
|
||
subtitle := fmt.Sprintf("%d Tests Run", total) | ||
if errors > 0 { | ||
subtitle += fmt.Sprintf(", %d Errored", errors) | ||
} | ||
if failed > 0 { | ||
subtitle += fmt.Sprintf(", %d Failed", failed) | ||
} | ||
if skipped > 0 { | ||
subtitle += fmt.Sprintf(", %d Skipped", skipped) | ||
} | ||
|
||
args := []string{ | ||
"--icon", icon, | ||
title, | ||
subtitle, | ||
} | ||
log.Printf("notify-send %#v", args) | ||
err := exec.Command("notify-send", args...).Run() | ||
if err != nil { | ||
log.Fatalf("Failed to exec: %v", err) | ||
} | ||
} | ||
|
||
func envInt(name string) int { | ||
val := os.Getenv("TESTS_" + name) | ||
n, err := strconv.Atoi(val) | ||
if err != nil { | ||
return 0 | ||
} | ||
return n | ||
} |