2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-02-24 19:07:16 +00:00
|
|
|
|
2022-09-18 05:32:21 +01:00
|
|
|
//go:build linux || (darwin && !ios)
|
2022-02-24 19:07:16 +00:00
|
|
|
|
|
|
|
package ipnlocal
|
|
|
|
|
|
|
|
import (
|
2022-09-18 05:32:21 +01:00
|
|
|
"encoding/json"
|
2022-02-24 19:07:16 +00:00
|
|
|
"reflect"
|
|
|
|
"testing"
|
2022-09-18 05:32:21 +01:00
|
|
|
|
2022-11-09 05:58:10 +00:00
|
|
|
"tailscale.com/ipn/store/mem"
|
2022-09-18 05:32:21 +01:00
|
|
|
"tailscale.com/tailcfg"
|
|
|
|
"tailscale.com/util/must"
|
2022-02-24 19:07:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSSHKeyGen(t *testing.T) {
|
|
|
|
dir := t.TempDir()
|
|
|
|
lb := &LocalBackend{varRoot: dir}
|
2022-07-22 21:32:16 +01:00
|
|
|
keys, err := lb.getTailscaleSSH_HostKeys(nil)
|
2022-02-24 19:07:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
got := map[string]bool{}
|
|
|
|
for _, k := range keys {
|
|
|
|
got[k.PublicKey().Type()] = true
|
|
|
|
}
|
|
|
|
want := map[string]bool{
|
|
|
|
"ssh-rsa": true,
|
|
|
|
"ecdsa-sha2-nistp256": true,
|
|
|
|
"ssh-ed25519": true,
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(got, want) {
|
|
|
|
t.Fatalf("keys = %v; want %v", got, want)
|
|
|
|
}
|
|
|
|
|
2022-07-22 21:32:16 +01:00
|
|
|
keys2, err := lb.getTailscaleSSH_HostKeys(nil)
|
2022-02-24 19:07:16 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(keys, keys2) {
|
|
|
|
t.Errorf("got different keys on second call")
|
|
|
|
}
|
|
|
|
}
|
2022-09-18 05:32:21 +01:00
|
|
|
|
|
|
|
type fakeSSHServer struct {
|
|
|
|
SSHServer
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetSSHUsernames(t *testing.T) {
|
2023-01-31 01:28:13 +00:00
|
|
|
pm := must.Get(newProfileManager(new(mem.Store), t.Logf))
|
2022-11-09 05:58:10 +00:00
|
|
|
b := &LocalBackend{pm: pm, store: pm.Store()}
|
2022-09-18 05:32:21 +01:00
|
|
|
b.sshServer = fakeSSHServer{}
|
|
|
|
res, err := b.getSSHUsernames(new(tailcfg.C2NSSHUsernamesRequest))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
t.Logf("Got: %s", must.Get(json.Marshal(res)))
|
|
|
|
}
|