mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-17 15:29:21 +00:00
57 lines
1.9 KiB
Go
57 lines
1.9 KiB
Go
package apiv1
|
|
|
|
import (
|
|
"crypto/x509/pkix"
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestCreateCertificateAuthorityExtension(t *testing.T) {
|
|
type args struct {
|
|
typ Type
|
|
certificateID string
|
|
keyValuePairs []string
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want pkix.Extension
|
|
wantErr bool
|
|
}{
|
|
{"ok", args{Type(CloudCAS), "1ac75689-cd3f-482e-a695-8a13daf39dc4", nil}, pkix.Extension{
|
|
Id: oidStepCertificateAuthority,
|
|
Critical: false,
|
|
Value: []byte{
|
|
0x30, 0x30, 0x13, 0x08, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x63, 0x61, 0x73, 0x13, 0x24, 0x31, 0x61,
|
|
0x63, 0x37, 0x35, 0x36, 0x38, 0x39, 0x2d, 0x63, 0x64, 0x33, 0x66, 0x2d, 0x34, 0x38, 0x32, 0x65,
|
|
0x2d, 0x61, 0x36, 0x39, 0x35, 0x2d, 0x38, 0x61, 0x31, 0x33, 0x64, 0x61, 0x66, 0x33, 0x39, 0x64,
|
|
0x63, 0x34,
|
|
},
|
|
}, false},
|
|
{"ok", args{Type(CloudCAS), "1ac75689-cd3f-482e-a695-8a13daf39dc4", []string{"foo", "bar"}}, pkix.Extension{
|
|
Id: oidStepCertificateAuthority,
|
|
Critical: false,
|
|
Value: []byte{
|
|
0x30, 0x3c, 0x13, 0x08, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x63, 0x61, 0x73, 0x13, 0x24, 0x31, 0x61,
|
|
0x63, 0x37, 0x35, 0x36, 0x38, 0x39, 0x2d, 0x63, 0x64, 0x33, 0x66, 0x2d, 0x34, 0x38, 0x32, 0x65,
|
|
0x2d, 0x61, 0x36, 0x39, 0x35, 0x2d, 0x38, 0x61, 0x31, 0x33, 0x64, 0x61, 0x66, 0x33, 0x39, 0x64,
|
|
0x63, 0x34, 0x30, 0x0a, 0x13, 0x03, 0x66, 0x6f, 0x6f, 0x13, 0x03, 0x62, 0x61, 0x72,
|
|
},
|
|
}, false},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := CreateCertificateAuthorityExtension(tt.args.typ, tt.args.certificateID, tt.args.keyValuePairs...)
|
|
if (err != nil) != tt.wantErr {
|
|
t.Errorf("CreateCertificateAuthorityExtension() error = %v, wantErr %v", err, tt.wantErr)
|
|
return
|
|
}
|
|
if !reflect.DeepEqual(got, tt.want) {
|
|
t.Errorf("CreateCertificateAuthorityExtension() = %v, want %v", got, tt.want)
|
|
fmt.Printf("%x\n", got.Value)
|
|
}
|
|
})
|
|
}
|
|
}
|