Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / sdclistener / application / src / test / java / org / onap / ccsdk / cds / sdclistener / service / ListenerServiceImplTest.java
1 /*
2  * Copyright © 2019 Bell Canada
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.sdclistener.service;
18
19 import org.apache.commons.io.FileUtils;
20 import org.junit.Before;
21 import org.junit.Rule;
22 import org.junit.Test;
23 import org.junit.rules.TemporaryFolder;
24 import org.junit.runner.RunWith;
25 import org.mockito.Mockito;
26 import org.mockito.MockitoAnnotations;
27 import org.mockito.junit.MockitoJUnit;
28 import org.mockito.junit.MockitoRule;
29 import org.onap.ccsdk.cds.sdclistener.SdcListenerConfiguration;
30 import org.onap.ccsdk.cds.sdclistener.client.SdcListenerAuthClientInterceptor;
31 import org.onap.ccsdk.cds.sdclistener.dto.SdcListenerDto;
32 import org.onap.ccsdk.cds.sdclistener.handler.BlueprintProcesssorHandler;
33 import org.onap.ccsdk.cds.sdclistener.status.SdcListenerStatus;
34 import org.onap.sdc.api.results.IDistributionClientDownloadResult;
35 import org.onap.sdc.impl.mock.DistributionClientResultStubImpl;
36 import org.springframework.beans.factory.annotation.Autowired;
37 import org.springframework.boot.context.properties.EnableConfigurationProperties;
38 import org.springframework.boot.test.context.SpringBootTest;
39 import org.springframework.boot.test.mock.mockito.MockBean;
40 import org.springframework.test.context.junit4.SpringRunner;
41
42 import java.io.File;
43 import java.io.IOException;
44 import java.nio.file.Files;
45 import java.nio.file.Path;
46 import java.nio.file.Paths;
47
48 import static junit.framework.TestCase.assertTrue;
49 import static org.onap.ccsdk.cds.sdclistener.status.SdcListenerStatus.NotificationType.SDC_LISTENER_COMPONENT;
50 import static org.onap.sdc.utils.DistributionStatusEnum.COMPONENT_DONE_OK;
51
52 @RunWith(SpringRunner.class)
53 @EnableConfigurationProperties({SdcListenerAuthClientInterceptor.class, BlueprintProcesssorHandler.class,
54         SdcListenerDto.class, ListenerServiceImpl.class, SdcListenerStatus.class, SdcListenerConfiguration.class})
55 @SpringBootTest(classes = {ListenerServiceImplTest.class})
56 public class ListenerServiceImplTest {
57
58     private static final String CSAR_SAMPLE = "src/test/resources/service-ServicePnfTest-csar.csar";
59     private static final String WRONG_CSAR_SAMPLE = "src/test/resources/wrong_csar_pattern.csar";
60     private static final String CBA_ZIP_PATH =
61             "Artifacts/[a-zA-Z0-9-_.]+/Deployment/CONTROLLER_BLUEPRINT_ARCHIVE/[a-zA-Z0-9-_.()]+[.]zip";
62     private static final String ZIP_FILE = ".zip";
63     private static final String CSAR_FILE = ".csar";
64     private static final String DISTRIBUTION_ID = "1";
65     private static final String URL = "/sdc/v1/artifact";
66
67     private String csarArchivePath;
68     private Path tempDirectoryPath;
69
70     @Rule
71     public TemporaryFolder folder = new TemporaryFolder();
72
73     @Rule
74     public MockitoRule mockitoRule = MockitoJUnit.rule();
75
76     @Autowired
77     private ListenerServiceImpl listenerService;
78
79     @MockBean
80     SdcListenerStatus status;
81
82     @MockBean
83     SdcListenerDto listenerDto;
84
85     @Before
86     public void setup() {
87         MockitoAnnotations.initMocks(this);
88         csarArchivePath = folder.getRoot().toString();
89         tempDirectoryPath = Paths.get(csarArchivePath, "cds-sdc-listener-test");
90     }
91
92     @Test
93     public void extractBlueprintSuccessfully() throws IOException {
94         // Act
95         listenerService.extractBlueprint(CSAR_SAMPLE, tempDirectoryPath.toString());
96
97         // Verify.
98         String result = checkFileExists(tempDirectoryPath);
99         assertTrue(result.contains(ZIP_FILE));
100     }
101
102     @Test
103     public void extractBlueprintFailure() {
104         // Arrange
105         Mockito.when(listenerDto.getDistributionId()).thenReturn(DISTRIBUTION_ID);
106         Mockito.when(listenerDto.getArtifactUrl()).thenReturn(URL);
107         Mockito.doCallRealMethod().when(status).sendResponseBackToSdc(DISTRIBUTION_ID, COMPONENT_DONE_OK, null, URL,
108                 SDC_LISTENER_COMPONENT);
109
110         // Act
111         listenerService.extractBlueprint(WRONG_CSAR_SAMPLE, tempDirectoryPath.toString());
112
113         // Verify
114         Mockito.verify(status).sendResponseBackToSdc(DISTRIBUTION_ID, COMPONENT_DONE_OK, null, URL,
115                 SDC_LISTENER_COMPONENT);
116     }
117
118     @Test
119     public void storeCsarArtifactToFileSuccessfully() throws IOException {
120         // Arrange
121         DistributionClientDownloadResultStubImpl resultStub = new DistributionClientDownloadResultStubImpl();
122
123         // Act
124         listenerService.extractCsarAndStore(resultStub, tempDirectoryPath);
125
126         // Verify
127         String result = checkFileExists(tempDirectoryPath);
128         assertTrue(result.contains(CSAR_FILE));
129     }
130
131     private String checkFileExists(Path path) throws IOException {
132         return Files.walk(path).filter(Files::isRegularFile).map(Path::toFile).findAny().get().getName();
133     }
134
135     public byte[] convertFileToByteArray(File file) {
136         try {
137             return FileUtils.readFileToByteArray(file);
138         } catch (IOException e) {
139             e.printStackTrace();
140         }
141         return null;
142     }
143
144     public class DistributionClientDownloadResultStubImpl extends DistributionClientResultStubImpl
145             implements IDistributionClientDownloadResult {
146
147         public DistributionClientDownloadResultStubImpl() {}
148
149         public byte[] getArtifactPayload() {
150             File file = Paths.get(CSAR_SAMPLE).toFile();
151             return convertFileToByteArray(file);
152         }
153
154         public String getArtifactName() {
155             return "MackArtifactName";
156         }
157
158         public String getArtifactFilename() {
159             return "MackArtifactName.csar";
160         }
161
162     }
163
164 }