good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
4fb7ab5d
Commit
4fb7ab5d
authored
9 years ago
by
Péter Szilágyi
Browse files
Options
Downloads
Patches
Plain Diff
whisper: mock tests to use simulated peers
parent
86372b20
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
whisper/common_test.go
+32
-0
32 additions, 0 deletions
whisper/common_test.go
whisper/whisper_test.go
+23
-71
23 additions, 71 deletions
whisper/whisper_test.go
with
55 additions
and
71 deletions
whisper/common_test.go
+
32
−
0
View file @
4fb7ab5d
...
...
@@ -3,7 +3,9 @@
package
whisper
import
(
"bytes"
"fmt"
"io/ioutil"
"math/rand"
"github.com/ethereum/go-ethereum/p2p"
...
...
@@ -36,3 +38,33 @@ func whisperCaps() []p2p.Cap {
},
}
}
// bufMsgPipe creates a buffered message pipe between two endpoints.
func
bufMsgPipe
()
(
*
p2p
.
MsgPipeRW
,
*
p2p
.
MsgPipeRW
)
{
A
,
midA
:=
p2p
.
MsgPipe
()
midB
,
B
:=
p2p
.
MsgPipe
()
go
copyMsgPipe
(
midA
,
midB
)
go
copyMsgPipe
(
midB
,
midA
)
return
A
,
B
}
// copyMsgPipe copies messages from the src pipe to the dest.
func
copyMsgPipe
(
dst
,
src
*
p2p
.
MsgPipeRW
)
{
defer
dst
.
Close
()
for
{
msg
,
err
:=
src
.
ReadMsg
()
if
err
!=
nil
{
return
}
data
,
err
:=
ioutil
.
ReadAll
(
msg
.
Payload
)
if
err
!=
nil
{
return
}
msg
.
Payload
=
bytes
.
NewReader
(
data
)
if
err
:=
dst
.
WriteMsg
(
msg
);
err
!=
nil
{
return
}
}
}
This diff is collapsed.
Click to expand it.
whisper/whisper_test.go
+
23
−
71
View file @
4fb7ab5d
package
whisper
import
(
"fmt"
"testing"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/nat"
)
type
testNode
struct
{
server
*
p2p
.
Server
client
*
Whisper
}
func
startNodes
(
n
int
)
([]
*
testNode
,
error
)
{
// Start up the cluster of nodes
cluster
:=
make
([]
*
testNode
,
0
,
n
)
func
startTestCluster
(
n
int
)
[]
*
Whisper
{
// Create the batch of simulated peers
nodes
:=
make
([]
*
p2p
.
Peer
,
n
)
for
i
:=
0
;
i
<
n
;
i
++
{
shh
:=
New
()
// Generate the node identity
key
,
err
:=
crypto
.
GenerateKey
()
if
err
!=
nil
{
return
nil
,
err
}
name
:=
common
.
MakeName
(
fmt
.
Sprintf
(
"whisper-go-test-%d"
,
i
),
"1.0"
)
// Create an Ethereum server to communicate through
server
:=
&
p2p
.
Server
{
PrivateKey
:
key
,
MaxPeers
:
10
,
Name
:
name
,
Protocols
:
[]
p2p
.
Protocol
{
shh
.
Protocol
()},
ListenAddr
:
fmt
.
Sprintf
(
":%d"
,
30300
+
i
),
NAT
:
nat
.
Any
(),
}
if
err
:=
server
.
Start
();
err
!=
nil
{
return
nil
,
err
}
// Peer online, store and iterate
cluster
=
append
(
cluster
,
&
testNode
{
server
:
server
,
client
:
shh
,
})
nodes
[
i
]
=
p2p
.
NewPeer
(
randomNodeID
(),
randomNodeName
(),
whisperCaps
())
}
// Manually wire together the clust
er n
odes
root
:=
cluster
[
0
]
.
server
.
Self
()
for
_
,
node
:=
range
cluster
[
1
:
]
{
node
.
server
.
SuggestPeer
(
root
)
whispers
:=
make
([]
*
Whisp
er
,
n
)
for
i
:=
0
;
i
<
n
;
i
++
{
whispers
[
i
]
=
New
()
whispers
[
i
]
.
Start
(
)
}
return
cluster
,
nil
}
// Wire all the peers to the root one
for
i
:=
1
;
i
<
n
;
i
++
{
src
,
dst
:=
bufMsgPipe
()
func
stopNodes
(
cluster
[]
*
testNode
)
{
for
_
,
node
:=
range
cluster
{
node
.
server
.
Stop
()
go
whispers
[
0
]
.
handlePeer
(
nodes
[
i
],
src
)
go
whispers
[
i
]
.
handlePeer
(
nodes
[
0
],
dst
)
}
return
whispers
}
func
TestSelfMessage
(
t
*
testing
.
T
)
{
// Start the single node cluster
cluster
,
err
:=
startNodes
(
1
)
if
err
!=
nil
{
t
.
Fatalf
(
"failed to boot test cluster: %v"
,
err
)
}
defer
stopNodes
(
cluster
)
client
:=
cluster
[
0
]
.
client
client
:=
startTestCluster
(
1
)[
0
]
// Start watching for self messages, signal any arrivals
self
:=
client
.
NewIdentity
()
...
...
@@ -104,16 +65,12 @@ func TestSelfMessage(t *testing.T) {
func
TestDirectMessage
(
t
*
testing
.
T
)
{
// Start the sender-recipient cluster
cluster
,
err
:=
startNodes
(
2
)
if
err
!=
nil
{
t
.
Fatalf
(
"failed to boot test cluster: %v"
,
err
)
}
defer
stopNodes
(
cluster
)
cluster
:=
startTestCluster
(
2
)
sender
:=
cluster
[
0
]
.
client
sender
:=
cluster
[
0
]
senderId
:=
sender
.
NewIdentity
()
recipient
:=
cluster
[
1
]
.
client
recipient
:=
cluster
[
1
]
recipientId
:=
recipient
.
NewIdentity
()
// Watch for arriving messages on the recipient
...
...
@@ -155,18 +112,13 @@ func TestIdentifiedBroadcast(t *testing.T) {
func
testBroadcast
(
anonymous
bool
,
t
*
testing
.
T
)
{
// Start the single sender multi recipient cluster
cluster
,
err
:=
startNodes
(
3
)
if
err
!=
nil
{
t
.
Fatalf
(
"failed to boot test cluster: %v"
,
err
)
}
defer
stopNodes
(
cluster
)
cluster
:=
startTestCluster
(
3
)
sender
:=
cluster
[
0
]
.
client
targets
:=
make
([]
*
Whisper
,
len
(
cluster
)
-
1
)
for
i
,
node
:=
range
cluster
[
1
:
]
{
targets
[
i
]
=
node
.
client
sender
:=
cluster
[
1
]
targets
:=
cluster
[
1
:
]
for
_
,
target
:=
range
targets
{
if
!
anonymous
{
target
s
[
i
]
.
NewIdentity
()
target
.
NewIdentity
()
}
}
// Watch for arriving messages on the recipients
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment