39 lines
1.0 KiB
Nim
39 lines
1.0 KiB
Nim
# Nim-LibP2P
|
|
# Copyright (c) 2023 Status Research & Development GmbH
|
|
# Licensed under either of
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
# at your option.
|
|
# This file may not be copied, modified, or distributed except according to
|
|
# those terms.
|
|
|
|
import std/options
|
|
import chronos
|
|
import unittest2
|
|
import ../libp2p/[builders,
|
|
switch]
|
|
import ./helpers
|
|
|
|
suite "Dialer":
|
|
teardown:
|
|
checkTrackers()
|
|
|
|
asyncTest "Connect forces a new connection":
|
|
|
|
let
|
|
src = newStandardSwitch()
|
|
dst = newStandardSwitch()
|
|
|
|
await dst.start()
|
|
|
|
await src.connect(dst.peerInfo.peerId, dst.peerInfo.addrs)
|
|
check src.connManager.connCount(dst.peerInfo.peerId) == 1
|
|
|
|
await src.connect(dst.peerInfo.peerId, dst.peerInfo.addrs)
|
|
check src.connManager.connCount(dst.peerInfo.peerId) == 1
|
|
|
|
await src.connect(dst.peerInfo.peerId, dst.peerInfo.addrs, true, false)
|
|
check src.connManager.connCount(dst.peerInfo.peerId) == 2
|
|
|
|
await allFutures(src.stop(), dst.stop())
|