github.com/jimmyx0x/go-ethereum@v1.10.28/les/vflux/server/clientpool_test.go (about) 1 // Copyright 2021 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package server 18 19 import ( 20 "fmt" 21 "math/rand" 22 "testing" 23 "time" 24 25 "github.com/ethereum/go-ethereum/common/mclock" 26 "github.com/ethereum/go-ethereum/core/rawdb" 27 "github.com/ethereum/go-ethereum/p2p/enode" 28 "github.com/ethereum/go-ethereum/p2p/enr" 29 "github.com/ethereum/go-ethereum/p2p/nodestate" 30 ) 31 32 const defaultConnectedBias = time.Minute * 3 33 34 func TestClientPoolL10C100Free(t *testing.T) { 35 testClientPool(t, 10, 100, 0, true) 36 } 37 38 func TestClientPoolL40C200Free(t *testing.T) { 39 testClientPool(t, 40, 200, 0, true) 40 } 41 42 func TestClientPoolL100C300Free(t *testing.T) { 43 testClientPool(t, 100, 300, 0, true) 44 } 45 46 func TestClientPoolL10C100P4(t *testing.T) { 47 testClientPool(t, 10, 100, 4, false) 48 } 49 50 func TestClientPoolL40C200P30(t *testing.T) { 51 testClientPool(t, 40, 200, 30, false) 52 } 53 54 func TestClientPoolL100C300P20(t *testing.T) { 55 testClientPool(t, 100, 300, 20, false) 56 } 57 58 const testClientPoolTicks = 100000 59 60 type poolTestPeer struct { 61 node *enode.Node 62 index int 63 disconnCh chan int 64 cap uint64 65 inactiveAllowed bool 66 } 67 68 func newPoolTestPeer(i int, disconnCh chan int) *poolTestPeer { 69 return &poolTestPeer{ 70 index: i, 71 disconnCh: disconnCh, 72 node: enode.SignNull(&enr.Record{}, enode.ID{byte(i % 256), byte(i >> 8)}), 73 } 74 } 75 76 func (i *poolTestPeer) Node() *enode.Node { 77 return i.node 78 } 79 80 func (i *poolTestPeer) FreeClientId() string { 81 return fmt.Sprintf("addr #%d", i.index) 82 } 83 84 func (i *poolTestPeer) InactiveAllowance() time.Duration { 85 if i.inactiveAllowed { 86 return time.Second * 10 87 } 88 return 0 89 } 90 91 func (i *poolTestPeer) UpdateCapacity(capacity uint64, requested bool) { 92 i.cap = capacity 93 } 94 95 func (i *poolTestPeer) Disconnect() { 96 if i.disconnCh == nil { 97 return 98 } 99 id := i.node.ID() 100 i.disconnCh <- int(id[0]) + int(id[1])<<8 101 } 102 103 func getBalance(pool *ClientPool, p *poolTestPeer) (pos, neg uint64) { 104 pool.BalanceOperation(p.node.ID(), p.FreeClientId(), func(nb AtomicBalanceOperator) { 105 pos, neg = nb.GetBalance() 106 }) 107 return 108 } 109 110 func addBalance(pool *ClientPool, id enode.ID, amount int64) { 111 pool.BalanceOperation(id, "", func(nb AtomicBalanceOperator) { 112 nb.AddBalance(amount) 113 }) 114 } 115 116 func checkDiff(a, b uint64) bool { 117 maxDiff := (a + b) / 2000 118 if maxDiff < 1 { 119 maxDiff = 1 120 } 121 return a > b+maxDiff || b > a+maxDiff 122 } 123 124 func connect(pool *ClientPool, peer *poolTestPeer) uint64 { 125 pool.Register(peer) 126 return peer.cap 127 } 128 129 func disconnect(pool *ClientPool, peer *poolTestPeer) { 130 pool.Unregister(peer) 131 } 132 133 func alwaysTrueFn() bool { 134 return true 135 } 136 137 func testClientPool(t *testing.T, activeLimit, clientCount, paidCount int, randomDisconnect bool) { 138 rand.Seed(time.Now().UnixNano()) 139 var ( 140 clock mclock.Simulated 141 db = rawdb.NewMemoryDatabase() 142 connected = make([]bool, clientCount) 143 connTicks = make([]int, clientCount) 144 disconnCh = make(chan int, clientCount) 145 pool = NewClientPool(db, 1, 0, &clock, alwaysTrueFn) 146 ) 147 pool.Start() 148 pool.SetExpirationTCs(0, 1000) 149 150 pool.SetLimits(uint64(activeLimit), uint64(activeLimit)) 151 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 152 153 // pool should accept new peers up to its connected limit 154 for i := 0; i < activeLimit; i++ { 155 if cap := connect(pool, newPoolTestPeer(i, disconnCh)); cap != 0 { 156 connected[i] = true 157 } else { 158 t.Fatalf("Test peer #%d rejected", i) 159 } 160 } 161 // randomly connect and disconnect peers, expect to have a similar total connection time at the end 162 for tickCounter := 0; tickCounter < testClientPoolTicks; tickCounter++ { 163 clock.Run(1 * time.Second) 164 165 if tickCounter == testClientPoolTicks/4 { 166 // give a positive balance to some of the peers 167 amount := testClientPoolTicks / 2 * int64(time.Second) // enough for half of the simulation period 168 for i := 0; i < paidCount; i++ { 169 addBalance(pool, newPoolTestPeer(i, disconnCh).node.ID(), amount) 170 } 171 } 172 173 i := rand.Intn(clientCount) 174 if connected[i] { 175 if randomDisconnect { 176 disconnect(pool, newPoolTestPeer(i, disconnCh)) 177 connected[i] = false 178 connTicks[i] += tickCounter 179 } 180 } else { 181 if cap := connect(pool, newPoolTestPeer(i, disconnCh)); cap != 0 { 182 connected[i] = true 183 connTicks[i] -= tickCounter 184 } else { 185 disconnect(pool, newPoolTestPeer(i, disconnCh)) 186 } 187 } 188 pollDisconnects: 189 for { 190 select { 191 case i := <-disconnCh: 192 disconnect(pool, newPoolTestPeer(i, disconnCh)) 193 if connected[i] { 194 connTicks[i] += tickCounter 195 connected[i] = false 196 } 197 default: 198 break pollDisconnects 199 } 200 } 201 } 202 203 expTicks := testClientPoolTicks/2*activeLimit/clientCount + testClientPoolTicks/2*(activeLimit-paidCount)/(clientCount-paidCount) 204 expMin := expTicks - expTicks/5 205 expMax := expTicks + expTicks/5 206 paidTicks := testClientPoolTicks/2*activeLimit/clientCount + testClientPoolTicks/2 207 paidMin := paidTicks - paidTicks/5 208 paidMax := paidTicks + paidTicks/5 209 210 // check if the total connected time of peers are all in the expected range 211 for i, c := range connected { 212 if c { 213 connTicks[i] += testClientPoolTicks 214 } 215 min, max := expMin, expMax 216 if i < paidCount { 217 // expect a higher amount for clients with a positive balance 218 min, max = paidMin, paidMax 219 } 220 if connTicks[i] < min || connTicks[i] > max { 221 t.Errorf("Total connected time of test node #%d (%d) outside expected range (%d to %d)", i, connTicks[i], min, max) 222 } 223 } 224 pool.Stop() 225 } 226 227 func testPriorityConnect(t *testing.T, pool *ClientPool, p *poolTestPeer, cap uint64, expSuccess bool) { 228 if cap := connect(pool, p); cap == 0 { 229 if expSuccess { 230 t.Fatalf("Failed to connect paid client") 231 } else { 232 return 233 } 234 } 235 if newCap, _ := pool.SetCapacity(p.node, cap, defaultConnectedBias, true); newCap != cap { 236 if expSuccess { 237 t.Fatalf("Failed to raise capacity of paid client") 238 } else { 239 return 240 } 241 } 242 if !expSuccess { 243 t.Fatalf("Should reject high capacity paid client") 244 } 245 } 246 247 func TestConnectPaidClient(t *testing.T) { 248 var ( 249 clock mclock.Simulated 250 db = rawdb.NewMemoryDatabase() 251 ) 252 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 253 pool.Start() 254 defer pool.Stop() 255 pool.SetLimits(10, uint64(10)) 256 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 257 258 // Add balance for an external client and mark it as paid client 259 addBalance(pool, newPoolTestPeer(0, nil).node.ID(), int64(time.Minute)) 260 testPriorityConnect(t, pool, newPoolTestPeer(0, nil), 10, true) 261 } 262 263 func TestConnectPaidClientToSmallPool(t *testing.T) { 264 var ( 265 clock mclock.Simulated 266 db = rawdb.NewMemoryDatabase() 267 ) 268 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 269 pool.Start() 270 defer pool.Stop() 271 pool.SetLimits(10, uint64(10)) // Total capacity limit is 10 272 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 273 274 // Add balance for an external client and mark it as paid client 275 addBalance(pool, newPoolTestPeer(0, nil).node.ID(), int64(time.Minute)) 276 277 // connect a fat paid client to pool, should reject it. 278 testPriorityConnect(t, pool, newPoolTestPeer(0, nil), 100, false) 279 } 280 281 func TestConnectPaidClientToFullPool(t *testing.T) { 282 var ( 283 clock mclock.Simulated 284 db = rawdb.NewMemoryDatabase() 285 ) 286 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 287 pool.Start() 288 defer pool.Stop() 289 pool.SetLimits(10, uint64(10)) // Total capacity limit is 10 290 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 291 292 for i := 0; i < 10; i++ { 293 addBalance(pool, newPoolTestPeer(i, nil).node.ID(), int64(time.Second*20)) 294 connect(pool, newPoolTestPeer(i, nil)) 295 } 296 addBalance(pool, newPoolTestPeer(11, nil).node.ID(), int64(time.Second*2)) // Add low balance to new paid client 297 if cap := connect(pool, newPoolTestPeer(11, nil)); cap != 0 { 298 t.Fatalf("Low balance paid client should be rejected") 299 } 300 clock.Run(time.Second) 301 addBalance(pool, newPoolTestPeer(12, nil).node.ID(), int64(time.Minute*5)) // Add high balance to new paid client 302 if cap := connect(pool, newPoolTestPeer(12, nil)); cap == 0 { 303 t.Fatalf("High balance paid client should be accepted") 304 } 305 } 306 307 func TestPaidClientKickedOut(t *testing.T) { 308 var ( 309 clock mclock.Simulated 310 db = rawdb.NewMemoryDatabase() 311 kickedCh = make(chan int, 100) 312 ) 313 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 314 pool.Start() 315 pool.SetExpirationTCs(0, 0) 316 defer pool.Stop() 317 pool.SetLimits(10, uint64(10)) // Total capacity limit is 10 318 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 319 320 for i := 0; i < 10; i++ { 321 addBalance(pool, newPoolTestPeer(i, kickedCh).node.ID(), 10000000000) // 10 second allowance 322 connect(pool, newPoolTestPeer(i, kickedCh)) 323 clock.Run(time.Millisecond) 324 } 325 clock.Run(defaultConnectedBias + time.Second*11) 326 if cap := connect(pool, newPoolTestPeer(11, kickedCh)); cap == 0 { 327 t.Fatalf("Free client should be accepted") 328 } 329 clock.Run(0) 330 select { 331 case id := <-kickedCh: 332 if id != 0 { 333 t.Fatalf("Kicked client mismatch, want %v, got %v", 0, id) 334 } 335 default: 336 t.Fatalf("timeout") 337 } 338 } 339 340 func TestConnectFreeClient(t *testing.T) { 341 var ( 342 clock mclock.Simulated 343 db = rawdb.NewMemoryDatabase() 344 ) 345 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 346 pool.Start() 347 defer pool.Stop() 348 pool.SetLimits(10, uint64(10)) 349 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 350 if cap := connect(pool, newPoolTestPeer(0, nil)); cap == 0 { 351 t.Fatalf("Failed to connect free client") 352 } 353 testPriorityConnect(t, pool, newPoolTestPeer(0, nil), 2, false) 354 } 355 356 func TestConnectFreeClientToFullPool(t *testing.T) { 357 var ( 358 clock mclock.Simulated 359 db = rawdb.NewMemoryDatabase() 360 ) 361 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 362 pool.Start() 363 defer pool.Stop() 364 pool.SetLimits(10, uint64(10)) // Total capacity limit is 10 365 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 366 367 for i := 0; i < 10; i++ { 368 connect(pool, newPoolTestPeer(i, nil)) 369 } 370 if cap := connect(pool, newPoolTestPeer(11, nil)); cap != 0 { 371 t.Fatalf("New free client should be rejected") 372 } 373 clock.Run(time.Minute) 374 if cap := connect(pool, newPoolTestPeer(12, nil)); cap != 0 { 375 t.Fatalf("New free client should be rejected") 376 } 377 clock.Run(time.Millisecond) 378 clock.Run(4 * time.Minute) 379 if cap := connect(pool, newPoolTestPeer(13, nil)); cap == 0 { 380 t.Fatalf("Old client connects more than 5min should be kicked") 381 } 382 } 383 384 func TestFreeClientKickedOut(t *testing.T) { 385 var ( 386 clock mclock.Simulated 387 db = rawdb.NewMemoryDatabase() 388 kicked = make(chan int, 100) 389 ) 390 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 391 pool.Start() 392 defer pool.Stop() 393 pool.SetLimits(10, uint64(10)) // Total capacity limit is 10 394 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 395 396 for i := 0; i < 10; i++ { 397 connect(pool, newPoolTestPeer(i, kicked)) 398 clock.Run(time.Millisecond) 399 } 400 if cap := connect(pool, newPoolTestPeer(10, kicked)); cap != 0 { 401 t.Fatalf("New free client should be rejected") 402 } 403 clock.Run(0) 404 select { 405 case <-kicked: 406 default: 407 t.Fatalf("timeout") 408 } 409 disconnect(pool, newPoolTestPeer(10, kicked)) 410 clock.Run(5 * time.Minute) 411 for i := 0; i < 10; i++ { 412 connect(pool, newPoolTestPeer(i+10, kicked)) 413 } 414 clock.Run(0) 415 416 for i := 0; i < 10; i++ { 417 select { 418 case id := <-kicked: 419 if id >= 10 { 420 t.Fatalf("Old client should be kicked, now got: %d", id) 421 } 422 default: 423 t.Fatalf("timeout") 424 } 425 } 426 } 427 428 func TestPositiveBalanceCalculation(t *testing.T) { 429 var ( 430 clock mclock.Simulated 431 db = rawdb.NewMemoryDatabase() 432 kicked = make(chan int, 10) 433 ) 434 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 435 pool.Start() 436 defer pool.Stop() 437 pool.SetLimits(10, uint64(10)) // Total capacity limit is 10 438 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 439 440 addBalance(pool, newPoolTestPeer(0, kicked).node.ID(), int64(time.Minute*3)) 441 testPriorityConnect(t, pool, newPoolTestPeer(0, kicked), 10, true) 442 clock.Run(time.Minute) 443 444 disconnect(pool, newPoolTestPeer(0, kicked)) 445 pb, _ := getBalance(pool, newPoolTestPeer(0, kicked)) 446 if checkDiff(pb, uint64(time.Minute*2)) { 447 t.Fatalf("Positive balance mismatch, want %v, got %v", uint64(time.Minute*2), pb) 448 } 449 } 450 451 func TestDowngradePriorityClient(t *testing.T) { 452 var ( 453 clock mclock.Simulated 454 db = rawdb.NewMemoryDatabase() 455 kicked = make(chan int, 10) 456 ) 457 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 458 pool.Start() 459 defer pool.Stop() 460 pool.SetLimits(10, uint64(10)) // Total capacity limit is 10 461 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 1}) 462 463 p := newPoolTestPeer(0, kicked) 464 addBalance(pool, p.node.ID(), int64(time.Minute)) 465 testPriorityConnect(t, pool, p, 10, true) 466 if p.cap != 10 { 467 t.Fatalf("The capacity of priority peer hasn't been updated, got: %d", p.cap) 468 } 469 470 clock.Run(time.Minute) // All positive balance should be used up. 471 time.Sleep(300 * time.Millisecond) // Ensure the callback is called 472 if p.cap != 1 { 473 t.Fatalf("The capcacity of peer should be downgraded, got: %d", p.cap) 474 } 475 pb, _ := getBalance(pool, newPoolTestPeer(0, kicked)) 476 if pb != 0 { 477 t.Fatalf("Positive balance mismatch, want %v, got %v", 0, pb) 478 } 479 480 addBalance(pool, newPoolTestPeer(0, kicked).node.ID(), int64(time.Minute)) 481 pb, _ = getBalance(pool, newPoolTestPeer(0, kicked)) 482 if checkDiff(pb, uint64(time.Minute)) { 483 t.Fatalf("Positive balance mismatch, want %v, got %v", uint64(time.Minute), pb) 484 } 485 } 486 487 func TestNegativeBalanceCalculation(t *testing.T) { 488 var ( 489 clock mclock.Simulated 490 db = rawdb.NewMemoryDatabase() 491 ) 492 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 493 pool.Start() 494 defer pool.Stop() 495 pool.SetExpirationTCs(0, 3600) 496 pool.SetLimits(10, uint64(10)) // Total capacity limit is 10 497 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1e-3, CapacityFactor: 0, RequestFactor: 1}, PriceFactors{TimeFactor: 1e-3, CapacityFactor: 0, RequestFactor: 1}) 498 499 for i := 0; i < 10; i++ { 500 connect(pool, newPoolTestPeer(i, nil)) 501 } 502 clock.Run(time.Second) 503 504 for i := 0; i < 10; i++ { 505 disconnect(pool, newPoolTestPeer(i, nil)) 506 _, nb := getBalance(pool, newPoolTestPeer(i, nil)) 507 if nb != 0 { 508 t.Fatalf("Short connection shouldn't be recorded") 509 } 510 } 511 for i := 0; i < 10; i++ { 512 connect(pool, newPoolTestPeer(i, nil)) 513 } 514 clock.Run(time.Minute) 515 for i := 0; i < 10; i++ { 516 disconnect(pool, newPoolTestPeer(i, nil)) 517 _, nb := getBalance(pool, newPoolTestPeer(i, nil)) 518 exp := uint64(time.Minute) / 1000 519 exp -= exp / 120 // correct for negative balance expiration 520 if checkDiff(nb, exp) { 521 t.Fatalf("Negative balance mismatch, want %v, got %v", exp, nb) 522 } 523 } 524 } 525 526 func TestInactiveClient(t *testing.T) { 527 var ( 528 clock mclock.Simulated 529 db = rawdb.NewMemoryDatabase() 530 ) 531 pool := NewClientPool(db, 1, defaultConnectedBias, &clock, alwaysTrueFn) 532 pool.Start() 533 defer pool.Stop() 534 pool.SetLimits(2, uint64(2)) 535 536 p1 := newPoolTestPeer(1, nil) 537 p1.inactiveAllowed = true 538 p2 := newPoolTestPeer(2, nil) 539 p2.inactiveAllowed = true 540 p3 := newPoolTestPeer(3, nil) 541 p3.inactiveAllowed = true 542 addBalance(pool, p1.node.ID(), 1000*int64(time.Second)) 543 addBalance(pool, p3.node.ID(), 2000*int64(time.Second)) 544 // p1: 1000 p2: 0 p3: 2000 545 p1.cap = connect(pool, p1) 546 if p1.cap != 1 { 547 t.Fatalf("Failed to connect peer #1") 548 } 549 p2.cap = connect(pool, p2) 550 if p2.cap != 1 { 551 t.Fatalf("Failed to connect peer #2") 552 } 553 p3.cap = connect(pool, p3) 554 if p3.cap != 1 { 555 t.Fatalf("Failed to connect peer #3") 556 } 557 if p2.cap != 0 { 558 t.Fatalf("Failed to deactivate peer #2") 559 } 560 addBalance(pool, p2.node.ID(), 3000*int64(time.Second)) 561 // p1: 1000 p2: 3000 p3: 2000 562 if p2.cap != 1 { 563 t.Fatalf("Failed to activate peer #2") 564 } 565 if p1.cap != 0 { 566 t.Fatalf("Failed to deactivate peer #1") 567 } 568 addBalance(pool, p2.node.ID(), -2500*int64(time.Second)) 569 // p1: 1000 p2: 500 p3: 2000 570 if p1.cap != 1 { 571 t.Fatalf("Failed to activate peer #1") 572 } 573 if p2.cap != 0 { 574 t.Fatalf("Failed to deactivate peer #2") 575 } 576 pool.SetDefaultFactors(PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 0}, PriceFactors{TimeFactor: 1, CapacityFactor: 0, RequestFactor: 0}) 577 p4 := newPoolTestPeer(4, nil) 578 addBalance(pool, p4.node.ID(), 1500*int64(time.Second)) 579 // p1: 1000 p2: 500 p3: 2000 p4: 1500 580 p4.cap = connect(pool, p4) 581 if p4.cap != 1 { 582 t.Fatalf("Failed to activate peer #4") 583 } 584 if p1.cap != 0 { 585 t.Fatalf("Failed to deactivate peer #1") 586 } 587 clock.Run(time.Second * 600) 588 // manually trigger a check to avoid a long real-time wait 589 pool.ns.SetState(p1.node, pool.setup.updateFlag, nodestate.Flags{}, 0) 590 pool.ns.SetState(p1.node, nodestate.Flags{}, pool.setup.updateFlag, 0) 591 // p1: 1000 p2: 500 p3: 2000 p4: 900 592 if p1.cap != 1 { 593 t.Fatalf("Failed to activate peer #1") 594 } 595 if p4.cap != 0 { 596 t.Fatalf("Failed to deactivate peer #4") 597 } 598 disconnect(pool, p2) 599 disconnect(pool, p4) 600 addBalance(pool, p1.node.ID(), -1000*int64(time.Second)) 601 if p1.cap != 1 { 602 t.Fatalf("Should not deactivate peer #1") 603 } 604 if p2.cap != 0 { 605 t.Fatalf("Should not activate peer #2") 606 } 607 }