Add collaboration feature
[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.dao.OrchestrationTemplateDao;
34 import org.openecomp.sdc.vendorsoftwareproduct.dao.VendorSoftwareProductInfoDao;
35 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.OrchestrationTemplateEntity;
36 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
37 import org.openecomp.sdc.vendorsoftwareproduct.impl.OrchestrationTemplateCandidateManagerImpl;
38 import org.openecomp.sdc.vendorsoftwareproduct.services.composition.CompositionDataExtractor;
39 import org.openecomp.sdc.vendorsoftwareproduct.services.composition.CompositionEntityDataManager;
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.ByteArrayInputStream;
48 import java.io.ByteArrayOutputStream;
49 import java.io.File;
50 import java.io.IOException;
51 import java.io.InputStream;
52 import java.net.URL;
53 import java.util.zip.ZipOutputStream;
54
55 import static org.mockito.Matchers.any;
56 import static org.mockito.Mockito.doReturn;
57 import static org.testng.Assert.assertEquals;
58
59 public class UploadFileTest {
60   private static final String USER1 = "vspTestUser1";
61
62   public static final Version VERSION01 = new Version(0, 1);
63
64   @Mock
65   private OrchestrationTemplateDao orchestrationTemplateDataDaoMock;
66   @Spy
67   private CandidateServiceImpl candidateService;
68   @Mock
69   private HealingManager healingManagerMock;
70   @Mock
71   private CompositionDataExtractor compositionDataExtractorMock;
72   @Mock
73   private ServiceModelDao<ToscaServiceModel, ServiceElement> serviceModelDaoMock;
74   @Mock
75   private CompositionEntityDataManager compositionEntityDataManagerMock;
76   @Mock
77   private VendorSoftwareProductInfoDao vspInfoDaoMock;
78
79   @InjectMocks
80   private OrchestrationTemplateCandidateManagerImpl candidateManager;
81
82   private static String vlm1Id;
83   public static String id001 = null;
84   public static String id002 = null;
85
86   public static Version activeVersion002 = null;
87
88
89   @BeforeMethod
90   public void setUp() throws Exception {
91     MockitoAnnotations.initMocks(this);
92   }
93
94   @Test
95   public void testUploadFile() {
96     VspDetails vspDetails = new VspDetails("dummyId", new Version(1, 0));
97     doReturn(vspDetails).when(vspInfoDaoMock).get(any(VspDetails.class));
98     candidateManager.upload(id001, activeVersion002, getZipInputStream("/legalUpload"),
99         OnboardingTypesEnum.ZIP.toString(), "legalUpload");
100   }
101
102
103   private void testLegalUpload(String vspId, Version version, InputStream upload, String user) {
104     UploadFileResponse uploadFileResponse = candidateManager.upload(vspId, activeVersion002,
105         upload, OnboardingTypesEnum.ZIP.toString(), "file");
106     assertEquals(uploadFileResponse.getOnboardingType(), OnboardingTypesEnum.ZIP);
107     OrchestrationTemplateEntity uploadData = orchestrationTemplateDataDaoMock.get(vspId, version);
108
109   }
110
111   public InputStream getZipInputStream(String name) {
112     URL url = this.getClass().getResource(name);
113     File templateDir = new File(url.getFile());
114
115     ByteArrayOutputStream baos = new ByteArrayOutputStream();
116     try (ZipOutputStream zos = new ZipOutputStream(baos)) {
117       VSPCommon.zipDir(templateDir, "", zos, true);
118     } catch (IOException e) {
119       e.printStackTrace();
120     }
121     return new ByteArrayInputStream(baos.toByteArray());
122   }
123
124
125 }