1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00
gocsaf/internal/certs/certs_test.go
2023-09-08 13:26:38 +02:00

26 lines
1.1 KiB
Go

package certs
import "testing"
func TestLoadCertificates(t *testing.T) {
TestCert := "data/testclient.crt"
Testkey := "data/testclientkey.pem"
Passphrase := "security123"
missingTestkey := "data/testclientkey_missing.pem"
if certificate, err := LoadCertificate(&TestCert, &Testkey, nil); certificate == nil || err != nil {
t.Errorf("Failure: Couldn't load supposedly valid certificate.")
}
if certificate, err := LoadCertificate(nil, &Testkey, nil); certificate != nil || err == nil {
t.Errorf("Failure: No error despite missing certificate")
}
if certificate, err := LoadCertificate(&TestCert, &missingTestkey, nil); certificate != nil || err == nil {
t.Errorf("Failure: No Failure while loading certificate using missing key.")
}
if certificate, err := LoadCertificate(&TestCert, &Testkey, &Passphrase); certificate != nil || err == nil {
t.Errorf("Failure: Could load unprotected valid certificate with passphrase.")
}
if certificate, err := LoadCertificate(&TestCert, &missingTestkey, &Passphrase); certificate != nil || err == nil {
t.Errorf("Failure: No Failure while loading certificate using missing key with passphrase.")
}
}