aboutsummaryrefslogtreecommitdiffstats
path: root/certService/src/test/java/org/onap/aaf/certservice/cmpv2client/external/RdnTest.java
blob: 6e42afe8f6b96052ed8f9a0b3fe94579d5aa9afc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * ============LICENSE_START=======================================================
 * PROJECT
 * ================================================================================
 * Copyright (C) 2020 Nokia. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.aaf.certservice.cmpv2client.external;

import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.x500.style.BCStyle;
import org.bouncycastle.cert.CertException;
import org.junit.jupiter.api.Test;

import java.util.Arrays;
import java.util.List;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;

class RdnTest {

    @Test
    void shouldCreateCorrectRdn() throws CertException {
        // given
        final String expectedValue = "ManagmentCA";
        final ASN1ObjectIdentifier expectedAoi = BCStyle.CN;

        //when
        Rdn rdn1 = new Rdn("CN=ManagmentCA");
        Rdn rdn2 = new Rdn("CN = ManagmentCA ");
        Rdn rdn3 = new Rdn("CN", "ManagmentCA");

        //then
        assertEquals(expectedValue, rdn1.getValue());
        assertEquals(expectedValue, rdn2.getValue());
        assertEquals(expectedValue, rdn3.getValue());
        assertEquals(expectedAoi, rdn1.getAoi());
        assertEquals(expectedAoi, rdn2.getAoi());
        assertEquals(expectedAoi, rdn3.getAoi());
    }

    @Test
    void shouldCorrectlySplitAndTrimString() {
        //given
        String value1 = " T  =  Test";
        List<String> expected1 = Arrays.asList("T", "Test");

        String value2 = "This 123 is 99 tested 12345 string";
        List<String> expected2 = Arrays.asList("This", "is 99 tested", "string");

        //when
        List<String> actual1 = Rdn.parseRdn("=", value1);
        List<String> actual2 = Rdn.parseRdn("[0-9]{3,}", value2);

        //then
        assertEquals(expected1, actual1);
        assertEquals(expected2, actual2);
    }

    @Test
    void shouldConvertAoiStringToEnum() throws CertException {
        Rdn rdn = new Rdn("CN", "ManagmentCA");

        assertEquals(BCStyle.CN, rdn.getAoi("CN"));
        assertEquals(BCStyle.C, rdn.getAoi("C"));
        assertEquals(BCStyle.ST, rdn.getAoi("ST"));
        assertEquals(BCStyle.L, rdn.getAoi("L"));
        assertEquals(BCStyle.O, rdn.getAoi("O"));
        assertEquals(BCStyle.OU, rdn.getAoi("OU"));
        assertEquals(BCStyle.DC, rdn.getAoi("DC"));
        assertEquals(BCStyle.GIVENNAME, rdn.getAoi("GN"));
        assertEquals(BCStyle.SN, rdn.getAoi("SN"));
        assertEquals(BCStyle.E, rdn.getAoi("E"));
        assertEquals(BCStyle.E, rdn.getAoi("EMAIL"));
        assertEquals(BCStyle.E, rdn.getAoi("EMAILADDRESS"));
        assertEquals(BCStyle.INITIALS, rdn.getAoi("INITIALS"));
        assertEquals(BCStyle.PSEUDONYM, rdn.getAoi("PSEUDONYM"));
        assertEquals(BCStyle.GENERATION, rdn.getAoi("GENERATIONQUALIFIER"));
        assertEquals(BCStyle.SERIALNUMBER, rdn.getAoi("SERIALNUMBER"));
        assertThrows(CertException.class, () -> rdn.getAoi("INVALIDTAG"));
    }
}