-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmcmutex_test.go
59 lines (52 loc) · 1.09 KB
/
mcmutex_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
package mcmutex
import (
"github.com/douban/libmc/golibmc"
"testing"
"time"
)
func TestBasic(t *testing.T) {
mc := golibmc.SimpleNew([]string{"localhost:11211"})
mutex := NewMCMutex(mc)
mutex.Expiration = 1
key := "hoge"
defer func() {
if err := mutex.Unlock(key); err != nil {
t.Error(err)
}
}()
if err := mutex.Lock(key); err != nil {
t.Error(err)
}
if err := mutex.Lock(key); err == nil {
t.Errorf("lock through")
}
if err := mutex.Unlock(key); err != nil {
t.Error(err)
}
if err := mutex.Lock(key); err != nil {
t.Error(err)
}
time.Sleep(1 * time.Second)
if err := mutex.Lock(key); err != nil {
t.Error(err)
}
}
func TestRetry(t *testing.T) {
mc := golibmc.SimpleNew([]string{"localhost:11211"})
key := "fuga"
mutex := NewMCMutex(mc)
defer mutex.Unlock(key)
mutex.Expiration = 1
mutex.Retry = 10
mutex.Interval = 1 * time.Millisecond
if err := mutex.Lock(key); err != nil {
t.Error(err)
}
if err := mutex.Lock(key); err == nil {
t.Errorf("lock through")
}
mutex.Interval = 100 * time.Millisecond
if err := mutex.Lock(key); err != nil {
t.Error(err)
}
}