-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmailboxes_test.go
104 lines (85 loc) · 2.47 KB
/
mailboxes_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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package inbox
import (
"context"
"testing"
"time"
)
func TestMailboxes(t *testing.T) {
t.Run("Mailboxes.Put", func(t *testing.T) {
m := New()
m.Get("Bob", "bob secret", nil)
err := m.Put("Alice", "Bob", "alice secret", []byte("message"))
if err != nil {
t.Errorf("got %s, expected no error", err)
}
err = m.Put("Alice", "Bob", "incorrect secret", []byte("message"))
if err != ErrorIncorrectPassword {
t.Errorf("got %s, expect %s", err, ErrorIncorrectPassword)
}
err = m.Put("Alice", "Fred", "alice secret", []byte("message"))
if err != ErrorInboxNotFound {
t.Errorf("Got %s, expected %s", err, ErrorInboxNotFound)
}
m.InboxCapacity = 0
m.Get("BobFull", "bob secret", nil)
err = m.Put("Alice", "BobFull", "alice secret", []byte("message"))
if err != ErrorInboxIsFull {
t.Errorf("Got %s, expected %s", err, ErrorInboxIsFull)
}
})
t.Run("Mailboxes.Get", func(t *testing.T) {
m := New()
from, msg, err := m.Get("Bob", "Bob secret", nil)
if from != "" {
t.Errorf("Got %s, expected empty string", from)
}
if string(msg) != "" {
t.Errorf("Got %s, expected empty string", msg)
}
m.Put("Alice", "Bob", "alice secret", []byte("hello"))
from, msg, err = m.Get("Bob", "Bob secret", nil)
if from != "Alice" {
t.Errorf("Got %s, expected Alice", from)
}
if string(msg) != "hello" {
t.Errorf("Got %s, expected hello", msg)
}
if err != nil {
t.Errorf("Got %s, expected no error", err)
}
from, msg, err = m.Get("Bob", "wrong secret", nil)
if from != "" {
t.Errorf("Got %s, expected empty string", from)
}
if string(msg) != "" {
t.Errorf("Got %s, expected empty string", msg)
}
if err != ErrorIncorrectPassword {
t.Errorf("Got %s, expected %s", err, ErrorIncorrectPassword)
}
})
t.Run("Mailboxes.Clean", func(t *testing.T) {
m := New()
m.InboxTimeout = 0
m.Get("Alice", "secret", nil)
m.Get("Bob", "secret", nil)
m.Clean()
err := m.Put("Bob", "Alice", "secret", []byte("hello"))
m.Clean()
if err != ErrorInboxNotFound {
t.Errorf("Got %s, expected %s", err, ErrorInboxNotFound)
}
t.Run("When one of the inboxes are blocking a Get it shouldn't be deleted", func(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
m := New()
m.InboxTimeout = 0
go m.Get("Alice", "secret", &ctx)
time.Sleep(time.Millisecond)
m.Clean()
if len(m.inboxes) != 1 {
t.Errorf("Inbox is deleted while Get is waiting: %d inboxes", len(m.inboxes))
}
cancel()
})
})
}