forked from west2-online/DomTok
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocker_test.go
More file actions
127 lines (109 loc) · 3.28 KB
/
locker_test.go
File metadata and controls
127 lines (109 loc) · 3.28 KB
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
/*
Copyright 2024 The west2-online Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package locker
import (
"math/rand/v2"
"sync"
"sync/atomic"
"testing"
. "github.com/smartystreets/goconvey/convey"
"github.com/west2-online/domtok/app/order/domain/repository"
"github.com/west2-online/domtok/config"
"github.com/west2-online/domtok/pkg/base/client"
"github.com/west2-online/domtok/pkg/logger"
"github.com/west2-online/domtok/pkg/utils"
)
func initLocker(t *testing.T) repository.Locker {
t.Helper()
config.Init("test")
logger.Ignore()
c, err := client.InitRedis(0)
if err != nil {
t.Fatalf("failed to init redis client: %v", err)
}
rs := client.InitRedSync(c)
return NewLocker(rs)
}
func TestOrder_Locker(t *testing.T) {
if !utils.EnvironmentEnable() {
return
}
l := initLocker(t)
Convey("Test two threads acquire locks at the same time", t, func() {
Convey("Normal get lock", func() {
id := rand.Int64()
So(l.LockOrder(id), ShouldBeNil)
So(l.UnlockOrder(id), ShouldBeNil)
})
Convey("Test repeat unlock", func() {
id := rand.Int64()
So(l.LockOrder(id), ShouldBeNil)
So(l.UnlockOrder(id), ShouldBeNil)
So(l.UnlockOrder(id), ShouldNotBeNil)
})
Convey("Test unlock with no lock", func() {
id := rand.Int64()
So(l.UnlockOrder(id), ShouldNotBeNil)
})
Convey("Test several goroutine", func() {
var wg sync.WaitGroup
Convey("Test 2 goroutine acquire the same id", func() {
acquired := make(chan struct{}) // 用于通知锁已被获取
proceed := make(chan struct{}) // 用于通知释放锁
id := rand.Int64()
wg.Add(2)
var getLock bool
// 第一个 goroutine:获取锁并阻塞直到收到释放信号
go func() {
defer wg.Done()
_ = l.LockOrder(id)
close(acquired) // 通知锁已获取
<-proceed // 等待释放信号
_ = l.UnlockOrder(id)
}()
// 第二个 goroutine:等待锁被获取后尝试获取锁
go func() {
defer wg.Done()
<-acquired // 确保第一个已持有锁
// 尝试非阻塞获取锁,预期失败
lc := l.(*Locker) //nolint
if lc.rs.NewMutex(getKey(id)).TryLock() == nil {
// 如果真的拿到锁了 (预期中不应该走到这)
getLock = true
}
close(proceed) // 允许第一个 goroutine 释放锁
}()
// 等待两个 goroutine 就绪
wg.Wait()
So(getLock, ShouldBeFalse)
})
Convey("Test several threads use different goroutines", func() {
id := rand.Int64()
times := 5
wg.Add(times)
getLock := atomic.Int32{}
fn := func(id int64, index int64) {
defer wg.Done()
_ = l.LockOrder(id + index)
getLock.Add(1)
_ = l.UnlockOrder(id + index)
}
for i := 0; i < times; i++ {
go fn(id, int64(i))
}
wg.Wait()
So(getLock.Load(), ShouldEqual, times)
})
})
})
}