2019-09-25 16:54:31 +00:00
|
|
|
package network
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2021-02-01 10:50:08 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/internal/fakechain"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/block"
|
2019-09-25 16:54:31 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2019-12-30 07:43:05 +00:00
|
|
|
"go.uber.org/zap/zaptest"
|
2019-09-25 16:54:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestBlockQueue(t *testing.T) {
|
2021-02-01 10:50:08 +00:00
|
|
|
chain := fakechain.NewFakeChain()
|
2019-09-25 16:54:31 +00:00
|
|
|
// notice, it's not yet running
|
2020-02-04 16:32:29 +00:00
|
|
|
bq := newBlockQueue(0, chain, zaptest.NewLogger(t), nil)
|
2020-01-14 12:32:07 +00:00
|
|
|
blocks := make([]*block.Block, 11)
|
2019-09-25 16:54:31 +00:00
|
|
|
for i := 1; i < 11; i++ {
|
2021-03-01 13:44:47 +00:00
|
|
|
blocks[i] = &block.Block{Header: block.Header{Index: uint32(i)}}
|
2019-09-25 16:54:31 +00:00
|
|
|
}
|
|
|
|
// not the ones expected currently
|
|
|
|
for i := 3; i < 5; i++ {
|
|
|
|
assert.NoError(t, bq.putBlock(blocks[i]))
|
|
|
|
}
|
2022-01-17 21:04:41 +00:00
|
|
|
assert.Equal(t, uint32(0), bq.lastQueued())
|
2019-09-25 16:54:31 +00:00
|
|
|
// nothing should be put into the blockchain
|
|
|
|
assert.Equal(t, uint32(0), chain.BlockHeight())
|
|
|
|
assert.Equal(t, 2, bq.length())
|
2022-04-20 18:30:09 +00:00
|
|
|
// now added the expected ones (with duplicates)
|
2019-09-25 16:54:31 +00:00
|
|
|
for i := 1; i < 5; i++ {
|
|
|
|
assert.NoError(t, bq.putBlock(blocks[i]))
|
|
|
|
}
|
|
|
|
// but they're still not put into the blockchain, because bq isn't running
|
2022-01-17 21:04:41 +00:00
|
|
|
assert.Equal(t, uint32(4), bq.lastQueued())
|
2019-09-25 16:54:31 +00:00
|
|
|
assert.Equal(t, uint32(0), chain.BlockHeight())
|
|
|
|
assert.Equal(t, 4, bq.length())
|
2020-09-02 12:00:53 +00:00
|
|
|
// block with too big index is dropped
|
2021-03-01 13:44:47 +00:00
|
|
|
assert.NoError(t, bq.putBlock(&block.Block{Header: block.Header{Index: bq.chain.BlockHeight() + blockCacheSize + 1}}))
|
2020-09-02 12:00:53 +00:00
|
|
|
assert.Equal(t, 4, bq.length())
|
2019-09-25 16:54:31 +00:00
|
|
|
go bq.run()
|
|
|
|
// run() is asynchronous, so we need some kind of timeout anyway and this is the simplest one
|
2022-01-17 21:04:29 +00:00
|
|
|
assert.Eventually(t, func() bool { return chain.BlockHeight() == 4 }, 4*time.Second, 100*time.Millisecond)
|
2022-01-17 21:04:41 +00:00
|
|
|
assert.Equal(t, uint32(4), bq.lastQueued())
|
2019-09-25 16:54:31 +00:00
|
|
|
assert.Equal(t, 0, bq.length())
|
|
|
|
assert.Equal(t, uint32(4), chain.BlockHeight())
|
|
|
|
// put some old blocks
|
|
|
|
for i := 1; i < 5; i++ {
|
|
|
|
assert.NoError(t, bq.putBlock(blocks[i]))
|
|
|
|
}
|
2022-01-17 21:04:41 +00:00
|
|
|
assert.Equal(t, uint32(4), bq.lastQueued())
|
2019-09-25 16:54:31 +00:00
|
|
|
assert.Equal(t, 0, bq.length())
|
|
|
|
assert.Equal(t, uint32(4), chain.BlockHeight())
|
|
|
|
// unexpected blocks with run() active
|
|
|
|
assert.NoError(t, bq.putBlock(blocks[8]))
|
|
|
|
assert.Equal(t, 1, bq.length())
|
|
|
|
assert.Equal(t, uint32(4), chain.BlockHeight())
|
|
|
|
assert.NoError(t, bq.putBlock(blocks[7]))
|
|
|
|
assert.Equal(t, 2, bq.length())
|
|
|
|
assert.Equal(t, uint32(4), chain.BlockHeight())
|
|
|
|
// sparse put
|
|
|
|
assert.NoError(t, bq.putBlock(blocks[10]))
|
|
|
|
assert.Equal(t, 3, bq.length())
|
|
|
|
assert.Equal(t, uint32(4), chain.BlockHeight())
|
|
|
|
assert.NoError(t, bq.putBlock(blocks[6]))
|
|
|
|
assert.NoError(t, bq.putBlock(blocks[5]))
|
|
|
|
// run() is asynchronous, so we need some kind of timeout anyway and this is the simplest one
|
2022-01-17 21:04:29 +00:00
|
|
|
assert.Eventually(t, func() bool { return chain.BlockHeight() == 8 }, 4*time.Second, 100*time.Millisecond)
|
2022-01-17 21:04:41 +00:00
|
|
|
assert.Equal(t, uint32(8), bq.lastQueued())
|
2019-09-25 16:54:31 +00:00
|
|
|
assert.Equal(t, 1, bq.length())
|
|
|
|
assert.Equal(t, uint32(8), chain.BlockHeight())
|
|
|
|
bq.discard()
|
|
|
|
assert.Equal(t, 0, bq.length())
|
|
|
|
}
|
2021-10-31 09:23:07 +00:00
|
|
|
|
|
|
|
// length wraps len access for tests to make them thread-safe.
|
|
|
|
func (bq *blockQueue) length() int {
|
|
|
|
bq.queueLock.Lock()
|
|
|
|
defer bq.queueLock.Unlock()
|
|
|
|
return bq.len
|
|
|
|
}
|