mirror of https://github.com/tailscale/tailscale/
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
2.2 KiB
Go
113 lines
2.2 KiB
Go
2 years ago
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
4 years ago
|
|
||
2 years ago
|
package netmon
|
||
4 years ago
|
|
||
|
import (
|
||
4 years ago
|
"flag"
|
||
2 years ago
|
"sync/atomic"
|
||
4 years ago
|
"testing"
|
||
4 years ago
|
"time"
|
||
4 years ago
|
|
||
|
"tailscale.com/net/interfaces"
|
||
4 years ago
|
)
|
||
|
|
||
|
func TestMonitorStartClose(t *testing.T) {
|
||
|
mon, err := New(t.Logf)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
mon.Start()
|
||
|
if err := mon.Close(); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestMonitorJustClose(t *testing.T) {
|
||
|
mon, err := New(t.Logf)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if err := mon.Close(); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
func TestMonitorInjectEvent(t *testing.T) {
|
||
|
mon, err := New(t.Logf)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
defer mon.Close()
|
||
|
got := make(chan bool, 1)
|
||
|
mon.RegisterChangeCallback(func(changed bool, state *interfaces.State) {
|
||
|
select {
|
||
|
case got <- true:
|
||
|
default:
|
||
|
}
|
||
|
})
|
||
|
mon.Start()
|
||
|
mon.InjectEvent()
|
||
|
select {
|
||
|
case <-got:
|
||
|
// Pass.
|
||
|
case <-time.After(5 * time.Second):
|
||
|
t.Fatal("timeout waiting for callback")
|
||
|
}
|
||
|
}
|
||
|
|
||
2 years ago
|
var (
|
||
|
monitor = flag.String("monitor", "", `go into monitor mode like 'route monitor'; test never terminates. Value can be either "raw" or "callback"`)
|
||
|
monitorDuration = flag.Duration("monitor-duration", 0, "if non-zero, how long to run TestMonitorMode. Zero means forever.")
|
||
|
)
|
||
4 years ago
|
|
||
|
func TestMonitorMode(t *testing.T) {
|
||
|
switch *monitor {
|
||
|
case "":
|
||
|
t.Skip("skipping non-test without --monitor")
|
||
|
case "raw", "callback":
|
||
|
default:
|
||
|
t.Skipf(`invalid --monitor value: must be "raw" or "callback"`)
|
||
|
}
|
||
|
mon, err := New(t.Logf)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
switch *monitor {
|
||
|
case "raw":
|
||
2 years ago
|
var closed atomic.Bool
|
||
|
if *monitorDuration != 0 {
|
||
|
t := time.AfterFunc(*monitorDuration, func() {
|
||
|
closed.Store(true)
|
||
|
mon.Close()
|
||
|
})
|
||
|
defer t.Stop()
|
||
|
}
|
||
4 years ago
|
for {
|
||
|
msg, err := mon.om.Receive()
|
||
2 years ago
|
if closed.Load() {
|
||
|
return
|
||
|
}
|
||
4 years ago
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
t.Logf("msg: %#v", msg)
|
||
|
}
|
||
|
case "callback":
|
||
2 years ago
|
var done <-chan time.Time
|
||
|
if *monitorDuration != 0 {
|
||
|
t := time.NewTimer(*monitorDuration)
|
||
|
defer t.Stop()
|
||
|
done = t.C
|
||
|
}
|
||
|
n := 0
|
||
4 years ago
|
mon.RegisterChangeCallback(func(changed bool, st *interfaces.State) {
|
||
2 years ago
|
n++
|
||
4 years ago
|
t.Logf("cb: changed=%v, ifSt=%v", changed, st)
|
||
|
})
|
||
|
mon.Start()
|
||
2 years ago
|
<-done
|
||
|
t.Logf("%v callbacks", n)
|
||
4 years ago
|
}
|
||
|
}
|