Skip to content

Commit

Permalink
libp2phttp: don't initialise ServeMux if not nil (#2548)
Browse files Browse the repository at this point in the history
  • Loading branch information
sukunrt authored Sep 1, 2023
1 parent 5d538b1 commit 9f14eb7
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
4 changes: 3 additions & 1 deletion p2p/http/libp2phttp.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ func (h *Host) httpTransportInit() {

func (h *Host) serveMuxInit() {
h.initializeServeMux.Do(func() {
h.ServeMux = http.NewServeMux()
if h.ServeMux == nil {
h.ServeMux = http.NewServeMux()
}
})
}

Expand Down
29 changes: 29 additions & 0 deletions p2p/http/libp2phttp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -390,3 +390,32 @@ func selfSignedTLSConfig(t *testing.T) *tls.Config {
}
return tlsConfig
}

func TestCustomServeMux(t *testing.T) {
serveMux := http.NewServeMux()
serveMux.Handle("/ping/", httpping.Ping{})

server := libp2phttp.Host{
ListenAddrs: []ma.Multiaddr{ma.StringCast("/ip4/127.0.0.1/tcp/0/http")},
ServeMux: serveMux,
InsecureAllowHTTP: true,
}
server.WellKnownHandler.AddProtocolMeta(httpping.PingProtocolID, libp2phttp.ProtocolMeta{Path: "/ping/"})
go func() {
server.Serve()
}()
defer server.Close()

addrs := server.Addrs()
require.Equal(t, len(addrs), 1)
var clientHttpHost libp2phttp.Host
rt, err := clientHttpHost.NewConstrainedRoundTripper(peer.AddrInfo{Addrs: addrs}, libp2phttp.PreferHTTPTransport)
require.NoError(t, err)

client := &http.Client{Transport: rt}
body := [32]byte{}
req, _ := http.NewRequest(http.MethodPost, "/ping/", bytes.NewReader(body[:]))
resp, err := client.Do(req)
require.NoError(t, err)
require.Equal(t, 200, resp.StatusCode)
}

0 comments on commit 9f14eb7

Please sign in to comment.