-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclipboard_test.go
62 lines (48 loc) · 912 Bytes
/
clipboard_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
package clipboard
import (
"testing"
"time"
)
const wait = time.Second
func TestGetSet(t *testing.T) {
want := "test"
if err := Set(want); err != nil {
t.Fatalf("can't set clipboard: %v", err)
}
got, err := Get()
if err != nil {
t.Fatalf("can't get clipboard: %v", err)
}
if want != got {
t.Fatalf("want %s got %s", want, got)
}
}
func TestNotifyUnnotify(t *testing.T) {
var testStrings = []string{
"foo",
"bar",
"baz",
}
c := make(chan string, len(testStrings))
Notify(c)
for i := 0; i < len(testStrings); i++ {
Set(testStrings[i])
time.Sleep(2 * wait)
}
if len(c) != 3 {
panic("notification lost")
}
for j := 0; j < len(testStrings); j++ {
want := testStrings[j]
got := <-c
if want != got {
t.Fatalf("want %s got %s", want, got)
}
}
Unnotify(c)
Set("another")
time.Sleep(2 * wait)
if len(c) > 0 {
t.Fatal("notification after Unnotify")
}
}