0ac893ed53aae3be854e1d0ed71248d64eb07368
[appc.git] / appc-inbound / appc-design-services / provider / src / test / java / org / openecomp / appc / design / validator / TestArifactHandlerClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
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  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.design.validator;
26
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.openecomp.appc.design.services.util.ArtifactHandlerClient;
30 import junit.framework.Assert;
31 import static org.mockito.Mockito.*;
32 import java.io.File;
33 import java.io.IOException;
34 import java.io.InputStream;
35 import java.util.Enumeration;
36 import java.util.Properties;
37 import org.apache.commons.io.FileUtils;
38
39 public class TestArifactHandlerClient {
40         
41     @Test
42     public void testCreateArtifactData(){
43         
44         try{
45         String content = FileUtils.readFileToString(new File("src/test/resources/uploadArtifact"));
46         String payload = " { \"userID\": \"00000\", \"vnf-type\" : \"DesigTest-VNF\", \"action\" : \"Configure\", \"artifact-name\":\"DesignRestArtifact_reference\",\"artifact-version\" :\"0.01\",\"artifact-type\" :\"DESIGNTOOL-TEST\",\"artifact-contents\":  "  
47         + content + 
48          " } ";
49         String requestID ="0000";
50         ArtifactHandlerClient ahi = new ArtifactHandlerClient();
51         String value =  ahi.createArtifactData(payload, requestID);
52         Assert.assertTrue(!value.isEmpty());
53         }catch(Exception e)
54         {
55         }
56     }
57         
58     @Test
59     public void testExecute(){
60         
61         try{
62         String content = FileUtils.readFileToString(new File("src/test/resources/uploadArtifact"));
63         String payload = " { \"userID\": \"00000\", \"vnf-type\" : \"DesigTest-VNF\", \"action\" : \"Configure\", \"artifact-name\":\"DesignRestArtifact_reference\",\"artifact-version\" :\"0.01\",\"artifact-type\" :\"DESIGNTOOL-TEST\",\"artifact-contents\":  "  
64         + content + 
65          " } ";
66         String rpc = "Post";
67         ArtifactHandlerClient ahi = new ArtifactHandlerClient();
68         ahi.execute(payload, rpc);
69         }catch(Exception e)
70         {
71         }
72     }
73 }