2023-01-27 13:37:20 -08:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-11-10 20:24:31 -08:00
|
|
|
|
|
|
|
//go:build go1.19
|
|
|
|
|
|
|
|
package tailscale
|
|
|
|
|
2024-02-09 11:26:43 -06:00
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"tailscale.com/tstest/deptest"
|
|
|
|
)
|
2022-11-10 20:24:31 -08:00
|
|
|
|
|
|
|
func TestGetServeConfigFromJSON(t *testing.T) {
|
|
|
|
sc, err := getServeConfigFromJSON([]byte("null"))
|
|
|
|
if sc != nil {
|
|
|
|
t.Errorf("want nil for null")
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("reading null: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
sc, err = getServeConfigFromJSON([]byte(`{"TCP":{}}`))
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("reading object: %v", err)
|
|
|
|
} else if sc == nil {
|
|
|
|
t.Errorf("want non-nil for object")
|
|
|
|
} else if sc.TCP == nil {
|
|
|
|
t.Errorf("want non-nil TCP for object")
|
|
|
|
}
|
|
|
|
}
|
2024-02-09 11:26:43 -06:00
|
|
|
|
|
|
|
func TestDeps(t *testing.T) {
|
|
|
|
deptest.DepChecker{
|
|
|
|
BadDeps: map[string]string{
|
|
|
|
// Make sure we don't again accidentally bring in a dependency on
|
|
|
|
// TailFS or its transitive dependencies
|
|
|
|
"tailscale.com/tailfs/tailfsimpl": "https://github.com/tailscale/tailscale/pull/10631",
|
2024-02-21 06:40:12 -06:00
|
|
|
"github.com/studio-b12/gowebdav": "https://github.com/tailscale/tailscale/pull/10631",
|
2024-02-09 11:26:43 -06:00
|
|
|
},
|
|
|
|
}.Check(t)
|
|
|
|
}
|