56 lines
1.6 KiB
Nim
56 lines
1.6 KiB
Nim
import helpers, commoninterop
|
|
import ../libp2p
|
|
import ../libp2p/crypto/crypto
|
|
|
|
proc switchMplexCreator(
|
|
isRelay: bool = false,
|
|
ma: MultiAddress = MultiAddress.init("/ip4/127.0.0.1/tcp/0").tryGet(),
|
|
prov: TransportProvider = proc(upgr: Upgrade): Transport = TcpTransport.new({}, upgr)):
|
|
Switch {.raises: [Defect, LPError].} =
|
|
|
|
SwitchBuilder.new()
|
|
.withSignedPeerRecord(false)
|
|
.withMaxConnections(MaxConnections)
|
|
.withRng(crypto.newRng())
|
|
.withAddresses(@[ ma ])
|
|
.withMaxIn(-1)
|
|
.withMaxOut(-1)
|
|
.withTransport(prov)
|
|
.withMplex()
|
|
.withMaxConnsPerPeer(MaxConnectionsPerPeer)
|
|
.withPeerStore(capacity=1000)
|
|
.withNoise()
|
|
.withRelayTransport(isRelay)
|
|
.withNameResolver(nil)
|
|
.build()
|
|
|
|
proc switchYamuxCreator(
|
|
isRelay: bool = false,
|
|
ma: MultiAddress = MultiAddress.init("/ip4/127.0.0.1/tcp/0").tryGet(),
|
|
prov: TransportProvider = proc(upgr: Upgrade): Transport = TcpTransport.new({}, upgr)):
|
|
Switch {.raises: [Defect, LPError].} =
|
|
|
|
SwitchBuilder.new()
|
|
.withSignedPeerRecord(false)
|
|
.withMaxConnections(MaxConnections)
|
|
.withRng(crypto.newRng())
|
|
.withAddresses(@[ ma ])
|
|
.withMaxIn(-1)
|
|
.withMaxOut(-1)
|
|
.withTransport(prov)
|
|
.withYamux()
|
|
.withMaxConnsPerPeer(MaxConnectionsPerPeer)
|
|
.withPeerStore(capacity=1000)
|
|
.withNoise()
|
|
.withRelayTransport(isRelay)
|
|
.withNameResolver(nil)
|
|
.build()
|
|
|
|
|
|
suite "Tests interop":
|
|
commonInteropTests("mplex", switchMplexCreator)
|
|
relayInteropTests("mplex", switchMplexCreator)
|
|
|
|
commonInteropTests("yamux", switchYamuxCreator)
|
|
relayInteropTests("yamux", switchYamuxCreator)
|