aboutsummaryrefslogtreecommitdiffstats
path: root/core/test/latency.go
diff options
context:
space:
mode:
authorMission Liao <mission.liao@dexon.org>2018-09-10 16:11:10 +0800
committerGitHub <noreply@github.com>2018-09-10 16:11:10 +0800
commit2439f49063d8498eadf26d4fa1220c5eac8412a8 (patch)
tree1142ad5a5e4393315f956324191ddb7e03b804c3 /core/test/latency.go
parent2b5c97e53e9734dda971456ff483bf2b34f0f021 (diff)
downloaddexon-consensus-2439f49063d8498eadf26d4fa1220c5eac8412a8.tar
dexon-consensus-2439f49063d8498eadf26d4fa1220c5eac8412a8.tar.gz
dexon-consensus-2439f49063d8498eadf26d4fa1220c5eac8412a8.tar.bz2
dexon-consensus-2439f49063d8498eadf26d4fa1220c5eac8412a8.tar.lz
dexon-consensus-2439f49063d8498eadf26d4fa1220c5eac8412a8.tar.xz
dexon-consensus-2439f49063d8498eadf26d4fa1220c5eac8412a8.tar.zst
dexon-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 'core/test/latency.go')
-rw-r--r--core/test/latency.go54
1 files changed, 54 insertions, 0 deletions
diff --git a/core/test/latency.go b/core/test/latency.go
new file mode 100644
index 0000000..0fe9277
--- /dev/null
+++ b/core/test/latency.go
@@ -0,0 +1,54 @@
+// Copyright 2018 The dexon-consensus-core Authors
+// This file is part of the dexon-consensus-core library.
+//
+// The dexon-consensus-core library is free software: you can redistribute it
+// and/or modify it under the terms of the GNU Lesser General Public License as
+// published by the Free Software Foundation, either version 3 of the License,
+// or (at your option) any later version.
+//
+// The dexon-consensus-core library is distributed in the hope that it will be
+// useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
+// General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with the dexon-consensus-core library. If not, see
+// <http://www.gnu.org/licenses/>.
+
+package test
+
+import (
+ "math/rand"
+ "time"
+)
+
+// LatencyModel defines an interface to randomly decide latency
+// for one operation.
+type LatencyModel interface {
+ Delay() time.Duration
+}
+
+// NormalLatencyModel would return latencies in normal distribution.
+type NormalLatencyModel struct {
+ Sigma float64
+ Mean float64
+}
+
+// Delay implements LatencyModel interface.
+func (m *NormalLatencyModel) Delay() time.Duration {
+ delay := rand.NormFloat64()*m.Sigma + m.Mean
+ if delay < 0 {
+ delay = m.Sigma / 2
+ }
+ return time.Duration(delay) * time.Millisecond
+}
+
+// FixedLatencyModel return fixed latencies.
+type FixedLatencyModel struct {
+ Latency float64
+}
+
+// Delay implements LatencyModel interface.
+func (m *FixedLatencyModel) Delay() time.Duration {
+ return time.Duration(m.Latency) * time.Millisecond
+}