aboutsummaryrefslogtreecommitdiff
path: root/rsh/transport_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'rsh/transport_test.go')
-rw-r--r--rsh/transport_test.go17
1 files changed, 8 insertions, 9 deletions
diff --git a/rsh/transport_test.go b/rsh/transport_test.go
index 562c4d2..7ff74b1 100644
--- a/rsh/transport_test.go
+++ b/rsh/transport_test.go
@@ -15,24 +15,23 @@ import (
"golang.org/x/crypto/ssh/knownhosts"
)
-// genClientKey makes a client key via keygen and returns the private key path
-// and the parsed public key.
+// genClientKey makes a client key via keygen, writes it to a file for RSH_KEY,
+// and returns the private key path and the corresponding public key.
func genClientKey(t *testing.T) (keyPath string, pub ssh.PublicKey) {
t.Helper()
- dir := t.TempDir()
- if err := keygen(dir, io.Discard); err != nil {
+ var buf bytes.Buffer
+ if err := keygen(&buf); err != nil {
t.Fatal(err)
}
- keyPath = filepath.Join(dir, "id_ed25519")
- pb, err := os.ReadFile(filepath.Join(dir, "id_ed25519.pub"))
- if err != nil {
+ keyPath = filepath.Join(t.TempDir(), "id_ed25519")
+ if err := os.WriteFile(keyPath, buf.Bytes(), 0o600); err != nil {
t.Fatal(err)
}
- pub, _, _, _, err = ssh.ParseAuthorizedKey(pb)
+ signer, err := ssh.ParsePrivateKey(buf.Bytes())
if err != nil {
t.Fatal(err)
}
- return keyPath, pub
+ return keyPath, signer.PublicKey()
}
func writeKnownHosts(t *testing.T, host string, port int, hostKey ssh.PublicKey) string {