golang/go

net/http/httptest: httptest on Windows is IPv4-specific

Open

#29,759 建立於 2019年1月15日

在 GitHub 查看
 (3 留言) (0 反應) (0 負責人)Go (19,008 fork)batch import
NeedsInvestigationOS-Windowshelp wanted

倉庫指標

Star
 (133,883 star)
PR 合併指標
 (30 天內沒有已合併 PR)

描述

What version of Go are you using (go version)?

go version go1.11.1 windows/amd64

Does this issue reproduce with the latest release?

Yes

What operating system and processor architecture are you using (go env)?

windows/amd64

What did you do?

Run a test leveraging net/http/httptest on a host with IPv6 but without IPv4.

To reproduce:

  1. As administrator, run netsh interface ipv4 uninstall
  2. Reboot
  3. Execute an httptest as in https://play.golang.org/p/xlMUEEhgj5s

What did you expect to see?

Test would pass, since the client and server code were both valid, and pass when IPv4 is available.

What did you see instead?

2019/01/15 17:26:59 Get http://[::1]:49679: dial tcp [::1]:49679: failed to find ConnectEx: An address incompatible with the requested protocol was used.

貢獻者指南