func testUpdateCertificateAndGetCertificate(dba certdb.Accessor, t *testing.T) { expiry := time.Date(2010, time.December, 25, 23, 0, 0, 0, time.UTC) want := &certdb.CertificateRecord{ PEM: "fake cert data", Serial: "fake serial 3", CALabel: "default", Status: "good", Reason: 0, Expiry: expiry, } if err := dba.InsertCertificate(want); err != nil { t.Fatal(err) } // reason 2 is CACompromise if err := dba.RevokeCertificate(want.Serial, 2); err != nil { t.Fatal(err) } got, err := dba.GetCertificate(want.Serial) if err != nil { t.Fatal(err) } // relfection comparison with zero time objects are not stable as it seems if want.Serial != got.Serial || got.Status != "revoked" || want.CALabel != got.CALabel || got.RevokedAt.IsZero() || want.PEM != got.PEM { t.Errorf("want Certificate %+v, got %+v", *want, *got) } }
func testUpdateCertificateAndGetCertificate(dba certdb.Accessor, t *testing.T) { expiry := time.Date(2010, time.December, 25, 23, 0, 0, 0, time.UTC) want := certdb.CertificateRecord{ PEM: "fake cert data", Serial: "fake serial 3", AKI: fakeAKI, Status: "good", Reason: 0, Expiry: expiry, } if err := dba.InsertCertificate(want); err != nil { t.Fatal(err) } // reason 2 is CACompromise if err := dba.RevokeCertificate(want.Serial, want.AKI, 2); err != nil { t.Fatal(err) } rets, err := dba.GetCertificate(want.Serial, want.AKI) if err != nil { t.Fatal(err) } if len(rets) != 1 { t.Fatal("should return exactly one record") } got := rets[0] // relfection comparison with zero time objects are not stable as it seems if want.Serial != got.Serial || got.Status != "revoked" || want.AKI != got.AKI || got.RevokedAt.IsZero() || want.PEM != got.PEM { t.Errorf("want Certificate %+v, got %+v", want, got) } }