0b5b8505f3788356b1419a7fb7c2f3f674a02585
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / test / java / org / onap / sfc / TestSfParams.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.sfc;
17
18 import org.junit.Before;
19 import org.junit.Test;
20 import org.openo.sfc.entity.ChainParameter;
21 import org.openo.sfc.utils.SfcDriverUtil;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24
25 import java.util.HashMap;
26
27
28 public class TestSfParams {
29
30     private final Logger LOGGER = LoggerFactory.getLogger(TestSfParams.class);
31
32     @Test
33     public void test_sfParams()
34     {
35         SfcDriverUtil.generateSfParams(new HashMap());
36     }
37
38     @Test
39     public void test_generateChainParams()
40     {
41         String key = "chain-parameter";
42         String value = "chain-parameter-value";
43         ChainParameter chainParameter = SfcDriverUtil.generateChainParam(key,value);
44
45         assert chainParameter.getChainParameter().equals(key);
46         assert chainParameter.getChainParamValue().equals(value);
47     }
48
49     @Before
50     public void setupBefore()
51     {
52
53     }
54 }