mirror of
https://github.com/tailscale/tailscale.git
synced 2025-02-19 19:38:40 +00:00
magicsock/test: oops, fix a data race in nested-test logf hack.
Signed-off-by: Avery Pennarun <apenwarr@tailscale.com>
This commit is contained in:
parent
42a0e0c601
commit
4f128745d8
@ -34,7 +34,7 @@ func main() {
|
|||||||
logger := logtail.Log(logtail.Config{
|
logger := logtail.Log(logtail.Config{
|
||||||
Collection: *collection,
|
Collection: *collection,
|
||||||
PrivateID: id,
|
PrivateID: id,
|
||||||
})
|
}, log.Printf)
|
||||||
log.SetOutput(io.MultiWriter(logger, os.Stdout))
|
log.SetOutput(io.MultiWriter(logger, os.Stdout))
|
||||||
defer logger.Flush()
|
defer logger.Flush()
|
||||||
defer log.Printf("logtail exited")
|
defer log.Printf("logtail exited")
|
||||||
|
@ -30,7 +30,6 @@ func UnfixLogs(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type panicLogWriter struct {
|
type panicLogWriter struct {
|
||||||
t *testing.T
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (w *panicLogWriter) Write(b []byte) (int, error) {
|
func (w *panicLogWriter) Write(b []byte) (int, error) {
|
||||||
|
@ -15,6 +15,7 @@ import (
|
|||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -285,6 +286,28 @@ func TestDeviceStartStop(t *testing.T) {
|
|||||||
dev.Close()
|
dev.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func makeNestable(t *testing.T) (logf logger.Logf, setT func(t *testing.T)) {
|
||||||
|
var mu sync.Mutex
|
||||||
|
cur := t
|
||||||
|
|
||||||
|
setT = func(t *testing.T) {
|
||||||
|
mu.Lock()
|
||||||
|
cur = t
|
||||||
|
mu.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
logf = func(s string, args ...interface{}) {
|
||||||
|
mu.Lock()
|
||||||
|
t := cur
|
||||||
|
mu.Unlock()
|
||||||
|
|
||||||
|
t.Helper()
|
||||||
|
t.Logf(s, args...)
|
||||||
|
}
|
||||||
|
|
||||||
|
return logf, setT
|
||||||
|
}
|
||||||
|
|
||||||
func TestTwoDevicePing(t *testing.T) {
|
func TestTwoDevicePing(t *testing.T) {
|
||||||
tstest.PanicOnLog()
|
tstest.PanicOnLog()
|
||||||
rc := tstest.NewResourceCheck()
|
rc := tstest.NewResourceCheck()
|
||||||
@ -292,11 +315,7 @@ func TestTwoDevicePing(t *testing.T) {
|
|||||||
|
|
||||||
// This gets reassigned inside every test, so that the connections
|
// This gets reassigned inside every test, so that the connections
|
||||||
// all log using the "current" t.Logf function. Sigh.
|
// all log using the "current" t.Logf function. Sigh.
|
||||||
current_t := t
|
logf, setT := makeNestable(t)
|
||||||
logf := func(s string, args ...interface{}) {
|
|
||||||
current_t.Helper()
|
|
||||||
current_t.Logf(s, args...)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Wipe default DERP list, add local server.
|
// Wipe default DERP list, add local server.
|
||||||
// (Do it now, or derpHost will try to connect to derp1.tailscale.com.)
|
// (Do it now, or derpHost will try to connect to derp1.tailscale.com.)
|
||||||
@ -417,18 +436,18 @@ func TestTwoDevicePing(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
t.Run("ping 1.0.0.1", func(t *testing.T) {
|
t.Run("ping 1.0.0.1", func(t *testing.T) {
|
||||||
current_t = t
|
setT(t)
|
||||||
ping1(t)
|
ping1(t)
|
||||||
})
|
})
|
||||||
current_t = t
|
setT(t)
|
||||||
|
|
||||||
t.Run("ping 1.0.0.2", func(t *testing.T) {
|
t.Run("ping 1.0.0.2", func(t *testing.T) {
|
||||||
ping2(t)
|
ping2(t)
|
||||||
})
|
})
|
||||||
current_t = t
|
setT(t)
|
||||||
|
|
||||||
t.Run("ping 1.0.0.2 via SendPacket", func(t *testing.T) {
|
t.Run("ping 1.0.0.2 via SendPacket", func(t *testing.T) {
|
||||||
current_t = t
|
setT(t)
|
||||||
msg1to2 := tuntest.Ping(net.ParseIP("1.0.0.2"), net.ParseIP("1.0.0.1"))
|
msg1to2 := tuntest.Ping(net.ParseIP("1.0.0.2"), net.ParseIP("1.0.0.1"))
|
||||||
if err := tstun1.InjectOutbound(msg1to2); err != nil {
|
if err := tstun1.InjectOutbound(msg1to2); err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
@ -442,17 +461,17 @@ func TestTwoDevicePing(t *testing.T) {
|
|||||||
t.Error("return ping did not transit")
|
t.Error("return ping did not transit")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
current_t = t
|
setT(t)
|
||||||
|
|
||||||
t.Run("no-op dev1 reconfig", func(t *testing.T) {
|
t.Run("no-op dev1 reconfig", func(t *testing.T) {
|
||||||
current_t = t
|
setT(t)
|
||||||
if err := dev1.Reconfig(&cfgs[0]); err != nil {
|
if err := dev1.Reconfig(&cfgs[0]); err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
ping1(t)
|
ping1(t)
|
||||||
ping2(t)
|
ping2(t)
|
||||||
})
|
})
|
||||||
current_t = t
|
setT(t)
|
||||||
|
|
||||||
// TODO: Remove this once the following tests are reliable.
|
// TODO: Remove this once the following tests are reliable.
|
||||||
if os.Getenv("RUN_CURSED_TESTS") == "" {
|
if os.Getenv("RUN_CURSED_TESTS") == "" {
|
||||||
@ -512,10 +531,10 @@ func TestTwoDevicePing(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
t.Run("ping 1.0.0.1 x50", func(t *testing.T) {
|
t.Run("ping 1.0.0.1 x50", func(t *testing.T) {
|
||||||
current_t = t
|
setT(t)
|
||||||
pingSeq(t, 50, 0, true)
|
pingSeq(t, 50, 0, true)
|
||||||
})
|
})
|
||||||
current_t = t
|
setT(t)
|
||||||
|
|
||||||
// Add DERP relay.
|
// Add DERP relay.
|
||||||
derpEp := wgcfg.Endpoint{Host: "127.3.3.40", Port: 1}
|
derpEp := wgcfg.Endpoint{Host: "127.3.3.40", Port: 1}
|
||||||
@ -533,13 +552,13 @@ func TestTwoDevicePing(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
t.Run("add DERP", func(t *testing.T) {
|
t.Run("add DERP", func(t *testing.T) {
|
||||||
current_t = t
|
setT(t)
|
||||||
defer func() {
|
defer func() {
|
||||||
logf("DERP vars: %s", derpServer.ExpVar().String())
|
logf("DERP vars: %s", derpServer.ExpVar().String())
|
||||||
}()
|
}()
|
||||||
pingSeq(t, 20, 0, true)
|
pingSeq(t, 20, 0, true)
|
||||||
})
|
})
|
||||||
current_t = t
|
setT(t)
|
||||||
|
|
||||||
// Disable real route.
|
// Disable real route.
|
||||||
cfgs[0].Peers[0].Endpoints = []wgcfg.Endpoint{derpEp}
|
cfgs[0].Peers[0].Endpoints = []wgcfg.Endpoint{derpEp}
|
||||||
@ -553,7 +572,7 @@ func TestTwoDevicePing(t *testing.T) {
|
|||||||
time.Sleep(250 * time.Millisecond) // TODO remove
|
time.Sleep(250 * time.Millisecond) // TODO remove
|
||||||
|
|
||||||
t.Run("all traffic over DERP", func(t *testing.T) {
|
t.Run("all traffic over DERP", func(t *testing.T) {
|
||||||
current_t = t
|
setT(t)
|
||||||
defer func() {
|
defer func() {
|
||||||
logf("DERP vars: %s", derpServer.ExpVar().String())
|
logf("DERP vars: %s", derpServer.ExpVar().String())
|
||||||
if t.Failed() || true {
|
if t.Failed() || true {
|
||||||
@ -565,7 +584,7 @@ func TestTwoDevicePing(t *testing.T) {
|
|||||||
}()
|
}()
|
||||||
pingSeq(t, 20, 0, true)
|
pingSeq(t, 20, 0, true)
|
||||||
})
|
})
|
||||||
current_t = t
|
setT(t)
|
||||||
|
|
||||||
dev1.RemoveAllPeers()
|
dev1.RemoveAllPeers()
|
||||||
dev2.RemoveAllPeers()
|
dev2.RemoveAllPeers()
|
||||||
@ -589,7 +608,7 @@ func TestTwoDevicePing(t *testing.T) {
|
|||||||
//
|
//
|
||||||
// TODO(danderson): finish root-causing and de-flake this test.
|
// TODO(danderson): finish root-causing and de-flake this test.
|
||||||
t.Run("one real route is enough thanks to spray", func(t *testing.T) {
|
t.Run("one real route is enough thanks to spray", func(t *testing.T) {
|
||||||
current_t = t
|
setT(t)
|
||||||
pingSeq(t, 50, 700*time.Millisecond, false)
|
pingSeq(t, 50, 700*time.Millisecond, false)
|
||||||
|
|
||||||
ep2 := dev2.Config().Peers[0].Endpoints
|
ep2 := dev2.Config().Peers[0].Endpoints
|
||||||
@ -597,7 +616,7 @@ func TestTwoDevicePing(t *testing.T) {
|
|||||||
t.Error("handshake spray failed to find real route")
|
t.Error("handshake spray failed to find real route")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
current_t = t
|
setT(t)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TestAddrSet tests AddrSet appendDests and UpdateDst.
|
// TestAddrSet tests AddrSet appendDests and UpdateDst.
|
||||||
@ -608,11 +627,7 @@ func TestAddrSet(t *testing.T) {
|
|||||||
|
|
||||||
// This gets reassigned inside every test, so that the connections
|
// This gets reassigned inside every test, so that the connections
|
||||||
// all log using the "current" t.Logf function. Sigh.
|
// all log using the "current" t.Logf function. Sigh.
|
||||||
current_t := t
|
logf, setT := makeNestable(t)
|
||||||
logf := func(s string, args ...interface{}) {
|
|
||||||
current_t.Helper()
|
|
||||||
current_t.Logf(s, args...)
|
|
||||||
}
|
|
||||||
|
|
||||||
mustUDPAddr := func(s string) *net.UDPAddr {
|
mustUDPAddr := func(s string) *net.UDPAddr {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
@ -737,7 +752,7 @@ func TestAddrSet(t *testing.T) {
|
|||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
current_t = t
|
setT(t)
|
||||||
faket := time.Unix(0, 0)
|
faket := time.Unix(0, 0)
|
||||||
tt.as.Logf = logf
|
tt.as.Logf = logf
|
||||||
tt.as.clock = func() time.Time { return faket }
|
tt.as.clock = func() time.Time { return faket }
|
||||||
@ -756,6 +771,6 @@ func TestAddrSet(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
current_t = t
|
setT(t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user