96e50d0959de439b728082fe1825c8b6b398aa1e
[so.git] / adapters / mso-vnf-adapter / src / test / java / org / openecomp / mso / adapters / vnf / test / QueryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
21 package org.openecomp.mso.adapters.vnf.test;
22
23
24 import java.util.Map;
25
26 import javax.xml.ws.Holder;
27
28 import org.openecomp.mso.adapters.vnf.MsoVnfAdapter;
29 import org.openecomp.mso.adapters.vnf.MsoVnfAdapterImpl;
30 import org.openecomp.mso.openstack.beans.VnfStatus;
31 import org.openecomp.mso.adapters.vnf.exceptions.VnfException;
32
33 public class QueryTest {
34         public final static void main (String args[])
35         {
36                 MsoVnfAdapter vnfAdapter = new MsoVnfAdapterImpl();
37                 log ("Got a VnfAdapter");
38                 
39                 String cloudId = "MT";
40                 String tenantId = "MSO_Test";
41                 String vnfName = "VNF_TEST1";
42                 Holder<Boolean> vnfExists = new Holder<Boolean>();
43                 Holder<String> vnfId = new Holder<String>();
44                 Holder<VnfStatus> status = new Holder<VnfStatus>();
45                 Holder<Map<String,String>> outputs = new Holder<Map<String,String>>();
46                 
47                 try {
48                         vnfAdapter.queryVnf(cloudId, tenantId, vnfName, null,
49                                                 vnfExists, vnfId, status, outputs);
50                 } catch (VnfException e) {
51                         log ("Got an Exception: " + e);
52                 }
53                 
54                 if (! vnfExists.value){
55                         log ("VNF Not Found");
56                 } else {
57                         log ("Found VNF, ID = " + vnfId.value + ", status=" + status.value);
58                 }
59         }
60         
61         private static void log (String msg) {
62                 System.out.println (msg);
63         }
64 }