-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadvanced.go
370 lines (316 loc) · 7.14 KB
/
advanced.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
package main
import (
"fmt"
"math/rand"
"sync"
"time"
)
func advancedTest() {
testWhenStabAndQuit(4)
testWhenStabAndQuit(2)
testRandom(2)
}
func testForceQuit(rate time.Duration) {
blue.Println("Start FQ test")
var info error
defer func() {
if r := recover(); r != nil {
red.Println("Accidently end: ", r)
}
totalCnt += info.all
totalFail += info.cnt
if totalCnt == 0 {
totalCnt++
totalFail++
}
}()
nodeGroup = new([maxNode]dhtNode)
datalocal = make(map[string]string)
maxNodeSize = 110
maxDataSize = 1200
localIP = getIP()
for i := 0; i < maxNodeSize; i++ {
// fmt.Println("run ", i)
curport := config.Port + i
nodeGroup[i] = NewNode(curport)
go nodeGroup[i].Run()
}
nodeGroup[0].Create()
time.Sleep(time.Millisecond * 200)
for j := 1; j < maxNodeSize; j++ {
curport := config.Port
addr := toAddr(localIP, curport)
nodeGroup[j].Join(addr)
time.Sleep(time.Millisecond * 500)
}
time.Sleep(time.Second * rate * 10)
for j := 0; j < maxDataSize; j++ {
k := randString(50)
v := randString(50)
datalocal[k] = v
nodeGroup[rand.Intn(int(maxNodeSize))].Put(k, v)
time.Sleep(time.Millisecond * 5)
}
print(len(datalocal))
failcnt := 0
cnt := 0
round := 20
pos := 1
for i := 0; i < 5; i++ {
fmt.Println("Force some node to quit")
for j := pos; j-pos < round; j++ {
// fmt.Println("quit", j)
nodeGroup[j].ForceQuit()
time.Sleep(time.Millisecond * 200)
}
time.Sleep(time.Second * rate * 2)
pos += round
for tk, tv := range datalocal {
id := rand.Intn(maxNodeSize-pos) + pos
ok, res := nodeGroup[id].Get(tk)
if !ok || res != tv {
failcnt++
}
cnt++
}
}
info.initInfo("get while force quit less than 50% is fine", failcnt/50, cnt)
info.finish()
}
func testWhenStabAndQuit(rate time.Duration) {
blue.Println("Start test StabAndQuit")
info := make([]error, 4)
defer func() {
if r := recover(); r != nil {
red.Println("Accidently end: ", r)
}
for _, inf := range info {
totalCnt += inf.all
totalFail += inf.cnt
}
if totalCnt == 0 {
totalCnt++
totalFail++
}
}()
nodeGroup = new([maxNode]dhtNode)
keyArray = new([maxData]string)
datalocal = make(map[string]string)
maxNodeSize = 100
maxDataSize = 1200
localIP = getIP()
for i := 0; i < maxNodeSize; i++ {
curport := config.Port + i
nodeGroup[i] = NewNode(curport)
go nodeGroup[i].Run()
}
time.Sleep(time.Millisecond * rate * 100)
nodeGroup[0].Create()
failcnt := 0
cnt := 0
for i := 1; i < maxNodeSize; i++ {
curport := config.Port
addr := toAddr(localIP, curport)
cnt++
if !nodeGroup[i].Join(addr) {
failcnt++
}
time.Sleep(time.Millisecond * 100 * rate)
}
info[0].initInfo("join", failcnt, cnt)
info[0].finish()
time.Sleep(time.Second * rate * 10)
// fmt.Println("Force some node to quit")
// for i := 150; i < maxNodeSize; i++ {
// nodeGroup[i].ForceQuit()
// time.Sleep(time.Millisecond * 200)
// }
// fmt.Println("Finish")
failcnt = 0
cnt = 0
for i := 0; i < maxDataSize; i++ {
k := randString(50)
v := randString(50)
keyArray[i] = k
datalocal[k] = v
cnt++
if !nodeGroup[rand.Intn(maxNodeSize)].Put(k, v) {
failcnt++
}
time.Sleep(time.Millisecond * rate)
}
info[1].initInfo("put", failcnt, cnt)
info[1].finish()
failcnt = 0
cnt = 0
for k, v := range datalocal {
ok, ret := nodeGroup[rand.Intn(maxNodeSize)].Get(k)
if !ok || ret != v {
failcnt++
}
cnt++
time.Sleep(time.Millisecond * rate)
}
info[2].initInfo("get", failcnt, cnt)
info[2].finish()
failcnt = 0
cnt = 0
for i := 0; i < maxNodeSize; i++ {
for j := 1; j <= 10; j++ {
rk := keyArray[rand.Intn(maxDataSize)]
ok, ret := nodeGroup[i].Get(rk)
cnt++
if !ok || ret != datalocal[rk] {
failcnt++
}
time.Sleep(time.Millisecond * rate * 10)
}
nodeGroup[i].Quit()
time.Sleep(time.Millisecond * 100 * rate)
}
info[3].initInfo("get while quit", failcnt, cnt)
info[3].finish()
for i := 0; i < maxNodeSize; i++ {
nodeGroup[i].Quit()
}
}
func testRandom(rate time.Duration) {
blue.Println("Start random test")
info := make([]error, 4)
defer func() {
if r := recover(); r != nil {
red.Println("Accidently end: ", r)
}
for _, inf := range info {
totalCnt += inf.all
totalFail += inf.cnt
}
if totalCnt == 0 {
totalCnt++
totalFail++
}
}()
nodeGroup = new([maxNode]dhtNode)
keyArray = new([maxData]string)
datalocal = make(map[string]string)
datamux := sync.Mutex{}
maxNodeSize = 120
localIP = getIP()
for i := 0; i < maxNodeSize; i++ {
// fmt.Println("run ", i)
curport := config.Port + i
nodeGroup[i] = NewNode(curport)
go nodeGroup[i].Run()
}
time.Sleep(time.Millisecond * rate * 100)
nodeGroup[0].Create()
failcnt1 := 0
cnt1 := 0
running := true
nodecnt := 1
go func() {
// fmt.Println("start join ")
for running && nodecnt < maxNodeSize {
curport := config.Port
addr := toAddr(localIP, curport)
cnt1++
if !nodeGroup[nodecnt].Join(addr) {
failcnt1++
}
time.Sleep(time.Millisecond * 200 * rate)
nodecnt++
}
}()
//time.Sleep(time.Second * rate * 10)
// fmt.Println("Force some node to quit")
// for i := 150; i < maxNodeSize; i++ {
// nodeGroup[i].ForceQuit()
// time.Sleep(time.Millisecond * 200)
// }
// fmt.Println("Finish")
failcnt2 := 0
quitcnt := 1
cnt2 := 0
datacnt := 0
time.Sleep(5 * time.Second)
go func() {
//fmt.Println("start put")
for running && datacnt < maxDataSize {
k := randString(50)
v := randString(50)
keyArray[datacnt] = k
datamux.Lock()
datalocal[k] = v
datamux.Unlock()
cnt2++
if running && !nodeGroup[quitcnt+rand.Intn(nodecnt-quitcnt)].Put(k, v) {
failcnt2++
}
datacnt++
time.Sleep(time.Millisecond * 2 * rate)
}
}()
failcnt3 := 0
cnt3 := 0
go func() {
// fmt.Println("start get")
for running {
datamux.Lock()
for k, v := range datalocal {
if !running {
break
}
tmp := quitcnt + rand.Intn(nodecnt-quitcnt)
ok, ret := nodeGroup[tmp].Get(k)
if !ok || ret != v {
//fmt.Println("get fail:", k, " => ", v, " from ", tmp)
failcnt3++
}
cnt3++
time.Sleep(time.Millisecond * rate)
}
datamux.Unlock()
time.Sleep(1 * time.Second)
}
}()
failcnt4 := 0
cnt4 := 0
time.Sleep(5 * time.Second)
done := make(chan bool)
go func() {
// fmt.Println("start quit")
for running {
if quitcnt < nodecnt-1 {
for j := 1; j <= 10; j++ {
rk := keyArray[rand.Intn(datacnt)]
tmp := quitcnt + rand.Intn(nodecnt-quitcnt)
ok, ret := nodeGroup[tmp].Get(rk)
cnt4++
if !ok || ret != datalocal[rk] {
//fmt.Println("get fail:", rk, " => ", datalocal[rk], " from ", tmp)
failcnt4++
}
time.Sleep(time.Millisecond * rate * 100)
}
nodeGroup[quitcnt].Quit()
quitcnt++
} else if nodecnt == maxNodeSize {
done <- true
}
time.Sleep(time.Second * rate)
}
}()
<-done
running = false
time.Sleep(5 * time.Second)
nodeGroup[0].Quit()
nodeGroup[maxNodeSize-1].Quit()
info[0].initInfo("join", failcnt1, cnt1)
info[0].finish()
info[1].initInfo("put", failcnt2, cnt2)
info[1].finish()
info[2].initInfo("get", failcnt3, cnt3)
info[2].finish()
info[3].initInfo("get while quit", failcnt4, cnt4)
info[3].finish()
}