Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge the transport test suite from go-libp2p-testing here #1496

Merged
merged 20 commits into from
May 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
aacc91f
initial commit.
raulk May 22, 2019
2857d54
SubtestPingPong: ensure connections are closed.
raulk May 23, 2019
c18bd50
Allow custom SubtestStress. (#7)
Jorropo Oct 29, 2019
59f8133
pass contexts to OpenStream in tests
marten-seemann Dec 17, 2020
a3d1008
Merge pull request #31 from libp2p/open-stream-context
marten-seemann Dec 19, 2020
d1d34d8
Defer closing stream for reading
dennis-tra May 1, 2021
191756f
Merge pull request #32 from dennis-tra/master
Stebalien May 3, 2021
6ebf948
Address `go vet` and `saticcheck` issues
masih Jul 19, 2021
9aed2da
Merge pull request #33 from libp2p/fix-lint-issues-pre-ci
Stebalien Jul 20, 2021
75a6c48
fix: cleanup transport suite
Stebalien Jul 23, 2021
dfda146
Merge pull request #34 from libp2p/fix/transport
Stebalien Jul 23, 2021
ea4a940
fix deadlock in the transport's serve function
marten-seemann Jul 24, 2021
f3dcaf7
fix closing of dialed connections
marten-seemann Jul 25, 2021
bfd7dbd
Merge pull request #35 from libp2p/fix-serve-deadlock
marten-seemann Jul 25, 2021
3bd94ff
run go generate on CI
marten-seemann Jan 7, 2022
a1aa7d3
Merge pull request #46 from libp2p/rcmgr
marten-seemann Jan 17, 2022
4a572e7
remove debug logging from stream suite
marten-seemann Apr 25, 2022
c130e6e
don't continue on read / write error in stream suite (#59)
marten-seemann Apr 26, 2022
d05b8f4
merge the transport test suite from go-libp2p-testing here
marten-seemann May 18, 2022
64cfca6
switch from github.com/libp2p/go-libp2p-testing/suites/transport to p…
marten-seemann May 18, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion p2p/transport/tcp/tcp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"github.com/libp2p/go-libp2p/p2p/muxer/yamux"
csms "github.com/libp2p/go-libp2p/p2p/net/conn-security-multistream"
tptu "github.com/libp2p/go-libp2p/p2p/net/upgrader"
ttransport "github.com/libp2p/go-libp2p/p2p/transport/testsuite"

"github.com/libp2p/go-libp2p-core/crypto"
"github.com/libp2p/go-libp2p-core/network"
Expand All @@ -17,7 +18,6 @@ import (
"github.com/libp2p/go-libp2p-core/transport"

mocknetwork "github.com/libp2p/go-libp2p-testing/mocks/network"
ttransport "github.com/libp2p/go-libp2p-testing/suites/transport"

ma "github.com/multiformats/go-multiaddr"

Expand Down
Loading