You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

236 lines
7.4 KiB

new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
new pubsub package comment out failing consensus tests for now rewrite rpc httpclient to use new pubsub package import pubsub as tmpubsub, query as tmquery make event IDs constants EventKey -> EventTypeKey rename EventsPubsub to PubSub mempool does not use pubsub rename eventsSub to pubsub new subscribe API fix channel size issues and consensus tests bugs refactor rpc client add missing discardFromChan method add mutex rename pubsub to eventBus remove IsRunning from WSRPCConnection interface (not needed) add a comment in broadcastNewRoundStepsAndVotes rename registerEventCallbacks to broadcastNewRoundStepsAndVotes See https://dave.cheney.net/2014/03/19/channel-axioms stop eventBuses after reactor tests remove unnecessary Unsubscribe return subscribe helper function move discardFromChan to where it is used subscribe now returns an err this gives us ability to refuse to subscribe if pubsub is at its max capacity. use context for control overflow cache queries handle err when subscribing in replay_test rename testClientID to testSubscriber extract var set channel buffer capacity to 1 in replay_file fix byzantine_test unsubscribe from single event, not all events refactor httpclient to return events to appropriate channels return failing testReplayCrashBeforeWriteVote test fix TestValidatorSetChanges refactor code a bit fix testReplayCrashBeforeWriteVote add comment fix TestValidatorSetChanges fixes from Bucky's review update comment [ci skip] test TxEventBuffer update changelog fix TestValidatorSetChanges (2nd attempt) only do wg.Done when no errors benchmark event bus create pubsub server inside NewEventBus only expose config params (later if needed) set buffer capacity to 0 so we are not testing cache new tx event format: key = "Tx" plus a tag {"tx.hash": XYZ} This should allow to subscribe to all transactions! or a specific one using a query: "tm.events.type = Tx and tx.hash = '013ABF99434...'" use TimeoutCommit instead of afterPublishEventNewBlockTimeout TimeoutCommit is the time a node waits after committing a block, before it goes into the next height. So it will finish everything from the last block, but then wait a bit. The idea is this gives it time to hear more votes from other validators, to strengthen the commit it includes in the next block. But it also gives it time to hear about new transactions. waitForBlockWithUpdatedVals rewrite WAL crash tests Task: test that we can recover from any WAL crash. Solution: the old tests were relying on event hub being run in the same thread (we were injecting the private validator's last signature). when considering a rewrite, we considered two possible solutions: write a "fuzzy" testing system where WAL is crashing upon receiving a new message, or inject failures and trigger them in tests using something like https://github.com/coreos/gofail. remove sleep no cs.Lock around wal.Save test different cases (empty block, non-empty block, ...) comments add comments test 4 cases: empty block, non-empty block, non-empty block with smaller part size, many blocks fixes as per Bucky's last review reset subscriptions on UnsubscribeAll use a simple counter to track message for which we panicked also, set a smaller part size for all test cases
7 years ago
6 years ago
8 years ago
8 years ago
7 years ago
  1. package consensus
  2. import (
  3. "encoding/binary"
  4. "fmt"
  5. "testing"
  6. "time"
  7. "github.com/stretchr/testify/assert"
  8. "github.com/tendermint/tendermint/abci/example/code"
  9. abci "github.com/tendermint/tendermint/abci/types"
  10. "github.com/tendermint/tendermint/types"
  11. )
  12. func init() {
  13. config = ResetConfig("consensus_mempool_test")
  14. }
  15. func TestMempoolNoProgressUntilTxsAvailable(t *testing.T) {
  16. config := ResetConfig("consensus_mempool_txs_available_test")
  17. config.Consensus.CreateEmptyBlocks = false
  18. state, privVals := randGenesisState(1, false, 10)
  19. cs := newConsensusStateWithConfig(config, state, privVals[0], NewCounterApplication())
  20. cs.mempool.EnableTxsAvailable()
  21. height, round := cs.Height, cs.Round
  22. newBlockCh := subscribe(cs.eventBus, types.EventQueryNewBlock)
  23. startTestRound(cs, height, round)
  24. ensureNewEventOnChannel(newBlockCh) // first block gets committed
  25. ensureNoNewEventOnChannel(newBlockCh)
  26. deliverTxsRange(cs, 0, 1)
  27. ensureNewEventOnChannel(newBlockCh) // commit txs
  28. ensureNewEventOnChannel(newBlockCh) // commit updated app hash
  29. ensureNoNewEventOnChannel(newBlockCh)
  30. }
  31. func TestMempoolProgressAfterCreateEmptyBlocksInterval(t *testing.T) {
  32. config := ResetConfig("consensus_mempool_txs_available_test")
  33. config.Consensus.CreateEmptyBlocksInterval = ensureTimeout
  34. state, privVals := randGenesisState(1, false, 10)
  35. cs := newConsensusStateWithConfig(config, state, privVals[0], NewCounterApplication())
  36. cs.mempool.EnableTxsAvailable()
  37. height, round := cs.Height, cs.Round
  38. newBlockCh := subscribe(cs.eventBus, types.EventQueryNewBlock)
  39. startTestRound(cs, height, round)
  40. ensureNewEventOnChannel(newBlockCh) // first block gets committed
  41. ensureNoNewEventOnChannel(newBlockCh) // then we dont make a block ...
  42. ensureNewEventOnChannel(newBlockCh) // until the CreateEmptyBlocksInterval has passed
  43. }
  44. func TestMempoolProgressInHigherRound(t *testing.T) {
  45. config := ResetConfig("consensus_mempool_txs_available_test")
  46. config.Consensus.CreateEmptyBlocks = false
  47. state, privVals := randGenesisState(1, false, 10)
  48. cs := newConsensusStateWithConfig(config, state, privVals[0], NewCounterApplication())
  49. cs.mempool.EnableTxsAvailable()
  50. height, round := cs.Height, cs.Round
  51. newBlockCh := subscribe(cs.eventBus, types.EventQueryNewBlock)
  52. newRoundCh := subscribe(cs.eventBus, types.EventQueryNewRound)
  53. timeoutCh := subscribe(cs.eventBus, types.EventQueryTimeoutPropose)
  54. cs.setProposal = func(proposal *types.Proposal) error {
  55. if cs.Height == 2 && cs.Round == 0 {
  56. // dont set the proposal in round 0 so we timeout and
  57. // go to next round
  58. cs.Logger.Info("Ignoring set proposal at height 2, round 0")
  59. return nil
  60. }
  61. return cs.defaultSetProposal(proposal)
  62. }
  63. startTestRound(cs, height, round)
  64. ensureNewRound(newRoundCh, height, round) // first round at first height
  65. ensureNewEventOnChannel(newBlockCh) // first block gets committed
  66. height = height + 1 // moving to the next height
  67. round = 0
  68. ensureNewRound(newRoundCh, height, round) // first round at next height
  69. deliverTxsRange(cs, 0, 1) // we deliver txs, but dont set a proposal so we get the next round
  70. ensureNewTimeout(timeoutCh, height, round, cs.config.TimeoutPropose.Nanoseconds())
  71. round = round + 1 // moving to the next round
  72. ensureNewRound(newRoundCh, height, round) // wait for the next round
  73. ensureNewEventOnChannel(newBlockCh) // now we can commit the block
  74. }
  75. func deliverTxsRange(cs *ConsensusState, start, end int) {
  76. // Deliver some txs.
  77. for i := start; i < end; i++ {
  78. txBytes := make([]byte, 8)
  79. binary.BigEndian.PutUint64(txBytes, uint64(i))
  80. err := cs.mempool.CheckTx(txBytes, nil)
  81. if err != nil {
  82. panic(fmt.Sprintf("Error after CheckTx: %v", err))
  83. }
  84. }
  85. }
  86. func TestMempoolTxConcurrentWithCommit(t *testing.T) {
  87. state, privVals := randGenesisState(1, false, 10)
  88. cs := newConsensusState(state, privVals[0], NewCounterApplication())
  89. height, round := cs.Height, cs.Round
  90. newBlockCh := subscribe(cs.eventBus, types.EventQueryNewBlock)
  91. NTxs := 3000
  92. go deliverTxsRange(cs, 0, NTxs)
  93. startTestRound(cs, height, round)
  94. for nTxs := 0; nTxs < NTxs; {
  95. ticker := time.NewTicker(time.Second * 30)
  96. select {
  97. case b := <-newBlockCh:
  98. evt := b.(types.EventDataNewBlock)
  99. nTxs += int(evt.Block.Header.NumTxs)
  100. case <-ticker.C:
  101. panic("Timed out waiting to commit blocks with transactions")
  102. }
  103. }
  104. }
  105. func TestMempoolRmBadTx(t *testing.T) {
  106. state, privVals := randGenesisState(1, false, 10)
  107. app := NewCounterApplication()
  108. cs := newConsensusState(state, privVals[0], app)
  109. // increment the counter by 1
  110. txBytes := make([]byte, 8)
  111. binary.BigEndian.PutUint64(txBytes, uint64(0))
  112. resDeliver := app.DeliverTx(txBytes)
  113. assert.False(t, resDeliver.IsErr(), fmt.Sprintf("expected no error. got %v", resDeliver))
  114. resCommit := app.Commit()
  115. assert.True(t, len(resCommit.Data) > 0)
  116. emptyMempoolCh := make(chan struct{})
  117. checkTxRespCh := make(chan struct{})
  118. go func() {
  119. // Try to send the tx through the mempool.
  120. // CheckTx should not err, but the app should return a bad abci code
  121. // and the tx should get removed from the pool
  122. err := cs.mempool.CheckTx(txBytes, func(r *abci.Response) {
  123. if r.GetCheckTx().Code != code.CodeTypeBadNonce {
  124. t.Fatalf("expected checktx to return bad nonce, got %v", r)
  125. }
  126. checkTxRespCh <- struct{}{}
  127. })
  128. if err != nil {
  129. t.Fatalf("Error after CheckTx: %v", err)
  130. }
  131. // check for the tx
  132. for {
  133. txs := cs.mempool.ReapMaxBytesMaxGas(int64(len(txBytes)), -1)
  134. if len(txs) == 0 {
  135. emptyMempoolCh <- struct{}{}
  136. return
  137. }
  138. time.Sleep(10 * time.Millisecond)
  139. }
  140. }()
  141. // Wait until the tx returns
  142. ticker := time.After(time.Second * 5)
  143. select {
  144. case <-checkTxRespCh:
  145. // success
  146. case <-ticker:
  147. t.Fatalf("Timed out waiting for tx to return")
  148. }
  149. // Wait until the tx is removed
  150. ticker = time.After(time.Second * 5)
  151. select {
  152. case <-emptyMempoolCh:
  153. // success
  154. case <-ticker:
  155. t.Fatalf("Timed out waiting for tx to be removed")
  156. }
  157. }
  158. // CounterApplication that maintains a mempool state and resets it upon commit
  159. type CounterApplication struct {
  160. abci.BaseApplication
  161. txCount int
  162. mempoolTxCount int
  163. }
  164. func NewCounterApplication() *CounterApplication {
  165. return &CounterApplication{}
  166. }
  167. func (app *CounterApplication) Info(req abci.RequestInfo) abci.ResponseInfo {
  168. return abci.ResponseInfo{Data: fmt.Sprintf("txs:%v", app.txCount)}
  169. }
  170. func (app *CounterApplication) DeliverTx(tx []byte) abci.ResponseDeliverTx {
  171. txValue := txAsUint64(tx)
  172. if txValue != uint64(app.txCount) {
  173. return abci.ResponseDeliverTx{
  174. Code: code.CodeTypeBadNonce,
  175. Log: fmt.Sprintf("Invalid nonce. Expected %v, got %v", app.txCount, txValue)}
  176. }
  177. app.txCount++
  178. return abci.ResponseDeliverTx{Code: code.CodeTypeOK}
  179. }
  180. func (app *CounterApplication) CheckTx(tx []byte) abci.ResponseCheckTx {
  181. txValue := txAsUint64(tx)
  182. if txValue != uint64(app.mempoolTxCount) {
  183. return abci.ResponseCheckTx{
  184. Code: code.CodeTypeBadNonce,
  185. Log: fmt.Sprintf("Invalid nonce. Expected %v, got %v", app.mempoolTxCount, txValue)}
  186. }
  187. app.mempoolTxCount++
  188. return abci.ResponseCheckTx{Code: code.CodeTypeOK}
  189. }
  190. func txAsUint64(tx []byte) uint64 {
  191. tx8 := make([]byte, 8)
  192. copy(tx8[len(tx8)-len(tx):], tx)
  193. return binary.BigEndian.Uint64(tx8)
  194. }
  195. func (app *CounterApplication) Commit() abci.ResponseCommit {
  196. app.mempoolTxCount = app.txCount
  197. if app.txCount == 0 {
  198. return abci.ResponseCommit{}
  199. }
  200. hash := make([]byte, 8)
  201. binary.BigEndian.PutUint64(hash, uint64(app.txCount))
  202. return abci.ResponseCommit{Data: hash}
  203. }