d1850473abdf1dc3c26d4d0ef7d534ff63c8df7b
[oom/platform/cert-service.git] /
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
22 package org.onap.aaf.certservice.certification.configuration.validation.constraints.violations;
23
24 import org.junit.jupiter.api.Test;
25
26 import static org.junit.jupiter.api.Assertions.*;
27
28 class PortNumberViolationTest {
29
30     private final PortNumberViolation violation = new PortNumberViolation();
31
32     @Test
33     public 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     public 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     public 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 }