6a560ce85fdfa1c581c73a378fa4b6cb2dad5eed
[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  * 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 package org.onap.appc.dg.common.impl;
21
22 import static org.junit.Assert.assertEquals;
23
24 import java.util.Arrays;
25 import java.util.Collection;
26
27 import org.junit.Before;
28 import org.junit.Test;
29
30 public class TestVNFResolverDataReader {
31     
32     VNFResolverDataReader vNFResolverDataReader;
33     Collection<String> list = Arrays.asList("action", "api_version", "vnf_type", "vnf_version");
34     String queryStatement = "select vnf_type,vnf_version,api_version,action,dg_name,dg_version,dg_module FROM VNF_DG_MAPPING";
35
36     @Before
37     public void setUp() {
38         vNFResolverDataReader = new VNFResolverDataReader();
39     }
40
41     @Test
42     public void testGetAttributeNamesAndQueryStmt() {
43         assertEquals(list, vNFResolverDataReader.getAttributeNames());
44         assertEquals(queryStatement, vNFResolverDataReader.getQueryStmt());
45     }
46 }