Removing AAF references from Cert-Service in OOM repo.
[oom/platform/cert-service.git] / certService / src / test / java / org / onap / oom / certservice / certification / configuration / validation / constraints / violations / PortNumberViolationTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * PROJECT
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 org.onap.oom.certservice.certification.configuration.validation.constraints.violations;
22
23 import org.junit.jupiter.api.Test;
24
25 import static org.junit.jupiter.api.Assertions.assertFalse;
26 import static org.junit.jupiter.api.Assertions.assertTrue;
27
28 class PortNumberViolationTest {
29
30     private final PortNumberViolation violation = new PortNumberViolation();
31
32     @Test
33     void givenValidPortShouldReturnTrue() {
34         //given
35         String validUrl1 = "http://127.0.0.1:8080/ejbca/publicweb/cmp/cmp";
36         String validUrl2 = "http://127.0.0.1:1/ejbca/publicweb/cmp/cmp";
37         String validUrl3 = "http://127.0.0.1:65535/ejbca/publicweb/cmp/cmp";
38
39         //when
40         boolean result1 = violation.validate(validUrl1);
41         boolean result2 = violation.validate(validUrl2);
42         boolean result3 = violation.validate(validUrl3);
43
44         //then
45         assertTrue(result1);
46         assertTrue(result2);
47         assertTrue(result3);
48     }
49
50     @Test
51     void givenEmptyPortShouldReturnTrue() {
52         //given
53         String validUrl = "http://127.0.0.1/ejbca/publicweb/cmp/cmp";
54
55         //when
56         boolean result = violation.validate(validUrl);
57
58         //then
59         assertTrue(result);
60     }
61
62     @Test
63     void givenInvalidPortShouldReturnFalse() {
64         //given
65         String invalidUrl1 = "http://127.0.0.1:0/ejbca/publicweb/cmp/cmp";
66         String invalidUrl2 = "http://127.0.0.1:65536/ejbca/publicweb/cmp/cmp";
67
68         //when
69         boolean result1 = violation.validate(invalidUrl1);
70         boolean result2 = violation.validate(invalidUrl2);
71
72         //then
73         assertFalse(result1);
74         assertFalse(result2);
75     }
76 }