Change code in appc dispatcher for new LCMs in R6
[appc.git] / appc-dg / appc-dg-shared / appc-dg-common / src / test / java / org / onap / appc / dg / common / impl / TestVNFResolverDataReader.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - APPC
4  * ================================================================================
5  * Copyright (C) 2019 IBM.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 AT&T Intellectual Property
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22 package org.onap.appc.dg.common.impl;
23
24 import static org.junit.Assert.assertEquals;
25
26 import java.util.Arrays;
27 import java.util.Collection;
28
29 import org.junit.Before;
30 import org.junit.Test;
31
32 public class TestVNFResolverDataReader {
33
34     VNFResolverDataReader vNFResolverDataReader;
35     Collection<String> list = Arrays.asList("action", "api_version", "vnf_type", "vnf_version");
36     String queryStatement =
37             "select vnf_type,vnf_version,api_version,action,dg_name,dg_version,dg_module FROM VNF_DG_MAPPING";
38
39     @Before
40     public void setUp() {
41         vNFResolverDataReader = new VNFResolverDataReader();
42     }
43
44     @Test
45     public void testGetAttributeNamesAndQueryStmt() {
46         assertEquals(list, vNFResolverDataReader.getAttributeNames());
47         assertEquals(queryStatement, vNFResolverDataReader.getQueryStmt());
48     }
49 }