-
Notifications
You must be signed in to change notification settings - Fork 1
/
rsa_private_key_test.go
114 lines (82 loc) · 2.9 KB
/
rsa_private_key_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package sad_test
import (
"encoding/base64"
"encoding/json"
"testing"
"github.com/jswny/sad"
testutils "github.com/jswny/sad/internal"
)
func TestRSAPrivateKeyMarshalJSON(t *testing.T) {
rsaPrivateKey := testutils.GenerateRSAPrivateKey()
data, err := rsaPrivateKey.MarshalJSON()
if err != nil {
t.Fatalf("Error marshaling first RSA private key: %s", err)
}
if !json.Valid(data) {
t.Errorf("RSA private key marshal to JSON did not produce valid JSON. Got %s", data)
}
}
func TestRSAPrivateKeyMarshalJSONNil(t *testing.T) {
rsaPrivateKey := sad.RSAPrivateKey{}
data, err := rsaPrivateKey.MarshalJSON()
if err != nil {
t.Fatalf("Error marshaling first RSA private key: %s", err)
}
if !json.Valid(data) {
t.Errorf("RSA private key marshal to JSON did not produce valid JSON. Got %s", data)
}
}
func TestRSAPrivateKeyUnmarshalJSON(t *testing.T) {
rsaPrivateKey := testutils.GenerateRSAPrivateKey()
firstKeyData, _ := rsaPrivateKey.MarshalJSON()
rsaPrivateKey2 := sad.RSAPrivateKey{}
err := rsaPrivateKey2.UnmarshalJSON(firstKeyData)
if err != nil {
t.Fatalf("Error unmarshaling RSA private key: %s", err)
}
if !rsaPrivateKey.PrivateKey.Equal(rsaPrivateKey2.PrivateKey) {
t.Errorf("Expected marshaled and unmarshaled private keys to be equal, but they were not")
}
if err := rsaPrivateKey.PrivateKey.Validate(); err != nil {
t.Errorf("Unmarshalled private key was not valid")
}
}
func TestRSAPrivateKeyUnmarshalJSONNil(t *testing.T) {
rsaPrivateKey := sad.RSAPrivateKey{}
firstKeyData, _ := rsaPrivateKey.MarshalJSON()
rsaPrivateKey2 := sad.RSAPrivateKey{}
err := rsaPrivateKey2.UnmarshalJSON(firstKeyData)
if err != nil {
t.Fatalf("Error unmarshaling RSA private key: %s", err)
}
if rsaPrivateKey.PrivateKey != rsaPrivateKey2.PrivateKey {
t.Errorf("Expected marshaled and unmarshaled private keys to be equal, but they were not")
}
}
func TestRSAPrivateKeyToBase64PEMString(t *testing.T) {
rsaPrivateKey := testutils.GenerateRSAPrivateKey()
encoded := rsaPrivateKey.ToBase64PEMString()
_, err := base64.StdEncoding.DecodeString(encoded)
if err != nil {
t.Errorf("PEM block string was not valid base64 encoding")
}
}
func TestRSAPrivateKeyParseBase64PEMString(t *testing.T) {
testRSAPrivateKey := testutils.GenerateRSAPrivateKey()
encoded := testRSAPrivateKey.ToBase64PEMString()
rsaPrivateKey := sad.RSAPrivateKey{}
err := rsaPrivateKey.ParseBase64PEMString(encoded)
if err != nil {
t.Fatalf("Failed to parse base64 PEM string into an RSA private key")
}
if !testRSAPrivateKey.PrivateKey.Equal(rsaPrivateKey.PrivateKey) {
t.Errorf("Expected base64 PEM block encoded and decoded private keys to be equal, but they were not")
}
}
func TestRSAPrivateKeyToSSHAuthMethod(t *testing.T) {
testRSAPrivateKey := testutils.GenerateRSAPrivateKey()
_, err := testRSAPrivateKey.ToSSHAuthMethod()
if err != nil {
t.Errorf("Error converting RSA private key to SSH auth method")
}
}