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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
package revoke
import (
"testing"
"time"
"github.com/cloudflare/cfssl/certdb"
"github.com/cloudflare/cfssl/certdb/sql"
"github.com/cloudflare/cfssl/certdb/testdb"
"github.com/cloudflare/cfssl/cli"
"golang.org/x/crypto/ocsp"
)
var dbAccessor certdb.Accessor
const (
fakeAKI = "fake aki"
)
func prepDB() (err error) {
db := testdb.SQLiteDB("../../certdb/testdb/certstore_development.db")
expirationTime := time.Now().AddDate(1, 0, 0)
var cert = certdb.CertificateRecord{
Serial: "1",
AKI: fakeAKI,
Expiry: expirationTime,
PEM: "unexpired cert",
}
dbAccessor = sql.NewAccessor(db)
err = dbAccessor.InsertCertificate(cert)
if err != nil {
return err
}
return
}
func TestRevokeMain(t *testing.T) {
err := prepDB()
if err != nil {
t.Fatal(err)
}
err = revokeMain([]string{}, cli.Config{Serial: "1", AKI: fakeAKI, DBConfigFile: "../testdata/db-config.json"})
if err != nil {
t.Fatal(err)
}
crs, err := dbAccessor.GetCertificate("1", fakeAKI)
if err != nil {
t.Fatal("Failed to get certificate")
}
if len(crs) != 1 {
t.Fatal("Failed to get exactly one certificate")
}
cr := crs[0]
if cr.Status != "revoked" {
t.Fatal("Certificate not marked revoked after we revoked it")
}
err = revokeMain([]string{}, cli.Config{Serial: "1", AKI: fakeAKI, Reason: "2", DBConfigFile: "../testdata/db-config.json"})
if err != nil {
t.Fatal(err)
}
crs, err = dbAccessor.GetCertificate("1", fakeAKI)
if err != nil {
t.Fatal("Failed to get certificate")
}
if len(crs) != 1 {
t.Fatal("Failed to get exactly one certificate")
}
cr = crs[0]
if cr.Reason != 2 {
t.Fatal("Certificate revocation reason incorrect")
}
err = revokeMain([]string{}, cli.Config{Serial: "1", AKI: fakeAKI, Reason: "Superseded", DBConfigFile: "../testdata/db-config.json"})
if err != nil {
t.Fatal(err)
}
crs, err = dbAccessor.GetCertificate("1", fakeAKI)
if err != nil {
t.Fatal("Failed to get certificate")
}
if len(crs) != 1 {
t.Fatal("Failed to get exactly one certificate")
}
cr = crs[0]
if cr.Reason != ocsp.Superseded {
t.Fatal("Certificate revocation reason incorrect")
}
err = revokeMain([]string{}, cli.Config{Serial: "1", AKI: fakeAKI, Reason: "invalid_reason", DBConfigFile: "../testdata/db-config.json"})
if err == nil {
t.Fatal("Expected error from invalid reason")
}
err = revokeMain([]string{}, cli.Config{Serial: "1", AKI: fakeAKI, Reason: "999", DBConfigFile: "../testdata/db-config.json"})
if err == nil {
t.Fatal("Expected error from invalid reason")
}
err = revokeMain([]string{}, cli.Config{Serial: "2", AKI: fakeAKI, DBConfigFile: "../testdata/db-config.json"})
if err == nil {
t.Fatal("Expected error from unrecognized serial number")
}
err = revokeMain([]string{}, cli.Config{AKI: fakeAKI, DBConfigFile: "../testdata/db-config.json"})
if err == nil {
t.Fatal("Expected error from missing serial number")
}
err = revokeMain([]string{}, cli.Config{Serial: "1", AKI: fakeAKI})
if err == nil {
t.Fatal("Expected error from missing db config")
}
err = revokeMain([]string{}, cli.Config{Serial: "1", DBConfigFile: "../testdata/db-config.json"})
if err == nil {
t.Fatal("Expected error from missing aki")
}
}
|