aboutsummaryrefslogtreecommitdiff
path: root/lib/util_test.go
blob: 9e89297073d63f53c2b2f5110b53efce22b0c485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package lib

import (
	"testing"

	"github.com/nsheridan/cashier/testdata"
	"golang.org/x/crypto/ssh"
)

func TestGetPublicKey(t *testing.T) {
	t.Parallel()
	c, _, _, _, _ := ssh.ParseAuthorizedKey(testdata.Cert)
	if GetPublicKey(c.(*ssh.Certificate)) != string(testdata.Cert) {
		t.Fail()
	}
}