[OOM-K8S-CERT-EXTERNAL-PROVIDER] Provide certs to CMPv2 Issuer
[oom/platform/cert-service.git] / certServiceK8sExternalProvider / src / cmpv2controller / certificate_request_controller_test.go
1 /*
2  * ============LICENSE_START=======================================================
3  * oom-certservice-k8s-external-provider
4  * ================================================================================
5  * Copyright (C) 2020 Nokia. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package cmpv2controller
22
23 import (
24         "testing"
25
26         cmapi "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
27         "github.com/stretchr/testify/assert"
28 )
29
30 const group = "certmanager.onap.org"
31
32 func Test_shouldBeInvalidCMPv2CertificateRequest_whenEmpty(t *testing.T) {
33         request := new(cmapi.CertificateRequest)
34
35         assert.False(t, isCMPv2CertificateRequest(request))
36 }
37
38 func Test_shouldBeInvalidCMPv2CertificateRequest_whenKindIsCertificateRequest(t *testing.T) {
39         request := new(cmapi.CertificateRequest)
40         request.Spec.IssuerRef.Group = group
41         request.Spec.IssuerRef.Kind = "CertificateRequest"
42
43         assert.False(t, isCMPv2CertificateRequest(request))
44 }
45
46 func Test_shouldBeValidCMPv2CertificateRequest_whenKindIsCMPvIssuer(t *testing.T) {
47         request := new(cmapi.CertificateRequest)
48         request.Spec.IssuerRef.Group = group
49         request.Spec.IssuerRef.Kind = "CMPv2Issuer"
50
51         assert.True(t, isCMPv2CertificateRequest(request))
52 }