mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
3af051ea27
Currently only the top four most popular changes: endpoints, DERP home, online, and LastSeen. Updates #1909 Change-Id: I03152da176b2b95232b56acabfb55dcdfaa16b79 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
22 lines
477 B
Go
22 lines
477 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package controlknobs
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestAsDebugJSON(t *testing.T) {
|
|
var nilPtr *Knobs
|
|
if got := nilPtr.AsDebugJSON(); got != nil {
|
|
t.Errorf("AsDebugJSON(nil) = %v; want nil", got)
|
|
}
|
|
k := new(Knobs)
|
|
got := k.AsDebugJSON()
|
|
if want := reflect.TypeOf(Knobs{}).NumField(); len(got) != want {
|
|
t.Errorf("AsDebugJSON map has %d fields; want %v", len(got), want)
|
|
}
|
|
}
|