2015-06-13 15:53:17 +00:00
|
|
|
package acme
|
|
|
|
|
|
|
|
import (
|
2015-06-14 00:33:21 +00:00
|
|
|
"bytes"
|
2015-06-13 15:53:17 +00:00
|
|
|
"crypto/rsa"
|
|
|
|
"testing"
|
2015-10-16 19:05:16 +00:00
|
|
|
"time"
|
2015-06-13 15:53:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGeneratePrivateKey(t *testing.T) {
|
|
|
|
key, err := generatePrivateKey(32)
|
|
|
|
if err != nil {
|
|
|
|
t.Error("Error generating private key:", err)
|
|
|
|
}
|
|
|
|
if key == nil {
|
|
|
|
t.Error("Expected key to not be nil, but it was")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGenerateCSR(t *testing.T) {
|
|
|
|
key, err := generatePrivateKey(512)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Error generating private key:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
csr, err := generateCsr(key, "fizz.buzz")
|
|
|
|
if err != nil {
|
|
|
|
t.Error("Error generating CSR:", err)
|
|
|
|
}
|
|
|
|
if csr == nil || len(csr) == 0 {
|
|
|
|
t.Error("Expected CSR with data, but it was nil or length 0")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPEMEncode(t *testing.T) {
|
2015-06-14 00:33:21 +00:00
|
|
|
buf := bytes.NewBufferString("TestingRSAIsSoMuchFun")
|
|
|
|
|
|
|
|
reader := MockRandReader{b: buf}
|
|
|
|
key, err := rsa.GenerateKey(reader, 32)
|
2015-06-13 15:53:17 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Error generating private key:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
data := pemEncode(key)
|
|
|
|
|
|
|
|
if data == nil {
|
|
|
|
t.Fatal("Expected result to not be nil, but it was")
|
|
|
|
}
|
|
|
|
if len(data) != 127 {
|
|
|
|
t.Errorf("Expected PEM encoding to be length 127, but it was %d", len(data))
|
|
|
|
}
|
|
|
|
}
|
2015-06-14 00:33:21 +00:00
|
|
|
|
2015-10-16 19:05:16 +00:00
|
|
|
func TestCertExpiration(t *testing.T) {
|
|
|
|
privKey, err := generatePrivateKey(2048)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Error generating private key:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expiration := time.Now().Add(365)
|
|
|
|
expiration = expiration.Round(time.Second)
|
|
|
|
certBytes, err := generateDerCert(privKey, expiration, "test.com")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Error generating cert:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
buf := bytes.NewBufferString("TestingRSAIsSoMuchFun")
|
|
|
|
|
|
|
|
if ctime, err := GetCertExpiration(buf.Bytes()); err == nil {
|
|
|
|
t.Errorf("Expected getCertExpiration to return an error for garbage string but returned %v", ctime)
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctime, err := GetCertExpiration(certBytes); err != nil || ctime != expiration.UTC() {
|
|
|
|
t.Errorf("Expected getCertExpiration to return %v but returned: %v, err: %v", expiration.UTC(), ctime, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-14 00:33:21 +00:00
|
|
|
type MockRandReader struct {
|
|
|
|
b *bytes.Buffer
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r MockRandReader) Read(p []byte) (int, error) {
|
|
|
|
return r.b.Read(p)
|
|
|
|
}
|