fix: add back commented tests

This commit is contained in:
Ahmet DEMIR 2022-02-06 23:35:17 +01:00
parent ab5197500c
commit a9550a746f
No known key found for this signature in database
GPG key ID: 7F0E92AFAC67CDD5

View file

@ -248,14 +248,14 @@ func TestVaultCAS_CreateCertificate(t *testing.T) {
Certificate: mustParseCertificate(t, testCertificateSigned),
CertificateChain: []*x509.Certificate{},
}, false},
// {"fail CSR", fields{client, options}, args{&apiv1.CreateCertificateRequest{
// CSR: nil,
// Lifetime: time.Hour,
// }}, nil, true},
// {"fail lifetime", fields{client, options}, args{&apiv1.CreateCertificateRequest{
// CSR: mustParseCertificateRequest(t, testCertificateCsrEc),
// Lifetime: 0,
// }}, nil, true},
{"fail CSR", fields{client, options}, args{&apiv1.CreateCertificateRequest{
CSR: nil,
Lifetime: time.Hour,
}}, nil, true},
{"fail lifetime", fields{client, options}, args{&apiv1.CreateCertificateRequest{
CSR: mustParseCertificateRequest(t, testCertificateCsrEc),
Lifetime: 0,
}}, nil, true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {