Implementing download service CSAR endpoint
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / sdc-simulator / src / test / java / org / onap / so / sdcsimulator / providers / AssetProviderImplTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.sdcsimulator.providers;
22
23 import static org.junit.Assert.assertArrayEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.onap.so.sdcsimulator.models.AssetType.RESOURCES;
26 import static org.onap.so.sdcsimulator.utils.Constants.DOT_CSAR;
27 import static org.onap.so.sdcsimulator.utils.Constants.FORWARD_SLASH;
28 import static org.onap.so.sdcsimulator.utils.Constants.MAIN_RESOURCE_FOLDER;
29 import java.io.File;
30 import java.io.IOException;
31 import java.nio.file.Files;
32 import java.nio.file.Path;
33 import java.util.UUID;
34 import org.junit.Rule;
35 import org.junit.Test;
36 import org.junit.rules.TemporaryFolder;
37 import org.springframework.core.io.ClassPathResource;
38 import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
39 import org.springframework.util.StreamUtils;
40
41 /**
42  * @author Waqas Ikram (waqas.ikram@est.tech)
43  * @author Eoin Hanan (eoin.hanan@est.tech)
44  */
45 public class AssetProviderImplTest {
46
47     private static final String VNF_RESOURCE_ID = "73522444-e8e9-49c1-be29-d355800aa349";
48
49     @Rule
50     public TemporaryFolder temporaryFolder = new TemporaryFolder();
51
52     private static final String DUMMY_CONTENT = "Hello world";
53
54     private final PathMatchingResourcePatternResolver resourcePatternResolver =
55             new PathMatchingResourcePatternResolver();
56
57     @Test
58     public void test_getResource_withValidPath_matchContent() throws IOException {
59         final File folder = temporaryFolder.newFolder(RESOURCES.toString());
60         final String uuid = UUID.randomUUID().toString();
61         final Path file = Files.createFile(folder.toPath().resolve(uuid + DOT_CSAR));
62
63         Files.write(file, DUMMY_CONTENT.getBytes());
64
65         final AssetProviderImpl objUnderTest = new AssetProviderImpl(folder.getParent(), resourcePatternResolver);
66
67         assertArrayEquals(DUMMY_CONTENT.getBytes(), objUnderTest.getAsset(uuid, RESOURCES).get());
68     }
69
70     @Test
71     public void test_getResource_withoutValidPath_matchContent() throws IOException {
72         final String validCsarPath = MAIN_RESOURCE_FOLDER + RESOURCES + FORWARD_SLASH + VNF_RESOURCE_ID + DOT_CSAR;
73         final ClassPathResource classPathResource = new ClassPathResource(validCsarPath, this.getClass());
74
75         final byte[] expectedResult = StreamUtils.copyToByteArray(classPathResource.getInputStream());
76
77         final AssetProviderImpl objUnderTest = new AssetProviderImpl("", resourcePatternResolver);
78
79         assertArrayEquals(expectedResult, objUnderTest.getAsset(VNF_RESOURCE_ID, RESOURCES).get());
80     }
81
82     @Test
83     public void test_getResource_unbleToReadFileFromClasspath_emptyOptional() throws IOException {
84
85         final AssetProviderImpl objUnderTest = new AssetProviderImpl("", resourcePatternResolver);
86         assertFalse(objUnderTest.getAsset(UUID.randomUUID().toString(), RESOURCES).isPresent());
87
88     }
89 }