Merge "50% Code Coverage-MSB Java SDK"
[msb/java-sdk.git] / src / test / java / org / onap / msb / sdk / discovery / common / RouteConstTest.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  */
14
15 package org.onap.msb.sdk.discovery.common;
16
17 import org.junit.Assert;
18 import org.junit.Test;
19
20 public class RouteConstTest {
21
22         @Test
23         public void test_checkExistProtocol(){
24                 
25         Assert.assertTrue(RouteConst.checkExistProtocol("FTP"));
26         Assert.assertFalse(RouteConst.checkExistProtocol("FTTP"));
27         }
28         
29         @Test
30         public void test_checkExist(){
31                 
32         Assert.assertTrue(RouteConst.checkExist("test,tt,ss","tt"));
33         Assert.assertFalse(RouteConst.checkExist("test,tt,ss","ee"));
34         }
35         
36         @Test
37         public void test_listProtocol(){
38                 String list="REST | HTTP | MQ | FTP | SNMP | TCP | UDP | UI | ";
39                 Assert.assertEquals(list, RouteConst.listProtocol());
40         }
41 }