-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
85 lines (76 loc) · 1.57 KB
/
main_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package main
import (
"sync"
"testing"
"time"
"github.com/getlantern/systray"
"github.com/promignis/cwitch/menu"
"github.com/promignis/cwitch/timer"
)
func setupSystray(t *testing.T) {
InitMenu()
// replace to prevent messing with
// existing timerMap
menu.MenuMap = make(timer.TimerMap)
systray.Run(onReady, func() {
menu.CTray.Exit()
if prevCwitchItem != nil {
prevCwitchItem.EndItem()
}
})
}
func TestSequentialItemClicks(t *testing.T) {
go setupSystray(t)
// enough time to allow setup
time.Sleep(time.Second * 3)
for _, m := range menu.MenuMap {
if m.MenuItem != nil {
multiClick(m.MenuItem.ClickedCh, 3)
time.Sleep(time.Second * 3)
}
}
}
func TestParallelItemClicks(t *testing.T) {
var waitGroup sync.WaitGroup
waitGroup.Add(len(menu.MenuMap))
for _, m := range menu.MenuMap {
// closure
go func(m *timer.Timer) {
if m.MenuItem != nil {
multiClick(m.MenuItem.ClickedCh, 3)
time.Sleep(time.Second * 3)
waitGroup.Done()
}
}(m)
}
waitGroup.Wait()
}
func TestSameItemClick(t *testing.T) {
ticker := time.NewTicker(time.Second)
// 5 seconds
count := 5
var waitGroup sync.WaitGroup
waitGroup.Add(len(menu.MenuMap))
for _, m := range menu.MenuMap {
go func(m *timer.Timer) {
for t := range ticker.C {
_ = t
count -= 1
if count == 0 {
break
}
click(m.MenuItem.ClickedCh)
waitGroup.Done()
}
}(m)
}
waitGroup.Wait()
}
func click(clickedCh chan struct{}) {
clickedCh <- struct{}{}
}
func multiClick(clickedCh chan struct{}, n int) {
for i := 0; i < n; i++ {
clickedCh <- struct{}{}
}
}