re base code
[sdc.git] / openecomp-be / backend / openecomp-sdc-vendor-software-product-manager / src / test / java / org / openecomp / sdc / vendorsoftwareproduct / tree / UploadFileTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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.sdc.vendorsoftwareproduct.tree;
22
23
24 import org.mockito.InjectMocks;
25 import org.mockito.Mock;
26 import org.mockito.MockitoAnnotations;
27 import org.mockito.Spy;
28 import org.openecomp.core.model.dao.ServiceModelDao;
29 import org.openecomp.core.model.types.ServiceElement;
30 import org.openecomp.core.utilities.orchestration.OnboardingTypesEnum;
31 import org.openecomp.sdc.healing.api.HealingManager;
32 import org.openecomp.sdc.tosca.datatypes.ToscaServiceModel;
33 import org.openecomp.sdc.vendorsoftwareproduct.CompositionEntityDataManager;
34 import org.openecomp.sdc.vendorsoftwareproduct.dao.OrchestrationTemplateDao;
35 import org.openecomp.sdc.vendorsoftwareproduct.dao.VendorSoftwareProductInfoDao;
36 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.OrchestrationTemplateEntity;
37 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
38 import org.openecomp.sdc.vendorsoftwareproduct.impl.OrchestrationTemplateCandidateManagerImpl;
39 import org.openecomp.sdc.vendorsoftwareproduct.services.composition.CompositionDataExtractor;
40 import org.openecomp.sdc.vendorsoftwareproduct.services.impl.filedatastructuremodule.CandidateServiceImpl;
41 import org.openecomp.sdc.vendorsoftwareproduct.types.UploadFileResponse;
42 import org.openecomp.sdc.vendorsoftwareproduct.utils.VSPCommon;
43 import org.openecomp.sdc.versioning.dao.types.Version;
44 import org.testng.annotations.BeforeMethod;
45 import org.testng.annotations.Test;
46
47 import java.io.*;
48 import java.net.URL;
49 import java.util.zip.ZipOutputStream;
50
51 import static org.mockito.Matchers.any;
52 import static org.mockito.Mockito.doReturn;
53 import static org.testng.Assert.assertEquals;
54
55 public class UploadFileTest {
56   private static final String USER1 = "vspTestUser1";
57
58   public static final Version VERSION01 = new Version(0, 1);
59
60   @Mock
61   private OrchestrationTemplateDao orchestrationTemplateDataDaoMock;
62   @Spy
63   private CandidateServiceImpl candidateService;
64   @Mock
65   private HealingManager healingManagerMock;
66   @Mock
67   private CompositionDataExtractor compositionDataExtractorMock;
68   @Mock
69   private ServiceModelDao<ToscaServiceModel, ServiceElement> serviceModelDaoMock;
70   @Mock
71   private CompositionEntityDataManager compositionEntityDataManagerMock;
72   @Mock
73   private VendorSoftwareProductInfoDao vspInfoDaoMock;
74
75   @InjectMocks
76   private OrchestrationTemplateCandidateManagerImpl candidateManager;
77
78   private static String vlm1Id;
79   public static String id001 = null;
80   public static String id002 = null;
81
82   public static Version activeVersion002 = null;
83
84
85   @BeforeMethod
86   public void setUp() throws Exception {
87     MockitoAnnotations.initMocks(this);
88   }
89
90   @Test
91   public void testUploadFile() {
92     VspDetails vspDetails = new VspDetails("dummyId", new Version(1, 0));
93     doReturn(vspDetails).when(vspInfoDaoMock).get(any(VspDetails.class));
94     candidateManager.upload(id001, activeVersion002, getZipInputStream("/legalUpload"),
95         OnboardingTypesEnum.ZIP.toString(), "legalUpload");
96   }
97
98
99   private void testLegalUpload(String vspId, Version version, InputStream upload, String user) {
100     UploadFileResponse uploadFileResponse = candidateManager.upload(vspId, activeVersion002,
101         upload, OnboardingTypesEnum.ZIP.toString(), "file");
102     assertEquals(uploadFileResponse.getOnboardingType(), OnboardingTypesEnum.ZIP);
103     OrchestrationTemplateEntity uploadData = orchestrationTemplateDataDaoMock.get(vspId, version);
104
105   }
106
107   public InputStream getZipInputStream(String name) {
108     URL url = this.getClass().getResource(name);
109     File templateDir = new File(url.getFile());
110
111     ByteArrayOutputStream baos = new ByteArrayOutputStream();
112     try (ZipOutputStream zos = new ZipOutputStream(baos)) {
113       VSPCommon.zipDir(templateDir, "", zos, true);
114     } catch (IOException e) {
115       e.printStackTrace();
116     }
117     return new ByteArrayInputStream(baos.toByteArray());
118   }
119
120
121 }