-
Notifications
You must be signed in to change notification settings - Fork 12
/
rlock_test.go
139 lines (110 loc) · 2.83 KB
/
rlock_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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package godisson
import (
"context"
"fmt"
"github.com/go-redis/redis/v8"
"github.com/pkg/errors"
"net"
"testing"
"time"
)
func TestNewGedisson(t *testing.T) {
rdb := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
})
gedisson := NewGodisson(rdb)
lock := gedisson.NewRLock("hkn")
t.Log(lock.TryLock(20000, 40000))
time.Sleep(10 * time.Second)
lock.Unlock()
//time.Sleep(100 * time.Second)
}
func TestNewGedisson1(t *testing.T) {
rdb := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
})
gedisson := NewGodisson(rdb)
lock1 := gedisson.NewRLock("hkn")
t.Log(lock1.TryLock(20000, 40000))
time.Sleep(10 * time.Second)
lock1.Unlock()
}
func TestNewGedisson2(t *testing.T) {
rdb := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
})
gedisson := NewGodisson(rdb)
lock1 := gedisson.NewRLock("hkn")
t.Log(lock1.TryLock(20000, 40000))
time.Sleep(10 * time.Second)
lock1.Unlock()
}
func TestNewGedissonWatchdog(t *testing.T) {
rdb := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
})
gedisson := NewGodisson(rdb)
go func() {
ticker := time.NewTicker(2 * time.Second)
defer ticker.Stop()
for {
select {
case <-ticker.C:
for _, i := range gedisson.RenewMap.Items() {
e := i.(*RenewEntry)
fmt.Printf("goids %v", e.goroutineIds)
}
}
}
}()
lock := gedisson.NewRLock("hkn")
t.Log(lock.TryLock(40000, -1))
lock1 := gedisson.NewRLock("hkn")
t.Log(lock1.TryLock(40000, -1))
time.Sleep(1 * time.Minute)
lock1.Unlock()
time.Sleep(30 * time.Second)
lock.Unlock()
}
func TestSub(t *testing.T) {
rdb := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
})
sub := rdb.Subscribe(context.Background(), "123-channel")
ctx, cancelFunc := context.WithTimeout(context.Background(), 2*time.Second)
defer cancelFunc()
message, err := sub.ReceiveMessage(ctx)
var target *net.OpError
t.Log(message, err, errors.As(err, &target))
}
func TestPub(t *testing.T) {
rdb := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
})
rdb.Publish(context.Background(), "123-channel", "123")
}
func TestReLock(t *testing.T) {
rdb := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "", // no password set
DB: 0, // use default DB
})
g := NewGodisson(rdb)
lock1 := g.NewRLock("hkn")
t.Log(lock1.TryLock(-1, 30000))
time.Sleep(10 * time.Second)
lock2 := g.NewRLock("hkn")
t.Log(lock2.TryLock(-1, -1))
}