summaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/tree/UploadFileTest.java
blob: df386b12cd6fd30d3f94a405da93da85aa29b554 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.vendorsoftwareproduct.tree;


import static org.mockito.Matchers.any;
import static org.mockito.Mockito.doReturn;

import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.mockito.Spy;
import org.openecomp.core.model.dao.ServiceModelDao;
import org.openecomp.core.model.types.ServiceElement;
import org.openecomp.core.utilities.orchestration.OnboardingTypesEnum;
import org.openecomp.sdc.healing.api.HealingManager;
import org.openecomp.sdc.logging.api.Logger;
import org.openecomp.sdc.logging.api.LoggerFactory;
import org.openecomp.sdc.tosca.datatypes.ToscaServiceModel;
import org.openecomp.sdc.vendorsoftwareproduct.dao.OrchestrationTemplateDao;
import org.openecomp.sdc.vendorsoftwareproduct.dao.VendorSoftwareProductDao;
import org.openecomp.sdc.vendorsoftwareproduct.dao.VendorSoftwareProductInfoDao;
import org.openecomp.sdc.vendorsoftwareproduct.dao.type.UploadDataEntity;
import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
import org.openecomp.sdc.vendorsoftwareproduct.impl.OrchestrationTemplateCandidateManagerImpl;
import org.openecomp.sdc.vendorsoftwareproduct.services.composition.CompositionDataExtractor;
import org.openecomp.sdc.vendorsoftwareproduct.services.composition.CompositionEntityDataManager;
import org.openecomp.sdc.vendorsoftwareproduct.services.impl.filedatastructuremodule.CandidateServiceImpl;
import org.openecomp.sdc.vendorsoftwareproduct.types.UploadFileResponse;
import org.openecomp.sdc.vendorsoftwareproduct.utils.VSPCommon;
import org.openecomp.sdc.versioning.dao.types.Version;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

import java.io.*;
import java.net.URL;
import java.util.zip.ZipOutputStream;

import static org.mockito.Matchers.any;
import static org.mockito.Mockito.doReturn;
import static org.testng.Assert.assertEquals;

public class UploadFileTest {
    private static final String USER1 = "vspTestUser1";

    public static final Version VERSION01 = new Version(0, 1);
    @Mock
    private VendorSoftwareProductDao vendorSoftwareProductDaoMock;
    @Mock
    private OrchestrationTemplateDao orchestrationTemplateDataDaoMock;
    @Spy
    private CandidateServiceImpl candidateService;
    @Mock
    private HealingManager healingManagerMock;
    @Mock
    private CompositionDataExtractor compositionDataExtractorMock;
    @Mock
    private ServiceModelDao<ToscaServiceModel, ServiceElement> serviceModelDaoMock;
    @Mock
    private CompositionEntityDataManager compositionEntityDataManagerMock;
    @Mock
    private VendorSoftwareProductInfoDao vspInfoDaoMock;

    @InjectMocks
    private OrchestrationTemplateCandidateManagerImpl candidateManager;

    private static String vlm1Id;
    public static String id001 = null;
    public static String id002 = null;

    public static Version activeVersion002 = null;


    @BeforeMethod
    public void setUp() throws Exception {
        MockitoAnnotations.initMocks(this);
    }

    @Test
    public void testUploadFile() {
        VspDetails vspDetails = new VspDetails("dummyId", new Version(1, 0));
        doReturn(vspDetails).when(vspInfoDaoMock).get(any(VspDetails.class));
        candidateManager.upload(id001, activeVersion002, getZipInputStream("/legalUpload"), USER1, OnboardingTypesEnum.ZIP.toString(), "legalUpload");
    }


    private void testLegalUpload(String vspId, Version version, InputStream upload, String user) {
        UploadFileResponse uploadFileResponse = candidateManager.upload(vspId, activeVersion002,
            upload, user, OnboardingTypesEnum.ZIP.toString(),"file" );
        assertEquals(uploadFileResponse.getOnboardingType(), OnboardingTypesEnum.ZIP);
        UploadDataEntity uploadData =
                orchestrationTemplateDataDaoMock.getOrchestrationTemplate(vspId, version);

    }

    public InputStream getZipInputStream(String name) {
        URL url = this.getClass().getResource(name);
        File templateDir = new File(url.getFile());

        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        try (ZipOutputStream zos = new ZipOutputStream(baos)) {
            VSPCommon.zipDir(templateDir, "", zos, true);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return new ByteArrayInputStream(baos.toByteArray());
    }


}