413cd134d4dc048459f78fa49d58f570714bda9f
[nonrtric/plt/ranpm.git] / datafilecollector / src / test / java / org / onap / dcaegen2 / collectors / datafile / scheme / SchemeTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 Nordix Foundation. All rights reserved.
4  * Copyright (C) 2020 Nokia. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END=========================================================
18  */
19
20 package org.onap.dcaegen2.collectors.datafile.scheme;
21
22 import static org.junit.jupiter.api.Assertions.assertEquals;
23 import static org.junit.jupiter.api.Assertions.assertThrows;
24
25 import org.junit.jupiter.api.Test;
26 import org.onap.dcaegen2.collectors.datafile.commons.Scheme;
27 import org.onap.dcaegen2.collectors.datafile.exceptions.DatafileTaskException;
28
29 public class SchemeTest {
30
31     @Test
32     public void shouldReturnSchemeForSupportedProtocol() throws DatafileTaskException {
33         assertEquals(Scheme.FTPES, Scheme.getSchemeFromString("FTPES"));
34         assertEquals(Scheme.SFTP, Scheme.getSchemeFromString("SFTP"));
35         assertEquals(Scheme.HTTP, Scheme.getSchemeFromString("HTTP"));
36         assertEquals(Scheme.HTTPS, Scheme.getSchemeFromString("HTTPS"));
37     }
38
39     @Test
40     public void shouldThrowExceptionForUnsupportedProtocol() {
41         assertThrows(DatafileTaskException.class, () -> Scheme.getSchemeFromString("FTPS"));
42     }
43
44     @Test
45     public void shouldThrowExceptionForInvalidProtocol() {
46         assertThrows(DatafileTaskException.class, () -> Scheme.getSchemeFromString("invalid"));
47     }
48 }