diff options
author | Mission Liao <mission.liao@dexon.org> | 2018-09-10 16:11:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-10 16:11:10 +0800 |
commit | 2439f49063d8498eadf26d4fa1220c5eac8412a8 (patch) | |
tree | 1142ad5a5e4393315f956324191ddb7e03b804c3 /integration_test/utils.go | |
parent | 2b5c97e53e9734dda971456ff483bf2b34f0f021 (diff) | |
download | tangerine-consensus-2439f49063d8498eadf26d4fa1220c5eac8412a8.tar.gz tangerine-consensus-2439f49063d8498eadf26d4fa1220c5eac8412a8.tar.zst tangerine-consensus-2439f49063d8498eadf26d4fa1220c5eac8412a8.zip |
test: add transport layer (#97)
The purpose of transport layer is to abstract the way to send messages and setup connections between peers in a p2p network. The peer discovery is simulated by a hosted server: every peer sends its address to a known server. Once collecting enough peers, respond the whole peers lists to all peers.
Changes:
- Add test.Trasnport interface
- Add test.Transport implementation by golang channel.
- Add test.transport implementation by TCP connection.
- Move LatencyModel to core/test package
- Add Marshaller interface
Diffstat (limited to 'integration_test/utils.go')
-rw-r--r-- | integration_test/utils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_test/utils.go b/integration_test/utils.go index c1eafb7..7371223 100644 --- a/integration_test/utils.go +++ b/integration_test/utils.go @@ -10,7 +10,7 @@ import ( // PrepareValidators setups validators for testing. func PrepareValidators( validatorCount int, - networkLatency, proposingLatency LatencyModel) ( + networkLatency, proposingLatency test.LatencyModel) ( apps map[types.ValidatorID]*test.App, dbs map[types.ValidatorID]blockdb.BlockDatabase, validators map[types.ValidatorID]*Validator, |